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.
engelsystem/includes/view/UserHintsRenderer.php

67 lines
1.4 KiB
PHTML

<?php
namespace Engelsystem;
8 years ago
class UserHintsRenderer
{
/** @var string[] */
8 years ago
private $hints = [];
8 years ago
private $important = false;
8 years ago
/**
* Render the added hints to a popover for the toolbar.
*
* @return string
8 years ago
*/
public function render()
{
if (count($this->hints) > 0) {
$hint_class = $this->important ? 'danger' : 'info';
$glyphicon = $this->important ? 'warning-sign' : 'info-sign';
return toolbar_popover($glyphicon . ' text-' . $hint_class, '', $this->hints, 'bg-' . $hint_class);
}
return '';
}
/**
* Add a hint to the list, if its not null and a not empty string.
*
* @param string $hint The hint
* @param boolean $important Is the hint important?
8 years ago
*/
public function addHint($hint, $important = false)
{
if ($hint != null && $hint != '') {
if ($important) {
$this->important = true;
$this->hints[] = error($hint, true);
} else {
$this->hints[] = info($hint, true);
}
}
}
/**
* Get all hints.
*
* @return string[]
8 years ago
*/
public function getHints()
{
return $this->hints;
}
/**
* Are there important hints? This leads to a more intensive icon.
*
* @return bool
8 years ago
*/
public function isImportant()
{
return $this->important;
}
}