0byt3m1n1-V2
Path:
/
home
/
a
/
c
/
a
/
academiac
/
www
/
[
Home
]
File: contactemailsubject.php.tar
home/academiac/www/components/com_contact/models/rules/contactemailsubject.php 0000644 00000001216 15145325060 0024037 0 ustar 00 <?php /** * @package Joomla.Site * @subpackage Contact * @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; class JFormRuleContactEmailSubject extends JFormRule { public function test(& $element, $value, $group = null, & $input = null, & $form = null) { $params = JComponentHelper::getParams('com_contact'); $banned = $params->get('banned_subject'); foreach(explode(';', $banned) as $item){ if ($item != '' && JString::stristr($value, $item) !== false) return false; } return true; } }
©
2018.