2013-10-14 18:17:58 +02:00
|
|
|
<?php
|
|
|
|
$o = $this->object;
|
2013-10-15 18:09:16 +02:00
|
|
|
|
|
|
|
/** @var Zend_View_Helper_CommandForm $cf */
|
|
|
|
$cf = $this->getHelper('CommandForm');
|
2013-10-14 18:17:58 +02:00
|
|
|
?>
|
|
|
|
<div>
|
|
|
|
<div class="panel-heading">
|
|
|
|
<div class="panel-hostname">
|
|
|
|
Configuration
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<hr class="separator" />
|
|
|
|
|
2013-09-24 15:26:10 +02:00
|
|
|
<div class="panel-body">
|
2013-10-14 18:17:58 +02:00
|
|
|
<table class="table table-condensed table-detail">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>Passive Checks</td>
|
|
|
|
<td><div class="icon-table-hint icon-edit pull-left"></div></td>
|
2013-10-15 18:09:16 +02:00
|
|
|
<td>
|
|
|
|
<input type="checkbox" id="#" name="#" class="pull-right" <?= ($o->passive_checks_enabled === '1') ? 'checked="true"' : '' ?> />
|
|
|
|
</td>
|
2013-10-14 18:17:58 +02:00
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
<td>Active Checks</td>
|
|
|
|
<td></td>
|
|
|
|
<td><input type="checkbox" id="#" name="#" class="pull-right" <?= ($o->active_checks_enabled === '1') ? 'checked="true"' : '' ?> /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Obsessing</td>
|
|
|
|
<td></td>
|
|
|
|
<td><input type="checkbox" id="#" name="#" class="pull-right" <?= ($o->obsessing === '1') ? 'checked="true"' : '' ?> /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Notifications</td>
|
|
|
|
<td></td>
|
|
|
|
<td><input type="checkbox" id="#" name="#" class="pull-right" <?= ($o->notifications_enabled === '1') ? 'checked="true"' : '' ?> /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Event Handler</td>
|
|
|
|
<td></div></td>
|
|
|
|
<td><input type="checkbox" id="#" name="#" class="pull-right" <?= ($o->event_handler_enabled === '1') ? 'checked="true"' : '' ?> /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Flap Detection</td>
|
|
|
|
<td></td>
|
|
|
|
<td><input type="checkbox" id="#" name="#" class="pull-right" <?= ($o->flap_detection_enabled === '1') ? 'checked="true"' : '' ?> /></td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
2013-10-07 16:46:20 +02:00
|
|
|
</table>
|
2013-09-24 15:26:10 +02:00
|
|
|
</div>
|
2013-10-07 16:46:20 +02:00
|
|
|
</div>
|