本文整理汇总了PHP中Field::getAttributes方法的典型用法代码示例。如果您正苦于以下问题:PHP Field::getAttributes方法的具体用法?PHP Field::getAttributes怎么用?PHP Field::getAttributes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Field
的用法示例。
在下文中一共展示了Field::getAttributes方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getAttributes
public function getAttributes()
{
$attributes = array_merge(parent::getAttributes(), array('data-sitekey' => $this->siteKey));
unset($attributes['value']);
unset($attributes['name']);
return $attributes;
}
示例2: getAttributes
public function getAttributes()
{
$attributes = parent::getAttributes();
if ($this->isMultipleAllowed) {
$attributes['multiple'] = 'multiple';
}
return $attributes;
}
示例3: getAttributes
public function getAttributes()
{
$attrs = array('type' => 'checkbox', 'value' => self::ON);
if ($this->isChecked()) {
$attrs[self::CHECKED] = self::CHECKED;
}
return array_merge(parent::getAttributes(), $attrs);
}
示例4: getAttributes
public function getAttributes()
{
$att = array();
if (!empty($this->onEnter)) {
$att['data-input-action-on-enter'] = $this->onEnter;
}
if ($this->mask !== null) {
$att['data-input-mask'] = $this->mask;
}
return array_merge(parent::getAttributes(), $att);
}
示例5: getAttributes
/**
* {@inheritDoc}
*/
public function getAttributes()
{
return array_merge(parent::getAttributes(), array('id' => $this->getId(), 'name' => $this->getName(), 'value' => $this->getDisplayedData(), 'disabled' => $this->isDisabled(), 'type' => $this->getOption('type')));
}
示例6: getAttributes
public function getAttributes()
{
return array_merge(parent::getAttributes(), array('placeholder' => $this->label));
}
示例7: getAttributes
/**
* {@inheritDoc}
*/
public function getAttributes()
{
return array_merge(parent::getAttributes(), array('id' => $this->getId(), 'name' => $this->getName(), 'rows' => 4, 'cols' => 30));
}
示例8: renderButtonInput
protected static function renderButtonInput(Field $field)
{
return sprintf('<button type="%s" name="%s" value="%s" %s>%s</button>', $field->getType(), $field->getName(), $field->getValue(), $field->getAttributes(), $field->getLabel());
}
示例9: getAttributes
public function getAttributes()
{
return array_merge(parent::getAttributes(), ["type" => "hidden"]);
}