[ Index ] |
|
Code source de SPIP Agora 1.4 |
1 <?php 2 /***************************************************** 3 * This file is part of Agora, web based content management system. 4 * 5 * Agora is free software; you can redistribute it and/or modify 6 * it under the terms of the GNU General Public License as published by 7 * the Free Software Foundation; version 2 of the License. 8 * 9 * Agora is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 * GNU General Public License for more details (file "COPYING"). 13 * 14 * Copyright © Arnaud Martin, Antoine Pitrou et Philippe Rivière. 15 * List of authors detailed in "copyright_fr.html" file. 16 * E-mail : agora@sig.premier-ministre.gouv.fr 17 * Web site : http://www.agora.gouv.fr 18 *****************************************************/ 19 require_once dirname(__FILE__). "/filter.php"; 20 21 class Size extends Filter { 22 function Size () { } 23 24 function _applyRule () { 25 $operation_type = substr($this->_ruleValue, 0, 3); 26 $operation_value = substr($this->_ruleValue, 3, strlen($this->_ruleValue)); 27 28 if ($operation_type == "sup") { 29 if (strlen($this->_fieldContent) < $operation_value) { 30 return false; 31 } 32 } 33 else if ($operation_type == "inf") { 34 if (strlen($this->_fieldContent) > $operation_value) { 35 return false; 36 } 37 } 38 39 return true; 40 } 41 42 function _getErrMsg () { 43 $operation_value = substr($this->_ruleValue, 3, strlen($this->_ruleValue)); 44 $operation_type = substr($this->_ruleValue, 0, 3); 45 46 if ($operation_type == "sup") { 47 $operation_type_msg = _T('superieur'); 48 } 49 else if ($operation_type == "inf") { 50 $operation_type_msg = _T('inferieur'); 51 } 52 53 return _T("err_size", 54 array("fieldName" => $this->_fieldName, "operation_type_msg" => $operation_type_msg, 55 "operation_value" => $operation_value,)); 56 } 57 } 58 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Sat Feb 24 14:40:03 2007 | par Balluche grâce à PHPXref 0.7 |