File "Family.php"
Full Path: /home2/sdektunc/cepali.edu.mx/wp-content/plugins/smart-slider-3/Nextend/Framework/Form/Element/Text/Family.php
File size: 518 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Nextend\Framework\Form\Element\Text;
use Nextend\Framework\Asset\Js\Js;
use Nextend\Framework\Font\FontSettings;
use Nextend\Framework\Form\Element\Text;
class Family extends Text {
protected $class = 'n2_field_autocomplete n2_autocomplete_position_to';
protected function addScript() {
parent::addScript();
$families = FontSettings::getPresetFamilies();
Js::addInline('_N2.AutocompleteSimple("' . $this->fieldID . '", ' . json_encode($families) . ');');
}
}