initial commit

This commit is contained in:
Chris Sewell
2012-11-28 03:55:08 -05:00
parent 7adb399b2e
commit cf140a2e97
3247 changed files with 492437 additions and 0 deletions

View File

@ -0,0 +1,85 @@
<?php
/*
* This file is part of the symfony package.
* (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* sfCallbackValidator allows you to use a custom callback function or method to
* validate the input. The function should return true on valid and false on invalid
* and should be callable using is_callable().
*
* <b>Required parameters:</b>
*
* # <b>callback</b> - [none] - A valid callback function or Class::method array.
* When using class/method specify it as an array in yml file as [class, method]
*
* <b>Optional parameters:</b>
*
* # <b>invalid_error</b> - [Invalid input] - An error message to use when the
* input fails the callback check
*
* @package symfony
* @subpackage validator
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: sfCallbackValidator.class.php 3329 2007-01-23 08:29:34Z fabien $
*/
class sfCallbackValidator extends sfValidator
{
/**
* Executes this validator.
*
* @param string A parameter value
* @param string An error message reference
*
* @return boolean true, if this validator executes successfully, otherwise false
*/
public function execute(&$value, &$error)
{
$callback = $this->getParameterHolder()->get('callback');
if (!call_user_func($callback, $value))
{
$error = $this->getParameterHolder()->get('invalid_error');
return false;
}
return true;
}
/**
* Initializes this validator.
*
* @param sfContext The current application context
* @param array An associative array of initialization parameters
*
* @return boolean true, if initialization completes successfully, otherwise false
*/
public function initialize($context, $parameters = null)
{
// initialize parent
parent::initialize($context);
// set defaults
$this->getParameterHolder()->set('callback', null);
$this->getParameterHolder()->set('invalid_error', 'Invalid input');
$this->getParameterHolder()->add($parameters);
// check parameters
if (!is_callable($this->getParameterHolder()->get('callback')))
{
// no pattern specified
$error = 'Callback function must be a valid callback using is_callable()';
throw new sfValidatorException($error);
}
return true;
}
}