Current Path :
/
home
/
develito
/
www
/
tmp
/
install_60a8eb9c032c2
/
site
/
lib
/
message
/
Or
Select Your Path :
Upload File :
New :
File
Dir
//home/develito/www/tmp/install_60a8eb9c032c2/site/lib/message/date.php
<?php /** * Visforms message date class * * @author Aicha Vack * @package Joomla.Site * @subpackage com_visforms * @link http://www.vi-solutions.de * @license GNU General Public License version 2 or later; see license.txt * @copyright 2012 vi-solutions * @since Joomla 1.6 */ // no direct access defined('_JEXEC') or die('Restricted access'); class VisformsMessageDate extends VisformsMessage { public function __construct($name, $args) { parent::__construct($name, $args); $this->text = 'COM_VISFORMS_FIELD_DATE_FORMAT'; $this->args = $args; } protected function setMessage() { $format = (isset($this->args['format'])) ? $this->args['format'] : ''; $message = JText::sprintf($this->text, $this->name, $format); return $message; } }