/home/techb158/exp.abdallabala.com/vendor/respect/validation/library/Rules
Edit: /home/techb158/exp.abdallabala.com/vendor/respect/validation/library/Rules/FilterVar.php (1225B)
*
* For the full copyright and license information, please view the "LICENSE.md"
* file that was distributed with this source code.
*/
namespace Respect\Validation\Rules;
use Respect\Validation\Exceptions\ComponentException;
class FilterVar extends Callback
{
public function __construct()
{
$arguments = func_get_args();
if (!isset($arguments[0])) {
throw new ComponentException('Cannot validate without filter flag');
}
if (!$this->isValidFilter($arguments[0])) {
throw new ComponentException('Cannot accept the given filter');
}
$this->callback = 'filter_var';
$this->arguments = $arguments;
}
private function isValidFilter($filter)
{
return in_array(
$filter,
[
FILTER_VALIDATE_BOOLEAN,
FILTER_VALIDATE_EMAIL,
FILTER_VALIDATE_FLOAT,
FILTER_VALIDATE_INT,
FILTER_VALIDATE_IP,
FILTER_VALIDATE_REGEXP,
FILTER_VALIDATE_URL,
]
);
}
}