2017-07-20 10:19:32 +02:00

26 lines
468 B
PHP

<?php
namespace ipl\Web\Widget;
use ipl\Html\BaseElement;
class ActionBar extends BaseElement
{
protected $contentSeparator = ' ';
/** @var string */
protected $tag = 'div';
protected $defaultAttributes = array('class' => 'action-bar');
/**
* @param string $target
* @return $this
*/
public function setBaseTarget($target)
{
$this->attributes()->set('data-base-target', $target);
return $this;
}
}