2015-06-30 11:19:31 +02:00
|
|
|
<div class="controls">
|
|
|
|
<?= $this->tabs ?>
|
|
|
|
<h1><?= $this->escape($this->title) ?></h1>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="content">
|
2016-02-22 14:39:47 +01:00
|
|
|
<?php if ($object->disabled === 'y'): ?>
|
|
|
|
<p class="error"><?= $this->translate('This object will not be deployed as it has been disabled') ?></p>
|
|
|
|
<?php endif ?>
|
|
|
|
<pre<?php if ($object->disabled === 'y'): ?> class="disabled"<?php endif ?>><?= $this->escape($object) ?><?php if ($this->extraObjects): ?>
|
2016-02-18 01:45:05 +01:00
|
|
|
<?= implode('', $this->extraObjects) ?>
|
|
|
|
<?php endif ?></pre>
|
2015-06-30 11:19:31 +02:00
|
|
|
</div>
|