. /** * @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 */ /**#@+ * These constants relate to the table's handling of URL parameters. */ 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); define('TABLE_VAR_RESET', 7); define('TABLE_VAR_DIR', 8); /**#@-*/ /**#@+ * 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); /**#@-*/ /** * Constant that defines the 'Show all' page size. */ define('TABLE_SHOW_ALL_PAGE_SIZE', 5000);