show/object: render preview for stored objects only

This commit is contained in:
Thomas Gelf 2015-06-24 14:42:18 +02:00
parent 3e54af435b
commit 72961586c5
1 changed files with 6 additions and 3 deletions

View File

@ -4,7 +4,10 @@
<div class="content">
<?= $this->form ?>
<pre>
<?= $this->escape($form->getObject()) ?>
</pre>
<?php
$object = $form->getObject();
if ($object->hasBeenLoadedFromDb()) {
echo '<pre>' . $this->escape($object) . '</pre>';
}
?>
</div>