File builder/form/field/constraint/FormFieldConstraintUrl.class.php
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41:
<?php
/**
* @package Builder
* @subpackage Form\field\constraint
* @copyright © 2005-2019 PHPBoost
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU/GPL-3.0
* @author Regis VIARRE <crowkait@phpboost.com>
* @version PHPBoost 5.2 - last update: 2016 11 15
* @since PHPBoost 3.0 - 2010 02 07
* @contributor Julien BRISWALTER <j1.seth@phpboost.com>
* @contributor mipel <mipel@phpboost.com>
* @contributor Arnaud GENET <elenwii@phpboost.com>
*/
class FormFieldConstraintUrl extends FormFieldConstraintRegex
{
private static $regex = '`^((https?|ftp)://[^ ]+)|(/[^ ]+)$`u';
public function __construct($error_message = '')
{
if (empty($error_message))
{
$error_message = LangLoader::get_message('form.doesnt_match_url_regex', 'status-messages-common');
}
$this->set_validation_error_message($error_message);
parent::__construct(
self::$regex,
self::$regex,
$error_message
);
}
public function get_url_checking_regex()
{
return self::$regex;
}
}
?>