89 lines
2.7 KiB
PHP
89 lines
2.7 KiB
PHP
<?php
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
/**
|
|
* Icinga 2 Web - Head for multiple monitoring frontends
|
|
* Copyright (C) 2013 Icinga Development Team
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* @copyright 2013 Icinga Development Team <info@icinga.org>
|
|
* @author Icinga Development Team <info@icinga.org>
|
|
*/
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
use \Monitoring\Command\Meta;
|
|
|
|
/**
|
|
* Class MonitoringCommands
|
|
*
|
|
* Helper which produces a list of command buttons
|
|
* depending on object states
|
|
*/
|
|
class Zend_View_Helper_MonitoringCommands extends Zend_View_Helper_Abstract
|
|
{
|
|
/**
|
|
* @param stdClass $object host or service object or something other
|
|
* @param string $type small or full
|
|
* @return string html output
|
|
*/
|
|
public function monitoringCommands(\stdClass $object, $type)
|
|
{
|
|
$commands = new Meta();
|
|
$definitions = $commands->getCommandForObject($object, $type);
|
|
$out = '<div>';
|
|
$i = 0;
|
|
|
|
foreach ($definitions as $definition) {
|
|
|
|
if ($i % 5 === 0) {
|
|
$out .= '</div><div class="command-section pull-left">';
|
|
}
|
|
|
|
if ($type === Meta::TYPE_FULL) {
|
|
$out .= '<div>';
|
|
}
|
|
|
|
$out .= sprintf(
|
|
'<button type="button" data-target="command"'
|
|
. ' data-command-id="%1$s" class="btn %5$s"'
|
|
. ' title="%3$s">'
|
|
. '<i class="%4$s"></i> %2$s'
|
|
. '</button>',
|
|
$definition->id,
|
|
$definition->shortDescription,
|
|
$definition->longDescription,
|
|
$definition->iconCls,
|
|
$definition->btnCls
|
|
);
|
|
|
|
if ($type === Meta::TYPE_FULL) {
|
|
$out .= '</div>';
|
|
}
|
|
|
|
$i++;
|
|
}
|
|
|
|
$out .= '</div>';
|
|
|
|
$out .= '<div class="clearfix"></div>';
|
|
|
|
if ($type === Meta::TYPE_FULL) {
|
|
return '<div class="command-container">'. $out. '</div>';
|
|
}
|
|
|
|
return $out;
|
|
}
|
|
}
|