Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 1... Línea 1...
1
<?php
1
<?php
2
 
-
 
3
// This file is part of Moodle - http://moodle.org/
2
// This file is part of Moodle - http://moodle.org/
4
//
3
//
5
// Moodle is free software: you can redistribute it and/or modify
4
// Moodle is free software: you can redistribute it and/or modify
6
// it under the terms of the GNU General Public License as published by
5
// it under the terms of the GNU General Public License as published by
7
// the Free Software Foundation, either version 3 of the License, or
6
// the Free Software Foundation, either version 3 of the License, or
Línea 14... Línea 13...
14
//
13
//
15
// You should have received a copy of the GNU General Public License
14
// You should have received a copy of the GNU General Public License
16
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
15
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
Línea 17... Línea 16...
17
 
16
 
18
/**
17
/**
19
 * Basic email protection filter.
18
 * File only retained to prevent fatal errors in code that tries to require/include this.
-
 
19
 *
20
 *
20
 * @todo MDL-82708 delete this file as part of Moodle 6.0 development.
21
 * @package    filter
21
 * @deprecated This file is no longer required in Moodle 4.5+.
22
 * @subpackage emailprotect
22
 * @package filter_emailprotect
23
 * @copyright  2004 Mike Churchward
23
 * @copyright Mike Churchward
24
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24
 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25
 */
-
 
26
 
25
 */
Línea 27... Línea -...
27
defined('MOODLE_INTERNAL') || die();
-
 
28
 
-
 
29
/**
-
 
30
 * This class looks for email addresses in Moodle text and
-
 
31
 * hides them using the Moodle obfuscate_text function.
-
 
32
 */
-
 
33
class filter_emailprotect extends moodle_text_filter {
-
 
34
    function filter($text, array $options = array()) {
-
 
35
    /// Do a quick check using stripos to avoid unnecessary work
-
 
36
        if (strpos($text, '@') === false) {
-
 
37
            return $text;
-
 
38
        }
-
 
39
 
-
 
40
    /// There might be an email in here somewhere so continue ...
-
 
41
        $matches = array();
-
 
42
 
-
 
43
    /// regular expression to define a standard email string.
-
 
44
        $emailregex = '((?:[\w\.\-])+\@(?:(?:[a-zA-Z\d\-])+\.)+(?:[a-zA-Z\d]{2,4}))';
-
 
45
 
-
 
46
    /// pattern to find a mailto link with the linked text.
26
defined('MOODLE_INTERNAL') || die();
47
        $pattern = '|(<a\s+href\s*=\s*[\'"]?mailto:)'.$emailregex.'([\'"]?\s*>)'.'(.*)'.'(</a>)|iU';
-
 
48
        $text = preg_replace_callback($pattern, 'filter_emailprotect_alter_mailto', $text);
-
 
49
 
-
 
50
    /// pattern to find any other email address in the text.
-
 
51
        $pattern = '/(^|\s+|>)'.$emailregex.'($|\s+|\.\s+|\.$|<)/i';
-
 
52
        $text = preg_replace_callback($pattern, 'filter_emailprotect_alter_email', $text);
-
 
53
 
-
 
54
        return $text;
-
 
55
    }
-
 
56
}
-
 
57
 
-
 
58
 
-
 
59
function filter_emailprotect_alter_email($matches) {
-
 
60
    return $matches[1].obfuscate_text($matches[2]).$matches[3];
-
 
61
}
-
 
62
 
-
 
63
function filter_emailprotect_alter_mailto($matches) {
-
 
64
    return obfuscate_mailto($matches[2], $matches[4]);
-
 
65
}
-