phamodels/src/Forms/TextAreaForm.php
Antonio de la Rosa 1cddd12e93 Fixes in forms
2016-02-19 03:22:01 +01:00

23 lines
No EOL
471 B
PHP

<?php
namespace PhangoApp\PhaModels\Forms;
use PhangoApp\PhaModels\Forms\BaseForm;
use PhangoApp\PhaUtils\Utils;
use PhangoApp\PhaView\View;
use PhangoApp\PhaRouter\Routes;
use PhangoApp\PhaI18n\I18n;
class TextAreaForm extends BaseForm {
public function form()
{
?>
<p><textarea class="tinymce_editor" name="<?php echo $this->name; ?>"><?php echo $this->setform($this->default_value); ?></textarea></p>
<?php
}
}
?>