2009-05-26 05:18:52 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
|
|
//
|
|
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
/**
|
2010-07-25 13:35:05 +00:00
|
|
|
* @package core
|
|
|
|
* @subpackage lib
|
|
|
|
* @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
2009-05-26 05:18:52 +00:00
|
|
|
*/
|
|
|
|
|
2011-02-16 11:31:23 +00:00
|
|
|
/**#@+
|
|
|
|
* These constants relate to the table's handling of URL parameters.
|
|
|
|
*/
|
2005-05-28 21:24:46 +00:00
|
|
|
define('TABLE_VAR_SORT', 1);
|
|
|
|
define('TABLE_VAR_HIDE', 2);
|
|
|
|
define('TABLE_VAR_SHOW', 3);
|
|
|
|
define('TABLE_VAR_IFIRST', 4);
|
|
|
|
define('TABLE_VAR_ILAST', 5);
|
|
|
|
define('TABLE_VAR_PAGE', 6);
|
2015-03-18 16:33:41 +00:00
|
|
|
define('TABLE_VAR_RESET', 7);
|
2019-04-04 16:08:26 +01:00
|
|
|
define('TABLE_VAR_DIR', 8);
|
2011-02-16 11:31:23 +00:00
|
|
|
/**#@-*/
|
2005-05-28 21:24:46 +00:00
|
|
|
|
2011-02-16 11:31:23 +00:00
|
|
|
/**#@+
|
|
|
|
* Constants that indicate whether the paging bar for the table
|
|
|
|
* appears above or below the table.
|
|
|
|
*/
|
|
|
|
define('TABLE_P_TOP', 1);
|
|
|
|
define('TABLE_P_BOTTOM', 2);
|
|
|
|
/**#@-*/
|
2008-06-06 12:03:09 +00:00
|
|
|
|
2021-02-15 11:36:59 +01:00
|
|
|
/**
|
|
|
|
* Constant that defines the 'Show all' page size.
|
|
|
|
*/
|
|
|
|
define('TABLE_SHOW_ALL_PAGE_SIZE', 5000);
|