mirror of
https://github.com/Icinga/icingadb-web.git
synced 2026-05-19 16:56:51 -04:00
30 lines
543 B
PHP
30 lines
543 B
PHP
<?php
|
|
|
|
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
|
|
|
|
namespace Icinga\Module\Icingadb\Common;
|
|
|
|
trait CaptionDisabled
|
|
{
|
|
protected $captionDisabled = false;
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function isCaptionDisabled(): bool
|
|
{
|
|
return $this->captionDisabled;
|
|
}
|
|
|
|
/**
|
|
* @param bool $captionDisabled
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setCaptionDisabled(bool $captionDisabled = true): self
|
|
{
|
|
$this->captionDisabled = $captionDisabled;
|
|
|
|
return $this;
|
|
}
|
|
}
|