comparison modules/taxonomy/taxonomy.admin.inc @ 11:589fb7c02327 6.5

Drupal 6.5
author Franck Deroche <webmaster@defr.org>
date Tue, 23 Dec 2008 14:32:19 +0100
parents c1f4ac30525a
children
comparison
equal deleted inserted replaced
10:6f15c9d74937 11:589fb7c02327
1 <?php 1 <?php
2 // $Id: taxonomy.admin.inc,v 1.22.2.1 2008/02/07 20:46:57 goba Exp $ 2 // $Id: taxonomy.admin.inc,v 1.22.2.2 2008/10/08 14:23:59 goba Exp $
3 3
4 /** 4 /**
5 * @file 5 * @file
6 * Administrative page callbacks for the taxonomy module. 6 * Administrative page callbacks for the taxonomy module.
7 */ 7 */
257 '#tree' => TRUE, 257 '#tree' => TRUE,
258 '#parent_fields' => FALSE, 258 '#parent_fields' => FALSE,
259 ); 259 );
260 260
261 $page = isset($_GET['page']) ? $_GET['page'] : 0; 261 $page = isset($_GET['page']) ? $_GET['page'] : 0;
262 $page_increment = 10; // Number of terms per page. 262 $page_increment = variable_get('taxonomy_terms_per_page_admin', 100); // Number of terms per page.
263 $page_entries = 0; // Elements shown on this page. 263 $page_entries = 0; // Elements shown on this page.
264 $before_entries = 0; // Elements at the root level before this page. 264 $before_entries = 0; // Elements at the root level before this page.
265 $after_entries = 0; // Elements at the root level after this page. 265 $after_entries = 0; // Elements at the root level after this page.
266 $root_entries = 0; // Elements at the root level on this page. 266 $root_entries = 0; // Elements at the root level on this page.
267 267