Sequenzia/app/views/comment/edit.php

10 lines
322 B
PHP
Raw Normal View History

2013-10-27 01:06:58 +02:00
<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>