__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Nextend\Framework\Form\Element\MixedField;
use Nextend\Framework\Form\Element\MixedField;
use Nextend\Framework\Form\Element\Radio;
use Nextend\Framework\Form\Element\Select;
class GeneratorOrder extends MixedField {
protected $rowClass = 'n2_field_mixed_generator_order ';
protected $options = array();
public function __construct($insertAt, $name = '', $default = '', $parameters = array()) {
parent::__construct($insertAt, $name, false, $default, $parameters);
new Select($this, $name . '-1', n2_('Field'), '', $this->options);
new Radio($this, $name . '-2', n2_('Order'), '', array(
'options' => array(
'asc' => n2_('Ascending'),
'desc' => n2_('Descending')
)
));
}
protected function decorate($html) {
return '<div class="n2_field_mixed_generator_order__container" style="' . $this->style . '">' . $html . '</div>';
}
protected function setOptions($options) {
$this->options = array(
'options' => $options
);
}
}| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Border.php | File | 2.17 KB | 0664 |
|
| BoxShadow.php | File | 1.18 KB | 0664 |
|
| FontSize.php | File | 1.55 KB | 0664 |
|
| GeneratorOrder.php | File | 1.08 KB | 0664 |
|
| TextShadow.php | File | 1.18 KB | 0664 |
|