1
0
Fork 0
mirror of https://github.com/Oreolek/kangana.git synced 2024-07-02 22:55:04 +03:00
kangana/application/classes/View/Form/Textarea.php

12 lines
219 B
PHP

<?php defined('SYSPATH') or die('No direct script access.');
/**
* Form textarea control.
**/
class View_Form_Textarea extends View_Form_Control {
public function id()
{
return 'textarea-'.$this->name;
}
}