Proyectos de Subversion Moodle

Rev

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

Rev 1 Rev 1441
Línea 23... Línea 23...
23
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24
 */
24
 */
Línea 25... Línea 25...
25
 
25
 
Línea 26... Línea -...
26
namespace core\output;
-
 
27
 
-
 
28
defined('MOODLE_INTERNAL') || die();
26
namespace core\output;
29
 
27
 
30
/**
28
/**
31
 * URL rewriter interface
29
 * URL rewriter interface
32
 *
30
 *
33
 * @package    core
31
 * @package    core
34
 * @author     Brendan Heywood <brendan@catalyst-au.net>
32
 * @author     Brendan Heywood <brendan@catalyst-au.net>
35
 * @copyright  Catalyst IT
33
 * @copyright  Catalyst IT
36
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
34
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
37
 */
-
 
38
interface url_rewriter {
35
 */
39
 
36
interface url_rewriter {
40
    /**
37
    /**
41
     * Rewrite moodle_urls into another form.
38
     * Rewrite moodle_urls into another form.
42
     *
39
     *
Línea 50... Línea 47...
50
     * avoiding redirects and improving performance.
47
     * avoiding redirects and improving performance.
51
     *
48
     *
52
     * @return void
49
     * @return void
53
     */
50
     */
54
    public static function html_head_setup();
51
    public static function html_head_setup();
55
 
-
 
56
 
-
 
57
}
52
}
58
 
-