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/Select.php

12 lines
219 B
PHP

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