PATH:
home
/
lab2454c
/
incforce.com
/
wp-content
/
plugins
/
smart-slider-3
/
Nextend
/
Framework
/
Form
/
Element
/
Text
<?php namespace Nextend\Framework\Form\Element\Text; use Nextend\Framework\Asset\Js\Js; use Nextend\Framework\Form\Element\Text; use Nextend\Framework\View\Html; class TextMultiAutoComplete extends Text { protected $options = array(); protected $class = 'n2_field_autocomplete '; protected function addScript() { Js::addInline('new _N2.FormElementAutocomplete("' . $this->fieldID . '", ' . json_encode($this->options) . ');'); } protected function post() { return Html::tag('a', array( 'href' => '#', 'class' => 'n2_field_text__clear', 'tabindex' => -1 ), Html::tag('i', array('class' => 'ssi_16 ssi_16--circularremove'), '')); } /** * @param array $options */ public function setOptions($options) { $this->options = $options; } }
[+]
..
[-] FieldImageResponsive.php
[edit]
[-] Color.php
[edit]
[-] FieldImage.php
[edit]
[-] Family.php
[edit]
[-] Folder.php
[edit]
[-] Disabled.php
[edit]
[-] HiddenText.php
[edit]
[-] Video.php
[edit]
[-] Number.php
[edit]
[-] NumberAutoComplete.php
[edit]
[-] Url.php
[edit]
[-] NumberSlider.php
[edit]
[-] TextMultiAutoComplete.php
[edit]
[-] TextAutoComplete.php
[edit]