%PDF- %PDF-
Direktori : /home/lightco1/upgrade.lightco.com.au/modules/mod_360pano/fields/ |
Current File : /home/lightco1/upgrade.lightco.com.au/modules/mod_360pano/fields/timestamp.php |
<?php /** * @version $Id: mod_360pano.php 14401 2010-01-26 14:10:00Z louis $ * @package 360 Degree Panorama Viewer * @copyright Copyright (C) 2012 - 2013 Qubesys Technologies Pvt.Ltd. All rights reserved. * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL */ // no direct access defined('_JEXEC') or die('Restricted access'); jimport('joomla.html.html'); jimport('joomla.form.formfield'); class JFormFieldTimeStamp extends JFormField { protected $type = 'TimeStamp'; //the form field type protected function getInput() { return '<input name="jform[params][time_stamp]" type="text" readonly="readonly" class="inputbox" id="jform_params_time_stamp" value="'. time() .'" size="15" />'; } }