Proyectos de Subversion Moodle

Rev

Rev 11 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
 
3
// This file is part of Moodle - http://moodle.org/
4
//
5
// 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
7
// the Free Software Foundation, either version 3 of the License, or
8
// (at your option) any later version.
9
//
10
// Moodle is distributed in the hope that it will be useful,
11
// but WITHOUT ANY WARRANTY; without even the implied warranty of
12
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
// GNU General Public License for more details.
14
//
15
// You should have received a copy of the GNU General Public License
16
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
17
 
18
/**
19
 * @package    core
20
 * @subpackage lib
21
 * @copyright  1999 onwards Martin Dougiamas  {@link http://moodle.com}
22
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23
 */
24
 
25
/**#@+
26
 * These constants relate to the table's handling of URL parameters.
27
 */
28
define('TABLE_VAR_SORT',   1);
29
define('TABLE_VAR_HIDE',   2);
30
define('TABLE_VAR_SHOW',   3);
31
define('TABLE_VAR_IFIRST', 4);
32
define('TABLE_VAR_ILAST',  5);
33
define('TABLE_VAR_PAGE',   6);
34
define('TABLE_VAR_RESET',  7);
35
define('TABLE_VAR_DIR',    8);
36
/**#@-*/
37
 
38
/**#@+
39
 * Constants that indicate whether the paging bar for the table
40
 * appears above or below the table.
41
 */
42
define('TABLE_P_TOP',    1);
43
define('TABLE_P_BOTTOM', 2);
44
/**#@-*/
45
 
46
/**
47
 * Constant that defines the 'Show all' page size.
48
 */
49
define('TABLE_SHOW_ALL_PAGE_SIZE', 5000);