mirror of
https://github.com/atlanticbiomedical/portal-legacy.git
synced 2025-07-02 01:47:28 -04:00
68 lines
1.7 KiB
PHP
68 lines
1.7 KiB
PHP
![]() |
<?php
|
||
|
|
||
|
/*
|
||
|
* This file is part of the symfony package.
|
||
|
* (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
|
||
|
* (c) 2004-2006 Sean Kerr.
|
||
|
*
|
||
|
* For the full copyright and license information, please view the LICENSE
|
||
|
* file that was distributed with this source code.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @package symfony
|
||
|
* @subpackage validator
|
||
|
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
|
||
|
* @author Sean Kerr <skerr@mojavi.org>
|
||
|
* @version SVN: $Id: sfHtmlValidator.class.php 3233 2007-01-11 21:01:08Z fabien $
|
||
|
*/
|
||
|
class sfHtmlValidator extends sfValidator
|
||
|
{
|
||
|
/**
|
||
|
* Executes this validator.
|
||
|
*
|
||
|
* @param mixed A file or parameter value/array
|
||
|
* @param error An error message reference
|
||
|
*
|
||
|
* @return bool true, if this validator executes successfully, otherwise false
|
||
|
*/
|
||
|
public function execute(&$value, &$error)
|
||
|
{
|
||
|
if (trim(strip_tags($value)) == '')
|
||
|
{
|
||
|
// If page contains an object or an image, it's ok
|
||
|
if (preg_match('/<img/i', $value) || preg_match('/<object/i', $value))
|
||
|
return true;
|
||
|
else
|
||
|
{
|
||
|
$error = $this->getParameterHolder()->get('html_error');
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Initializes this validator.
|
||
|
*
|
||
|
* @param sfContext The current application context
|
||
|
* @param array An associative array of initialization parameters
|
||
|
*
|
||
|
* @return bool true, if initialization completes successfully, otherwise false
|
||
|
*/
|
||
|
public function initialize($context, $parameters = null)
|
||
|
{
|
||
|
// initialize parent
|
||
|
parent::initialize($context);
|
||
|
|
||
|
// set defaults
|
||
|
$this->getParameterHolder()->set('html_error', 'Invalid input');
|
||
|
|
||
|
$this->getParameterHolder()->add($parameters);
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
}
|