__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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\Radio;
use Nextend\Framework\Form\Element\Radio;
use Nextend\Framework\View\Html;
abstract class AbstractRadioIcon extends Radio {
protected $class = 'n2_field_radio_icon';
protected function renderOptions() {
$html = '';
$i = 0;
foreach ($this->options as $value => $class) {
$html .= Html::tag('div', array(
'class' => 'n2_field_radio__option' . ($this->isSelected($value) ? ' n2_field_radio__option--selected' : '')
), Html::tag('i', array('class' => $class)));
$i++;
}
return $html;
}
}| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| AbstractRadioIcon.php | File | 654 B | 0664 |
|
| ImageList.php | File | 2.15 KB | 0664 |
|
| ImageListFromFolder.php | File | 2.85 KB | 0664 |
|
| TextAlign.php | File | 653 B | 0664 |
|