| 123456789101112131415161718192021222324252627282930 |
- <?php
- namespace ThurData\Servers\KerioEmail\Core\UI\Traits;
- /**
- * Icons related functions
- *
- * @autor ThurData <info@thurdata.ch>
- */
- trait Icon
- {
- protected $icon = null;
- public function getIcon()
- {
- if ($this->icon)
- {
- return $this->icon;
- }
- return false;
- }
-
- public function setIcon($iconClass)
- {
- $this->icon = $iconClass;
-
- return $this;
- }
- }
|