Files
crmPRO/templates/html/input-switch.php
2024-11-10 11:11:35 +01:00

36 lines
977 B
PHP

<?
if ( $this -> params['label'] )
{
$out .= '<div class="form_group">';
$out .= '<label class="label">' . $this -> params['label'] . ':</label>';
$out .= '<div class="input">';
}
// $out .= '<div class="switch switch-primary round switch-inline">';
$out .= '<input ';
if ( $this -> params['id'] )
$out .= 'id="' . $this -> params['id'] . '" ';
else
$out .= 'id="' . $this -> params['name'] . '" ';
$out .= 'name="' . $this -> params['name'] . '" type="checkbox"';
if ( $this -> params['checked'] )
$out .= 'checked="checked" ';
$out .= '>';
$out .= '<label for="';
if ( $this -> params['id'] )
$out .= $this -> params['id'];
else
$out .= $this -> params['name'];
$out .= '"></label>';
// $out .= '</div>';
if ( $this -> params['label'] )
{
$out .= '</div>';
$out .= '</div>';
}
echo $out;