Lines Matching refs:key
161 private $key; variable in ComboStrap\\Call
167 public function __construct(&$call, $key = "") argument
170 $this->key = $key;
609 function &addAttribute($key, $value) argument
613 $this->call[1][1][PluginUtility::ATTRIBUTES][$key] = $value;
615 return $this->call[1][1][PluginUtility::ATTRIBUTES][$key];
648 $name = $this->key;
681 function &getAttribute($key, $default = null) argument
684 if (isset($attributes[$key])) {
685 return $attributes[$key];
737 return $this->key;
814 function removeAttribute($key) argument
818 if (isset($data[PluginUtility::ATTRIBUTES][$key])) {
819 $value = $data[PluginUtility::ATTRIBUTES][$key];
820 unset($data[PluginUtility::ATTRIBUTES][$key]);
824 if ($this->getType() == $key) {
867 function addCssStyle($key, $value) argument
870 $cssValue = "$key:$value";
984 function getAttributeAndRemove(string $key) argument
986 $value = $this->getAttribute($key);
987 $this->removeAttribute($key);