module/UIComponents/src/UIComponents/View/Helper/Components/Element.php 1 location
|
@@ 52-54 (lines=3) @@
|
| 49 |
|
if (isset($options['class']) && (null !== $options['class'])) { |
| 50 |
|
$this->setClassnames($options['class']); |
| 51 |
|
} |
| 52 |
|
if (isset($options['classnames']) && (null !== $options['classnames'])) { |
| 53 |
|
$this->setClassnames($options['classnames']); |
| 54 |
|
} |
| 55 |
|
|
| 56 |
|
if (isset($options['attr']) && (null !== $options['attr'])) { |
| 57 |
|
$this->setAttributes($options['attr']); |
module/UIComponents/src/UIComponents/View/Helper/Components/Table.php 1 location
|
@@ 78-80 (lines=3) @@
|
| 75 |
|
if (isset($options['class']) && (null !== $options['class'])) { |
| 76 |
|
$this->setClassnames($options['class']); |
| 77 |
|
} |
| 78 |
|
if (isset($options['classnames']) && (null !== $options['classnames'])) { |
| 79 |
|
$this->setClassnames($options['classnames']); |
| 80 |
|
} |
| 81 |
|
|
| 82 |
|
if (isset($options['attr']) && (null !== $options['attr'])) { |
| 83 |
|
$this->setAttributes($options['attr']); |