mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-09-29 04:39:07 +02:00
26 lines
468 B
PHP
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;
|
|
}
|
|
}
|