You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.8 KiB
72 lines
1.8 KiB
<?php
|
|
|
|
/**
|
|
* Class HTML_QuickForm_advanced_settings
|
|
*/
|
|
class HTML_QuickForm_advanced_settings extends HTML_QuickForm_static
|
|
{
|
|
/**
|
|
* Class constructor
|
|
*
|
|
* @param string $name
|
|
* @param string $label
|
|
*/
|
|
public function __construct($name = '', $label = '')
|
|
{
|
|
if (empty($label)) {
|
|
$label = get_lang('Advanced settings');
|
|
}
|
|
$this->updateAttributes(
|
|
array(
|
|
'label' => $label,
|
|
'name' => $name
|
|
)
|
|
);
|
|
$this->_type = 'html';
|
|
}
|
|
|
|
/**
|
|
* Accepts a renderer
|
|
*
|
|
* @param HTML_QuickForm_Renderer renderer object (only works with Default renderer!)
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
function accept(&$renderer, $required = false, $error = null)
|
|
{
|
|
$renderer->renderHtml($this);
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function toHtml()
|
|
{
|
|
$name = $this->getAttribute('name');
|
|
$text = $this->getAttribute('label');
|
|
$label = is_array($text) ? $text[0] : $text;
|
|
|
|
$html = '<div class="form-group row"><label class="col-sm-2 col-form-label"></label>';
|
|
|
|
if (is_array($text) && isset($text[1])) {
|
|
$html .= '<span class="clearfix">'.$text[1].'</span>';
|
|
}
|
|
|
|
$html .= '
|
|
<div class="col-sm-10">
|
|
<button id="'.$name.'" type="button" class="btn btn-secondary advanced_options"
|
|
data-toggle="button" aria-pressed="false" autocomplete="off">
|
|
<em class="fa fa-bars"></em> '.$label.'
|
|
</button>
|
|
</div>
|
|
';
|
|
|
|
if (is_array($text) && isset($text[2])) {
|
|
$html .= '<div class="help-block">'.$text[2].'</div>';
|
|
}
|
|
|
|
$html .= '</div>';
|
|
|
|
return $html;
|
|
}
|
|
}
|
|
|