本文整理汇总了PHP中CheckboxField::input方法的典型用法代码示例。如果您正苦于以下问题:PHP CheckboxField::input方法的具体用法?PHP CheckboxField::input怎么用?PHP CheckboxField::input使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CheckboxField
的用法示例。
在下文中一共展示了CheckboxField::input方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: input
/**
* Render input field.
*
* @return Brick
*/
public function input()
{
// Provide a default label for the checkbox
$text = $this->text() ? $this->text() : 'Disable comments?';
// Build the input field
$wrapper = parent::input();
$input = $wrapper->html();
$wrapper->text($text);
$wrapper->prepend($input);
return $wrapper;
}
示例2: input
public function input()
{
$input = new Brick('input', null);
$input->addClass('tgl');
$input->attr(array('id' => $this->id(), 'name' => $this->name(), 'required' => $this->required(), 'autofocus' => $this->autofocus(), 'autocomplete' => $this->autocomplete(), 'readonly' => $this->readonly(), 'type' => 'checkbox', 'checked' => v::accepted($this->value())));
$btn = new Brick('label', null);
$btn->addClass('tgl-btn');
$btn->attr('for', $this->id());
$wrapper = parent::input();
$wrapper->tag('label');
$wrapper->html($this->i18n($this->text()));
$wrapper->attr('for', $this->id());
$wrapper->removeAttr('id');
$wrapper->addClass('input-with-checkbox');
$wrapper->prepend($btn);
$wrapper->prepend($input);
return $wrapper;
}