本文整理汇总了PHP中CheckboxField::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP CheckboxField::__construct方法的具体用法?PHP CheckboxField::__construct怎么用?PHP CheckboxField::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CheckboxField
的用法示例。
在下文中一共展示了CheckboxField::__construct方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct($name, $title = null, $baseValue = null, $value = null)
{
if (!isset(self::$count_cache[$name])) {
self::$count_cache[$name] = array();
}
self::$count_cache[$name][] = $this;
$this->baseName = $name;
$count = count(self::$count_cache[$name]);
$this->baseValue = $count;
if ($baseValue) {
$this->baseValue = $baseValue;
}
$name .= '_' . $count;
parent::__construct($name, $title, $value);
}
示例2: __construct
/**
* @param string $name
* @param string $title
* @param mixed $value
*/
public function __construct($name, $title = null, $value = "")
{
parent::__construct($name, $title, $value);
}
示例3: __construct
/**
* Creates a new field.
*
* @param string $name The internal field name, passed to forms.
* @param string $title The human-readable field label.
* @param mixed $value The value of the field.
*/
public function __construct($name, $title = null, $value = null)
{
parent::__construct($name, $title, $value);
$this->setFieldHolderTemplate('FormField_holder');
}
开发者ID:spekulatius,项目名称:silverstripe-bootstrap_extra_fields,代码行数:12,代码来源:BootstrapButtonCheckboxField.php