| Current Path : /var/www/html/ajay/phpwebsite-1.8.x/Global/Variable/ |
| Current File : /var/www/html/ajay/phpwebsite-1.8.x/Global/Variable/Datetime.php |
<?php
namespace Variable;
/**
*
* @author Matthew McNaney <mcnaney at gmail dot com>
* @package Global
* @subpackage Variable
* @license http://opensource.org/licenses/lgpl-3.0.html
*/
class DateTime extends Date {
/**
* Form input should be of datetime type
* @var string
*/
protected $input_type = 'datetime';
/**
* Of this format: YYYY-MM-DD HH:MM:SS
* @var string
*/
protected $format = '%Y-%m-%d %H:%M:%S';
}
?>