mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-03-01 15:21:02 +03:00
162 lines
3.6 KiB
PHP
162 lines
3.6 KiB
PHP
<?php
|
|
/**
|
|
* Zend Framework (http://framework.zend.com/)
|
|
*
|
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
|
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
*/
|
|
|
|
namespace Zend\Form;
|
|
|
|
use Traversable;
|
|
|
|
trait LabelAwareTrait
|
|
{
|
|
/**
|
|
* Label specific html attributes
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $labelAttributes;
|
|
|
|
/**
|
|
* Label specific options
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $labelOptions = array();
|
|
|
|
/**
|
|
* Set the attributes to use with the label
|
|
*
|
|
* @param array $labelAttributes
|
|
* @return LabelAwareInterface
|
|
*/
|
|
public function setLabelAttributes(array $labelAttributes)
|
|
{
|
|
$this->labelAttributes = $labelAttributes;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get the attributes to use with the label
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getLabelAttributes()
|
|
{
|
|
return $this->labelAttributes;
|
|
}
|
|
|
|
/**
|
|
* Set many label options at once
|
|
*
|
|
* Implementation will decide if this will overwrite or merge.
|
|
*
|
|
* @param array|Traversable $arrayOrTraversable
|
|
* @return Element|ElementInterface
|
|
* @throws Exception\InvalidArgumentException
|
|
*/
|
|
public function setLabelOptions($arrayOrTraversable)
|
|
{
|
|
if (!is_array($arrayOrTraversable) && !$arrayOrTraversable instanceof Traversable) {
|
|
throw new Exception\InvalidArgumentException(sprintf(
|
|
'%s expects an array or Traversable argument; received "%s"',
|
|
__METHOD__,
|
|
(is_object($arrayOrTraversable) ? get_class($arrayOrTraversable) : gettype($arrayOrTraversable))
|
|
));
|
|
}
|
|
foreach ($arrayOrTraversable as $key => $value) {
|
|
$this->setLabelOption($key, $value);
|
|
}
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get label specific options
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getLabelOptions()
|
|
{
|
|
return $this->labelOptions;
|
|
}
|
|
|
|
/**
|
|
* Clear all label options
|
|
*
|
|
* @return Element|ElementInterface
|
|
*/
|
|
public function clearLabelOptions()
|
|
{
|
|
$this->labelOptions = array();
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Remove many attributes at once
|
|
*
|
|
* @param array $keys
|
|
* @return ElementInterface
|
|
*/
|
|
public function removeLabelOptions(array $keys)
|
|
{
|
|
foreach ($keys as $key) {
|
|
unset($this->labelOptions[$key]);
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Set a single label optionn
|
|
*
|
|
* @param string $key
|
|
* @param mixed $value
|
|
* @return Element|ElementInterface
|
|
*/
|
|
public function setLabelOption($key, $value)
|
|
{
|
|
$this->labelOptions[$key] = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Retrieve a single label option
|
|
*
|
|
* @param $key
|
|
* @return mixed|null
|
|
*/
|
|
public function getLabelOption($key)
|
|
{
|
|
if (!array_key_exists($key, $this->labelOptions)) {
|
|
return null;
|
|
}
|
|
return $this->labelOptions[$key];
|
|
}
|
|
|
|
/**
|
|
* Remove a single label option
|
|
*
|
|
* @param string $key
|
|
* @return ElementInterface
|
|
*/
|
|
public function removeLabelOption($key)
|
|
{
|
|
unset($this->labelOptions[$key]);
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Does the element has a specific label option ?
|
|
*
|
|
* @param string $key
|
|
* @return bool
|
|
*/
|
|
public function hasLabelOption($key)
|
|
{
|
|
return array_key_exists($key, $this->labelOptions);
|
|
}
|
|
}
|