2015-03-13 00:26:45 +01:00
|
|
|
<?php if ($object->check_source !== null): ?>
|
2014-05-20 20:07:09 +02:00
|
|
|
<tr>
|
2015-03-13 00:26:45 +01:00
|
|
|
<th>
|
|
|
|
<?= $this->translate('Check Source') ?>
|
|
|
|
</th>
|
|
|
|
<td>
|
|
|
|
<?= $this->escape($object->check_source) ?>
|
|
|
|
</td>
|
2014-05-20 20:07:09 +02:00
|
|
|
</tr>
|
2015-03-13 00:26:45 +01:00
|
|
|
<?php endif ?>
|
|
|
|
<?php if ($object->is_reachable !== null): ?>
|
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
<?= $this->translate('Reachable') ?>
|
|
|
|
</th>
|
|
|
|
<td>
|
|
|
|
<?= $object->is_reachable ? $this->translate('Yes') : $this->translate('No') ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<?php endif ?>
|