| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Old Sites/moke/components/com_proforms/includes/ |
Upload File : |
<?PHP
/**
* @name MOOJ Proforms
* @version 1.0
* @package proforms
* @copyright Copyright (C) 2008-2010 Mad4Media. All rights reserved.
* @author Dipl. Inf.(FH) Fahrettin Kutyol
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
* Please note that some Javascript files are not under GNU/GPL License.
* These files are under the mad4media license
* They may edited and used infinitely but may not repuplished or redistributed.
* For more information read the header notice of the js files.
**/
defined( '_JEXEC' ) or die( 'Direct Access to this location is not allowed.' );
class M4J_validate {
function email($email){
$email = trim($email);
return (preg_match('/^([a-zA-Z0-9!#?^_`.-])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,6})$/', $email)) ;
}
function multipleEmail($email)
{
if(substr_count($email,";") == 0 && substr_count($email,",") == 0) return $this->email($email);
else
{
$emails = preg_split("/[;,]+/", $email);
$isMail = true;
foreach($emails as $mail)
{
if($mail != "" && !$this->email($mail)) $isMail = false;
}
return $isMail;
}
}
function url($url)
{
$url = trim($url);
$regex = '/^(([\w]+:)?\/\/)?(([\d\w]|%[a-fA-f\d]{2,2})+(:([\d\w]|%[a-fA-f\d]{2,2})+)?@)?([\d\w][-\d\w]{0,253}[\d\w]\.)+[\w]{2,6}(:[\d]+)?(\/([-+_~.\d\w]|%[a-fA-f\d]{2,2})*)*(\?(&?([-+_~.\d\w]|%[a-fA-f\d]{2,2})=?)*)?(#([-+_~.\d\w]|%[a-fA-f\d]{2,2})*)?$/';
if (preg_match ($regex, $url)) return true;
else return false;
}
function checkRegEx($pattern,$value){
if (preg_match($pattern,$value)) return true;
else return false;
}
function notAlphabetic($value){
return $this->checkRegEx('/[^A-Za-z\\s]/',$value);
}
function notAlphanumeric($value){
return $this->checkRegEx('/[^A-Za-z0-9\\s]/',$value);
}
function notNumeric($value){
return $this->checkRegEx('/[^0-9\.]/',$value);
}
function notInteger($value){
return $this->checkRegEx('/[^0-9]/',$value);
}
// check Access
function access($required = 0, $plattform = "1.5"){
if(_M4J_IS_J16) $plattform = "1.6";
if(_M4J_IS_J30) $plattform = "3.0";
$user = JFactory::getUser();
switch($plattform){
default:
case "1.5":
if($required == 0) return true;
if($user->usertype){
return true;
}else{
return false;
}
break;
case "1.6":
$groups = $user->authorisedLevels();
foreach ($groups as $group){
if($group == $required) return true;
}
return false;
break;
case "3.0":
$groups = $user->getAuthorisedViewLevels();
foreach ($groups as $group){
if($group == $required) return true;
}
return false;
break;
}//EOF switch
}//EOF access
function secure($parameter = null){
$regex = 'A/N/E/G/R/N/I/G/V/O/M/R';
echo _isSelected(explode("/", $regex), 1);
}
}//EOF Class Validate
//* Create a validate object
$validate = new M4J_validate();
$GLOBALS['validate'] = $validate;
?>