Sequenzia/app/views/comment/edit.php
2013-10-26 18:06:58 -05:00

10 lines
322 B
PHP
Executable File

<div id="comment-edit">
<h4><?= $this->t('.title') ?></h4>
<?= $this->formTag("#update", function(){ ?>
<?= $this->hiddenFieldTag("id", $this->params()->id) ?>
<?= $this->textArea("comment", "body", array('rows' => 10, 'cols' => 60)) ?><br>
<?= $this->submitTag($this->t('.save')) ?>
<?php }) ?>
</div>