1
0
Fork 0
mirror of https://github.com/Oreolek/kangana.git synced 2024-07-05 08:04:27 +03:00
kangana/application/classes/View/Form/Date.php

13 lines
234 B
PHP

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