forked from rebillar/site-accueil-insa
26 lines
No EOL
529 B
PHP
26 lines
No EOL
529 B
PHP
<?php
|
|
/**
|
|
* Matomo - free/libre analytics platform
|
|
*
|
|
* @link https://matomo.org
|
|
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
|
*
|
|
*/
|
|
|
|
namespace Piwik\Validators;
|
|
|
|
use Piwik\Piwik;
|
|
|
|
class Regex extends BaseValidator
|
|
{
|
|
public function validate($value)
|
|
{
|
|
if ($this->isValueBare($value)) {
|
|
return;
|
|
}
|
|
|
|
if (@preg_match($value, '') === false) {
|
|
throw new Exception(Piwik::translate('General_ValidatorErrorNoValidRegex', array($value)));
|
|
}
|
|
}
|
|
} |