Blame view

src/Model/Table/AppTable.php 853 Bytes
0e5846aa   Alexandre   Css bouton valide...
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
namespace App\Model\Table;

use Cake\ORM\Table;

/**
 * App Model
 */
class AppTable extends Table
{

    // autoriser les caracteres habituels standards pour un ou plusieurs MOTs
    // accents + - _ / () . , \s (=space)
f4e6dc02   Alexandre   Version: 2.5.2.0
14
    private $string = "a-zA-Z0-9éèàùâêôîôûç%().,\/\s\+\-_'";
0e5846aa   Alexandre   Css bouton valide...
15
16
17
18
19
20
21
22
    
    public function check_string($check) {
    	return (bool) preg_match('/^['.$this->string.']*$/', $check);
    }
    
    // autoriser les caracteres spéciaux (pour une PHRASE ou paragraphe) :
    // check_string PLUS ces symboles ====> & * > < ? % ! : , " '
    public function check_string_with_some_special_cars($check) {
4dae83a2   Alexandre   Version: 2.5.1.0
23
    	return (bool) preg_match('/^['.$this->string.'?%!:,&#*><\-\+\="\''.']*$/', $check);
0e5846aa   Alexandre   Css bouton valide...
24
25
    }
    
546ab4e5   Alexandre   Version: 2.4.6.5
26
    public function check_mail($check) {
3ab8435b   Alexandre   Version: 2.4.6.4
27
28
    	return (bool) filter_var($check, FILTER_VALIDATE_EMAIL);
    }
0e5846aa   Alexandre   Css bouton valide...
29
30
31
    
  
}