uawdijnntqw1x1x1
IP : 216.73.216.6
Hostname : ps-hcp-gr-004.pouyasazan.org
Kernel : Linux ps-hcp-gr-004.pouyasazan.org 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64
Disable Function : exec,system,passthru,shell_exec,proc_open,proc_close,popen,pcntl_exec,dl,show_source
OS : Linux
PATH:
/
home
/
hsabaeej
/
public_html
/
3c2fc
/
..
/
components
/
com_rsform
/
helpers
/
datevalidation.php
/
/
<?php /** * @package RSForm! Pro * @copyright (C) 2007-2014 www.rsjoomla.com * @license GPL, http://www.gnu.org/copyleft/gpl.html */ // no direct access defined( '_JEXEC' ) or die( 'Restricted access' ); class RSFormProDateValidations { public static function none($day, $month, $year, $data = array()) { // no validation $valid = true; return $valid; } public static function fromtoday($day, $month, $year, $data = array()) { $today = JFactory::getDate(); $selected = JFactory::getDate($year.'-'.self::padding($month).'-'.self::padding($day).' 23:59:59'); return $selected->toUnix() >= $today->toUnix(); } public static function fromtomorrow($day, $month, $year, $data = array()) { $tomorrow = JFactory::getDate(); $tomorrow->modify('+1 day'); $selected = JFactory::getDate($year.'-'.self::padding($month).'-'.self::padding($day).' 23:59:59'); return $selected->toUnix() >= $tomorrow->toUnix(); } public static function beforetodayexcluding($day, $month, $year, $data = array()) { $today = JFactory::getDate(); $today->setTime(0, 0, 0); $selected = JFactory::getDate($year.'-'.self::padding($month).'-'.self::padding($day).' 00:00:00'); return $selected->toUnix() < $today->toUnix(); } public static function beforetodayincluding($day, $month, $year, $data = array()) { $today = JFactory::getDate(); $today->setTime(23, 59, 59); $selected = JFactory::getDate($year.'-'.self::padding($month).'-'.self::padding($day).' 00:00:00'); return $selected->toUnix() < $today->toUnix(); } protected static function padding($value) { return str_pad($value, 2, '0', STR_PAD_LEFT); } }
/home/hsabaeej/public_html/3c2fc/../components/com_rsform/helpers/datevalidation.php