You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
545 B
PHTML
22 lines
545 B
PHTML
5 years ago
|
<?php
|
||
|
|
||
|
namespace Artmark\Forms\Attributes;
|
||
|
|
||
|
/**
|
||
|
* Description of VisibleAttributes
|
||
|
*
|
||
|
* @author Andrey Pokidov <pokidov@e-traffic.ru>
|
||
|
*/
|
||
|
trait VisibleAttributes
|
||
|
{
|
||
|
use DirectionAttribute, LanguageAttribute, StyleAttribute, CssClassAttribute;
|
||
|
|
||
|
protected function appendVisibleAttributes(array & $attributes)
|
||
|
{
|
||
|
$this->appendDirectionAttribute($attributes);
|
||
|
$this->appendLanguageAttribute($attributes);
|
||
|
$this->appendCssClassAttribute($attributes);
|
||
|
$this->appendStyleAttribute($attributes);
|
||
|
}
|
||
|
}
|