Drupal PHP Cross Reference Content Management Systems

Source: /modules/simpletest/tests/upgrade/drupal-6.filled.database.php - 20384 lines - 576566 bytes - Text - Print

   1  <?php
   2  
   3  /**
   4   * @file
   5   * Filled installation of Drupal 6.17, for test purposes.
   6   *
   7   * This file was generated by the dump-database-d6.sh tool, from an
   8   * installation of Drupal 6, filled with data using the generate-d6-content.sh
   9   * tool. It has the following modules installed:
  10   *  - block
  11   *  - color
  12   *  - comment
  13   *  - dblog
  14   *  - filter
  15   *  - help
  16   *  - menu
  17   *  - node
  18   *  - path
  19   *  - poll
  20   *  - system
  21   *  - taxonomy
  22   *  - update
  23   *  - user
  24   */
  25  
  26  db_create_table('access', array(
  27    'fields' => array(
  28      'aid' => array(
  29        'type' => 'serial',
  30        'not null' => TRUE,
  31      ),
  32      'mask' => array(
  33        'type' => 'varchar',
  34        'length' => 255,
  35        'not null' => TRUE,
  36        'default' => '',
  37      ),
  38      'type' => array(
  39        'type' => 'varchar',
  40        'length' => 255,
  41        'not null' => TRUE,
  42        'default' => '',
  43      ),
  44      'status' => array(
  45        'type' => 'int',
  46        'not null' => TRUE,
  47        'default' => 0,
  48        'size' => 'tiny',
  49      ),
  50    ),
  51    'primary key' => array(
  52      'aid',
  53    ),
  54    'module' => 'user',
  55    'name' => 'access',
  56  ));
  57  
  58  db_create_table('actions', array(
  59    'fields' => array(
  60      'aid' => array(
  61        'type' => 'varchar',
  62        'length' => 255,
  63        'not null' => TRUE,
  64        'default' => '0',
  65      ),
  66      'type' => array(
  67        'type' => 'varchar',
  68        'length' => 32,
  69        'not null' => TRUE,
  70        'default' => '',
  71      ),
  72      'callback' => array(
  73        'type' => 'varchar',
  74        'length' => 255,
  75        'not null' => TRUE,
  76        'default' => '',
  77      ),
  78      'parameters' => array(
  79        'type' => 'text',
  80        'not null' => TRUE,
  81        'size' => 'big',
  82      ),
  83      'description' => array(
  84        'type' => 'varchar',
  85        'length' => 255,
  86        'not null' => TRUE,
  87        'default' => '0',
  88      ),
  89    ),
  90    'primary key' => array(
  91      'aid',
  92    ),
  93    'module' => 'system',
  94    'name' => 'actions',
  95  ));
  96  db_insert('actions')->fields(array(
  97    'aid',
  98    'type',
  99    'callback',
 100    'parameters',
 101    'description',
 102  ))
 103  ->values(array(
 104    'aid' => 'comment_publish_action',
 105    'type' => 'comment',
 106    'callback' => 'comment_publish_action',
 107    'parameters' => '',
 108    'description' => 'Publish comment',
 109  ))
 110  ->values(array(
 111    'aid' => 'comment_unpublish_action',
 112    'type' => 'comment',
 113    'callback' => 'comment_unpublish_action',
 114    'parameters' => '',
 115    'description' => 'Unpublish comment',
 116  ))
 117  ->values(array(
 118    'aid' => 'node_make_sticky_action',
 119    'type' => 'node',
 120    'callback' => 'node_make_sticky_action',
 121    'parameters' => '',
 122    'description' => 'Make post sticky',
 123  ))
 124  ->values(array(
 125    'aid' => 'node_make_unsticky_action',
 126    'type' => 'node',
 127    'callback' => 'node_make_unsticky_action',
 128    'parameters' => '',
 129    'description' => 'Make post unsticky',
 130  ))
 131  ->values(array(
 132    'aid' => 'node_promote_action',
 133    'type' => 'node',
 134    'callback' => 'node_promote_action',
 135    'parameters' => '',
 136    'description' => 'Promote post to front page',
 137  ))
 138  ->values(array(
 139    'aid' => 'node_publish_action',
 140    'type' => 'node',
 141    'callback' => 'node_publish_action',
 142    'parameters' => '',
 143    'description' => 'Publish post',
 144  ))
 145  ->values(array(
 146    'aid' => 'node_save_action',
 147    'type' => 'node',
 148    'callback' => 'node_save_action',
 149    'parameters' => '',
 150    'description' => 'Save post',
 151  ))
 152  ->values(array(
 153    'aid' => 'node_unpromote_action',
 154    'type' => 'node',
 155    'callback' => 'node_unpromote_action',
 156    'parameters' => '',
 157    'description' => 'Remove post from front page',
 158  ))
 159  ->values(array(
 160    'aid' => 'node_unpublish_action',
 161    'type' => 'node',
 162    'callback' => 'node_unpublish_action',
 163    'parameters' => '',
 164    'description' => 'Unpublish post',
 165  ))
 166  ->values(array(
 167    'aid' => 'user_block_ip_action',
 168    'type' => 'user',
 169    'callback' => 'user_block_ip_action',
 170    'parameters' => '',
 171    'description' => 'Ban IP address of current user',
 172  ))
 173  ->values(array(
 174    'aid' => 'user_block_user_action',
 175    'type' => 'user',
 176    'callback' => 'user_block_user_action',
 177    'parameters' => '',
 178    'description' => 'Block current user',
 179  ))
 180  ->execute();
 181  
 182  db_create_table('actions_aid', array(
 183    'fields' => array(
 184      'aid' => array(
 185        'type' => 'serial',
 186        'unsigned' => TRUE,
 187        'not null' => TRUE,
 188      ),
 189    ),
 190    'primary key' => array(
 191      'aid',
 192    ),
 193    'module' => 'system',
 194    'name' => 'actions_aid',
 195  ));
 196  
 197  db_create_table('authmap', array(
 198    'fields' => array(
 199      'aid' => array(
 200        'type' => 'serial',
 201        'unsigned' => TRUE,
 202        'not null' => TRUE,
 203      ),
 204      'uid' => array(
 205        'type' => 'int',
 206        'not null' => TRUE,
 207        'default' => 0,
 208      ),
 209      'authname' => array(
 210        'type' => 'varchar',
 211        'length' => 128,
 212        'not null' => TRUE,
 213        'default' => '',
 214      ),
 215      'module' => array(
 216        'type' => 'varchar',
 217        'length' => 128,
 218        'not null' => TRUE,
 219        'default' => '',
 220      ),
 221    ),
 222    'unique keys' => array(
 223      'authname' => array(
 224        'authname',
 225      ),
 226    ),
 227    'primary key' => array(
 228      'aid',
 229    ),
 230    'module' => 'user',
 231    'name' => 'authmap',
 232  ));
 233  
 234  db_create_table('batch', array(
 235    'fields' => array(
 236      'bid' => array(
 237        'type' => 'serial',
 238        'unsigned' => TRUE,
 239        'not null' => TRUE,
 240      ),
 241      'token' => array(
 242        'type' => 'varchar',
 243        'length' => 64,
 244        'not null' => TRUE,
 245      ),
 246      'timestamp' => array(
 247        'type' => 'int',
 248        'not null' => TRUE,
 249      ),
 250      'batch' => array(
 251        'type' => 'text',
 252        'not null' => FALSE,
 253        'size' => 'big',
 254      ),
 255    ),
 256    'primary key' => array(
 257      'bid',
 258    ),
 259    'indexes' => array(
 260      'token' => array(
 261        'token',
 262      ),
 263    ),
 264    'module' => 'system',
 265    'name' => 'batch',
 266  ));
 267  
 268  db_create_table('blocks', array(
 269    'fields' => array(
 270      'bid' => array(
 271        'type' => 'serial',
 272        'not null' => TRUE,
 273      ),
 274      'module' => array(
 275        'type' => 'varchar',
 276        'length' => 64,
 277        'not null' => TRUE,
 278        'default' => '',
 279      ),
 280      'delta' => array(
 281        'type' => 'varchar',
 282        'length' => 32,
 283        'not null' => TRUE,
 284        'default' => '0',
 285      ),
 286      'theme' => array(
 287        'type' => 'varchar',
 288        'length' => 64,
 289        'not null' => TRUE,
 290        'default' => '',
 291      ),
 292      'status' => array(
 293        'type' => 'int',
 294        'not null' => TRUE,
 295        'default' => 0,
 296        'size' => 'tiny',
 297      ),
 298      'weight' => array(
 299        'type' => 'int',
 300        'not null' => TRUE,
 301        'default' => 0,
 302        'size' => 'tiny',
 303      ),
 304      'region' => array(
 305        'type' => 'varchar',
 306        'length' => 64,
 307        'not null' => TRUE,
 308        'default' => '',
 309      ),
 310      'custom' => array(
 311        'type' => 'int',
 312        'not null' => TRUE,
 313        'default' => 0,
 314        'size' => 'tiny',
 315      ),
 316      'throttle' => array(
 317        'type' => 'int',
 318        'not null' => TRUE,
 319        'default' => 0,
 320        'size' => 'tiny',
 321      ),
 322      'visibility' => array(
 323        'type' => 'int',
 324        'not null' => TRUE,
 325        'default' => 0,
 326        'size' => 'tiny',
 327      ),
 328      'pages' => array(
 329        'type' => 'text',
 330        'not null' => TRUE,
 331      ),
 332      'title' => array(
 333        'type' => 'varchar',
 334        'length' => 64,
 335        'not null' => TRUE,
 336        'default' => '',
 337      ),
 338      'cache' => array(
 339        'type' => 'int',
 340        'not null' => TRUE,
 341        'default' => 1,
 342        'size' => 'tiny',
 343      ),
 344    ),
 345    'primary key' => array(
 346      'bid',
 347    ),
 348    'unique keys' => array(
 349      'tmd' => array(
 350        'theme',
 351        'module',
 352        'delta',
 353      ),
 354    ),
 355    'indexes' => array(
 356      'list' => array(
 357        'theme',
 358        'status',
 359        'region',
 360        'weight',
 361        'module',
 362      ),
 363    ),
 364    'module' => 'block',
 365    'name' => 'blocks',
 366  ));
 367  db_insert('blocks')->fields(array(
 368    'bid',
 369    'module',
 370    'delta',
 371    'theme',
 372    'status',
 373    'weight',
 374    'region',
 375    'custom',
 376    'throttle',
 377    'visibility',
 378    'pages',
 379    'title',
 380    'cache',
 381  ))
 382  ->values(array(
 383    'bid' => '1',
 384    'module' => 'user',
 385    'delta' => '0',
 386    'theme' => 'garland',
 387    'status' => '1',
 388    'weight' => '0',
 389    'region' => 'left',
 390    'custom' => '0',
 391    'throttle' => '0',
 392    'visibility' => '0',
 393    'pages' => '',
 394    'title' => '',
 395    'cache' => '-1',
 396  ))
 397  ->values(array(
 398    'bid' => '2',
 399    'module' => 'user',
 400    'delta' => '1',
 401    'theme' => 'garland',
 402    'status' => '1',
 403    'weight' => '0',
 404    'region' => 'left',
 405    'custom' => '0',
 406    'throttle' => '0',
 407    'visibility' => '0',
 408    'pages' => '',
 409    'title' => '',
 410    'cache' => '-1',
 411  ))
 412  ->values(array(
 413    'bid' => '3',
 414    'module' => 'system',
 415    'delta' => '0',
 416    'theme' => 'garland',
 417    'status' => '1',
 418    'weight' => '10',
 419    'region' => 'footer',
 420    'custom' => '0',
 421    'throttle' => '0',
 422    'visibility' => '0',
 423    'pages' => '',
 424    'title' => '',
 425    'cache' => '-1',
 426  ))
 427  ->execute();
 428  
 429  db_create_table('blocks_roles', array(
 430    'fields' => array(
 431      'module' => array(
 432        'type' => 'varchar',
 433        'length' => 64,
 434        'not null' => TRUE,
 435      ),
 436      'delta' => array(
 437        'type' => 'varchar',
 438        'length' => 32,
 439        'not null' => TRUE,
 440      ),
 441      'rid' => array(
 442        'type' => 'int',
 443        'unsigned' => TRUE,
 444        'not null' => TRUE,
 445      ),
 446    ),
 447    'primary key' => array(
 448      'module',
 449      'delta',
 450      'rid',
 451    ),
 452    'indexes' => array(
 453      'rid' => array(
 454        'rid',
 455      ),
 456    ),
 457    'module' => 'block',
 458    'name' => 'blocks_roles',
 459  ));
 460  
 461  db_create_table('boxes', array(
 462    'fields' => array(
 463      'bid' => array(
 464        'type' => 'serial',
 465        'unsigned' => TRUE,
 466        'not null' => TRUE,
 467      ),
 468      'body' => array(
 469        'type' => 'text',
 470        'not null' => FALSE,
 471        'size' => 'big',
 472      ),
 473      'info' => array(
 474        'type' => 'varchar',
 475        'length' => 128,
 476        'not null' => TRUE,
 477        'default' => '',
 478      ),
 479      'format' => array(
 480        'type' => 'int',
 481        'size' => 'small',
 482        'not null' => TRUE,
 483        'default' => 0,
 484      ),
 485    ),
 486    'unique keys' => array(
 487      'info' => array(
 488        'info',
 489      ),
 490    ),
 491    'primary key' => array(
 492      'bid',
 493    ),
 494    'module' => 'block',
 495    'name' => 'boxes',
 496  ));
 497  
 498  db_create_table('cache', array(
 499    'fields' => array(
 500      'cid' => array(
 501        'type' => 'varchar',
 502        'length' => 255,
 503        'not null' => TRUE,
 504        'default' => '',
 505      ),
 506      'data' => array(
 507        'type' => 'blob',
 508        'not null' => FALSE,
 509        'size' => 'big',
 510      ),
 511      'expire' => array(
 512        'type' => 'int',
 513        'not null' => TRUE,
 514        'default' => 0,
 515      ),
 516      'created' => array(
 517        'type' => 'int',
 518        'not null' => TRUE,
 519        'default' => 0,
 520      ),
 521      'headers' => array(
 522        'type' => 'text',
 523        'not null' => FALSE,
 524      ),
 525      'serialized' => array(
 526        'type' => 'int',
 527        'size' => 'small',
 528        'not null' => TRUE,
 529        'default' => 0,
 530      ),
 531    ),
 532    'indexes' => array(
 533      'expire' => array(
 534        'expire',
 535      ),
 536    ),
 537    'primary key' => array(
 538      'cid',
 539    ),
 540    'module' => 'system',
 541    'name' => 'cache',
 542  ));
 543  
 544  db_create_table('cache_block', array(
 545    'fields' => array(
 546      'cid' => array(
 547        'type' => 'varchar',
 548        'length' => 255,
 549        'not null' => TRUE,
 550        'default' => '',
 551      ),
 552      'data' => array(
 553        'type' => 'blob',
 554        'not null' => FALSE,
 555        'size' => 'big',
 556      ),
 557      'expire' => array(
 558        'type' => 'int',
 559        'not null' => TRUE,
 560        'default' => 0,
 561      ),
 562      'created' => array(
 563        'type' => 'int',
 564        'not null' => TRUE,
 565        'default' => 0,
 566      ),
 567      'headers' => array(
 568        'type' => 'text',
 569        'not null' => FALSE,
 570      ),
 571      'serialized' => array(
 572        'type' => 'int',
 573        'size' => 'small',
 574        'not null' => TRUE,
 575        'default' => 0,
 576      ),
 577    ),
 578    'indexes' => array(
 579      'expire' => array(
 580        'expire',
 581      ),
 582    ),
 583    'primary key' => array(
 584      'cid',
 585    ),
 586    'module' => 'block',
 587    'name' => 'cache_block',
 588  ));
 589  
 590  db_create_table('cache_filter', array(
 591    'fields' => array(
 592      'cid' => array(
 593        'type' => 'varchar',
 594        'length' => 255,
 595        'not null' => TRUE,
 596        'default' => '',
 597      ),
 598      'data' => array(
 599        'type' => 'blob',
 600        'not null' => FALSE,
 601        'size' => 'big',
 602      ),
 603      'expire' => array(
 604        'type' => 'int',
 605        'not null' => TRUE,
 606        'default' => 0,
 607      ),
 608      'created' => array(
 609        'type' => 'int',
 610        'not null' => TRUE,
 611        'default' => 0,
 612      ),
 613      'headers' => array(
 614        'type' => 'text',
 615        'not null' => FALSE,
 616      ),
 617      'serialized' => array(
 618        'type' => 'int',
 619        'size' => 'small',
 620        'not null' => TRUE,
 621        'default' => 0,
 622      ),
 623    ),
 624    'indexes' => array(
 625      'expire' => array(
 626        'expire',
 627      ),
 628    ),
 629    'primary key' => array(
 630      'cid',
 631    ),
 632    'module' => 'filter',
 633    'name' => 'cache_filter',
 634  ));
 635  
 636  db_create_table('cache_form', array(
 637    'fields' => array(
 638      'cid' => array(
 639        'type' => 'varchar',
 640        'length' => 255,
 641        'not null' => TRUE,
 642        'default' => '',
 643      ),
 644      'data' => array(
 645        'type' => 'blob',
 646        'not null' => FALSE,
 647        'size' => 'big',
 648      ),
 649      'expire' => array(
 650        'type' => 'int',
 651        'not null' => TRUE,
 652        'default' => 0,
 653      ),
 654      'created' => array(
 655        'type' => 'int',
 656        'not null' => TRUE,
 657        'default' => 0,
 658      ),
 659      'headers' => array(
 660        'type' => 'text',
 661        'not null' => FALSE,
 662      ),
 663      'serialized' => array(
 664        'type' => 'int',
 665        'size' => 'small',
 666        'not null' => TRUE,
 667        'default' => 0,
 668      ),
 669    ),
 670    'indexes' => array(
 671      'expire' => array(
 672        'expire',
 673      ),
 674    ),
 675    'primary key' => array(
 676      'cid',
 677    ),
 678    'module' => 'system',
 679    'name' => 'cache_form',
 680  ));
 681  
 682  db_create_table('cache_menu', array(
 683    'fields' => array(
 684      'cid' => array(
 685        'type' => 'varchar',
 686        'length' => 255,
 687        'not null' => TRUE,
 688        'default' => '',
 689      ),
 690      'data' => array(
 691        'type' => 'blob',
 692        'not null' => FALSE,
 693        'size' => 'big',
 694      ),
 695      'expire' => array(
 696        'type' => 'int',
 697        'not null' => TRUE,
 698        'default' => 0,
 699      ),
 700      'created' => array(
 701        'type' => 'int',
 702        'not null' => TRUE,
 703        'default' => 0,
 704      ),
 705      'headers' => array(
 706        'type' => 'text',
 707        'not null' => FALSE,
 708      ),
 709      'serialized' => array(
 710        'type' => 'int',
 711        'size' => 'small',
 712        'not null' => TRUE,
 713        'default' => 0,
 714      ),
 715    ),
 716    'indexes' => array(
 717      'expire' => array(
 718        'expire',
 719      ),
 720    ),
 721    'primary key' => array(
 722      'cid',
 723    ),
 724    'module' => 'system',
 725    'name' => 'cache_menu',
 726  ));
 727  
 728  db_create_table('cache_page', array(
 729    'fields' => array(
 730      'cid' => array(
 731        'type' => 'varchar',
 732        'length' => 255,
 733        'not null' => TRUE,
 734        'default' => '',
 735      ),
 736      'data' => array(
 737        'type' => 'blob',
 738        'not null' => FALSE,
 739        'size' => 'big',
 740      ),
 741      'expire' => array(
 742        'type' => 'int',
 743        'not null' => TRUE,
 744        'default' => 0,
 745      ),
 746      'created' => array(
 747        'type' => 'int',
 748        'not null' => TRUE,
 749        'default' => 0,
 750      ),
 751      'headers' => array(
 752        'type' => 'text',
 753        'not null' => FALSE,
 754      ),
 755      'serialized' => array(
 756        'type' => 'int',
 757        'size' => 'small',
 758        'not null' => TRUE,
 759        'default' => 0,
 760      ),
 761    ),
 762    'indexes' => array(
 763      'expire' => array(
 764        'expire',
 765      ),
 766    ),
 767    'primary key' => array(
 768      'cid',
 769    ),
 770    'module' => 'system',
 771    'name' => 'cache_page',
 772  ));
 773  
 774  db_create_table('cache_update', array(
 775    'fields' => array(
 776      'cid' => array(
 777        'type' => 'varchar',
 778        'length' => 255,
 779        'not null' => TRUE,
 780        'default' => '',
 781      ),
 782      'data' => array(
 783        'type' => 'blob',
 784        'not null' => FALSE,
 785        'size' => 'big',
 786      ),
 787      'expire' => array(
 788        'type' => 'int',
 789        'not null' => TRUE,
 790        'default' => 0,
 791      ),
 792      'created' => array(
 793        'type' => 'int',
 794        'not null' => TRUE,
 795        'default' => 0,
 796      ),
 797      'headers' => array(
 798        'type' => 'text',
 799        'not null' => FALSE,
 800      ),
 801      'serialized' => array(
 802        'type' => 'int',
 803        'size' => 'small',
 804        'not null' => TRUE,
 805        'default' => 0,
 806      ),
 807    ),
 808    'indexes' => array(
 809      'expire' => array(
 810        'expire',
 811      ),
 812    ),
 813    'primary key' => array(
 814      'cid',
 815    ),
 816    'module' => 'update',
 817    'name' => 'cache_update',
 818  ));
 819  
 820  db_create_table('comments', array(
 821    'fields' => array(
 822      'cid' => array(
 823        'type' => 'serial',
 824        'not null' => TRUE,
 825      ),
 826      'pid' => array(
 827        'type' => 'int',
 828        'not null' => TRUE,
 829        'default' => 0,
 830      ),
 831      'nid' => array(
 832        'type' => 'int',
 833        'not null' => TRUE,
 834        'default' => 0,
 835      ),
 836      'uid' => array(
 837        'type' => 'int',
 838        'not null' => TRUE,
 839        'default' => 0,
 840      ),
 841      'subject' => array(
 842        'type' => 'varchar',
 843        'length' => 64,
 844        'not null' => TRUE,
 845        'default' => '',
 846      ),
 847      'comment' => array(
 848        'type' => 'text',
 849        'not null' => TRUE,
 850        'size' => 'big',
 851      ),
 852      'hostname' => array(
 853        'type' => 'varchar',
 854        'length' => 128,
 855        'not null' => TRUE,
 856        'default' => '',
 857      ),
 858      'timestamp' => array(
 859        'type' => 'int',
 860        'not null' => TRUE,
 861        'default' => 0,
 862      ),
 863      'status' => array(
 864        'type' => 'int',
 865        'unsigned' => TRUE,
 866        'not null' => TRUE,
 867        'default' => 0,
 868        'size' => 'tiny',
 869      ),
 870      'format' => array(
 871        'type' => 'int',
 872        'size' => 'small',
 873        'not null' => TRUE,
 874        'default' => 0,
 875      ),
 876      'thread' => array(
 877        'type' => 'varchar',
 878        'length' => 255,
 879        'not null' => TRUE,
 880      ),
 881      'name' => array(
 882        'type' => 'varchar',
 883        'length' => 60,
 884        'not null' => FALSE,
 885      ),
 886      'mail' => array(
 887        'type' => 'varchar',
 888        'length' => 64,
 889        'not null' => FALSE,
 890      ),
 891      'homepage' => array(
 892        'type' => 'varchar',
 893        'length' => 255,
 894        'not null' => FALSE,
 895      ),
 896    ),
 897    'indexes' => array(
 898      'pid' => array(
 899        'pid',
 900      ),
 901      'nid' => array(
 902        'nid',
 903      ),
 904      'status' => array(
 905        'status',
 906      ),
 907    ),
 908    'primary key' => array(
 909      'cid',
 910    ),
 911    'module' => 'comment',
 912    'name' => 'comments',
 913  ));
 914  
 915  db_create_table('files', array(
 916    'fields' => array(
 917      'fid' => array(
 918        'type' => 'serial',
 919        'unsigned' => TRUE,
 920        'not null' => TRUE,
 921      ),
 922      'uid' => array(
 923        'type' => 'int',
 924        'unsigned' => TRUE,
 925        'not null' => TRUE,
 926        'default' => 0,
 927      ),
 928      'filename' => array(
 929        'type' => 'varchar',
 930        'length' => 255,
 931        'not null' => TRUE,
 932        'default' => '',
 933      ),
 934      'filepath' => array(
 935        'type' => 'varchar',
 936        'length' => 255,
 937        'not null' => TRUE,
 938        'default' => '',
 939      ),
 940      'filemime' => array(
 941        'type' => 'varchar',
 942        'length' => 255,
 943        'not null' => TRUE,
 944        'default' => '',
 945      ),
 946      'filesize' => array(
 947        'type' => 'int',
 948        'unsigned' => TRUE,
 949        'not null' => TRUE,
 950        'default' => 0,
 951      ),
 952      'status' => array(
 953        'type' => 'int',
 954        'not null' => TRUE,
 955        'default' => 0,
 956      ),
 957      'timestamp' => array(
 958        'type' => 'int',
 959        'unsigned' => TRUE,
 960        'not null' => TRUE,
 961        'default' => 0,
 962      ),
 963    ),
 964    'indexes' => array(
 965      'uid' => array(
 966        'uid',
 967      ),
 968      'status' => array(
 969        'status',
 970      ),
 971      'timestamp' => array(
 972        'timestamp',
 973      ),
 974    ),
 975    'primary key' => array(
 976      'fid',
 977    ),
 978    'module' => 'system',
 979    'name' => 'files',
 980  ));
 981  
 982  db_create_table('filter_formats', array(
 983    'fields' => array(
 984      'format' => array(
 985        'type' => 'serial',
 986        'not null' => TRUE,
 987      ),
 988      'name' => array(
 989        'type' => 'varchar',
 990        'length' => 255,
 991        'not null' => TRUE,
 992        'default' => '',
 993      ),
 994      'roles' => array(
 995        'type' => 'varchar',
 996        'length' => 255,
 997        'not null' => TRUE,
 998        'default' => '',
 999      ),
1000      'cache' => array(
1001        'type' => 'int',
1002        'not null' => TRUE,
1003        'default' => 0,
1004        'size' => 'tiny',
1005      ),
1006    ),
1007    'primary key' => array(
1008      'format',
1009    ),
1010    'unique keys' => array(
1011      'name' => array(
1012        'name',
1013      ),
1014    ),
1015    'module' => 'filter',
1016    'name' => 'filter_formats',
1017  ));
1018  db_insert('filter_formats')->fields(array(
1019    'format',
1020    'name',
1021    'roles',
1022    'cache',
1023  ))
1024  ->values(array(
1025    'format' => '1',
1026    'name' => 'Filtered HTML',
1027    'roles' => ',1,2,',
1028    'cache' => '1',
1029  ))
1030  ->values(array(
1031    'format' => '2',
1032    'name' => 'Full HTML',
1033    'roles' => '',
1034    'cache' => '1',
1035  ))
1036  ->values(array(
1037    'format' => '3',
1038    'name' => 'Escape HTML Filter',
1039    'roles' => '',
1040    'cache' => '1',
1041  ))
1042  ->execute();
1043  
1044  db_create_table('filters', array(
1045    'fields' => array(
1046      'fid' => array(
1047        'type' => 'serial',
1048        'not null' => TRUE,
1049      ),
1050      'format' => array(
1051        'type' => 'int',
1052        'not null' => TRUE,
1053        'default' => 0,
1054      ),
1055      'module' => array(
1056        'type' => 'varchar',
1057        'length' => 64,
1058        'not null' => TRUE,
1059        'default' => '',
1060      ),
1061      'delta' => array(
1062        'type' => 'int',
1063        'not null' => TRUE,
1064        'default' => 0,
1065        'size' => 'tiny',
1066      ),
1067      'weight' => array(
1068        'type' => 'int',
1069        'not null' => TRUE,
1070        'default' => 0,
1071        'size' => 'tiny',
1072      ),
1073    ),
1074    'primary key' => array(
1075      'fid',
1076    ),
1077    'unique keys' => array(
1078      'fmd' => array(
1079        'format',
1080        'module',
1081        'delta',
1082      ),
1083    ),
1084    'indexes' => array(
1085      'list' => array(
1086        'format',
1087        'weight',
1088        'module',
1089        'delta',
1090      ),
1091    ),
1092    'module' => 'filter',
1093    'name' => 'filters',
1094  ));
1095  db_insert('filters')->fields(array(
1096    'fid',
1097    'format',
1098    'module',
1099    'delta',
1100    'weight',
1101  ))
1102  ->values(array(
1103    'fid' => '1',
1104    'format' => '1',
1105    'module' => 'filter',
1106    'delta' => '2',
1107    'weight' => '0',
1108  ))
1109  ->values(array(
1110    'fid' => '2',
1111    'format' => '1',
1112    'module' => 'filter',
1113    'delta' => '0',
1114    'weight' => '1',
1115  ))
1116  ->values(array(
1117    'fid' => '3',
1118    'format' => '1',
1119    'module' => 'filter',
1120    'delta' => '1',
1121    'weight' => '2',
1122  ))
1123  ->values(array(
1124    'fid' => '4',
1125    'format' => '1',
1126    'module' => 'filter',
1127    'delta' => '3',
1128    'weight' => '10',
1129  ))
1130  ->values(array(
1131    'fid' => '5',
1132    'format' => '2',
1133    'module' => 'filter',
1134    'delta' => '2',
1135    'weight' => '0',
1136  ))
1137  ->values(array(
1138    'fid' => '6',
1139    'format' => '2',
1140    'module' => 'filter',
1141    'delta' => '1',
1142    'weight' => '1',
1143  ))
1144  ->values(array(
1145    'fid' => '7',
1146    'format' => '2',
1147    'module' => 'filter',
1148    'delta' => '3',
1149    'weight' => '10',
1150  ))
1151  ->execute();
1152  
1153  db_create_table('flood', array(
1154    'fields' => array(
1155      'fid' => array(
1156        'type' => 'serial',
1157        'not null' => TRUE,
1158      ),
1159      'event' => array(
1160        'type' => 'varchar',
1161        'length' => 64,
1162        'not null' => TRUE,
1163        'default' => '',
1164      ),
1165      'hostname' => array(
1166        'type' => 'varchar',
1167        'length' => 128,
1168        'not null' => TRUE,
1169        'default' => '',
1170      ),
1171      'timestamp' => array(
1172        'type' => 'int',
1173        'not null' => TRUE,
1174        'default' => 0,
1175      ),
1176    ),
1177    'primary key' => array(
1178      'fid',
1179    ),
1180    'indexes' => array(
1181      'allow' => array(
1182        'event',
1183        'hostname',
1184        'timestamp',
1185      ),
1186    ),
1187    'module' => 'system',
1188    'name' => 'flood',
1189  ));
1190  
1191  db_create_table('history', array(
1192    'fields' => array(
1193      'uid' => array(
1194        'type' => 'int',
1195        'not null' => TRUE,
1196        'default' => 0,
1197      ),
1198      'nid' => array(
1199        'type' => 'int',
1200        'not null' => TRUE,
1201        'default' => 0,
1202      ),
1203      'timestamp' => array(
1204        'type' => 'int',
1205        'not null' => TRUE,
1206        'default' => 0,
1207      ),
1208    ),
1209    'primary key' => array(
1210      'uid',
1211      'nid',
1212    ),
1213    'indexes' => array(
1214      'nid' => array(
1215        'nid',
1216      ),
1217    ),
1218    'module' => 'system',
1219    'name' => 'history',
1220  ));
1221  
1222  db_create_table('menu_custom', array(
1223    'fields' => array(
1224      'menu_name' => array(
1225        'type' => 'varchar',
1226        'length' => 32,
1227        'not null' => TRUE,
1228        'default' => '',
1229      ),
1230      'title' => array(
1231        'type' => 'varchar',
1232        'length' => 255,
1233        'not null' => TRUE,
1234        'default' => '',
1235      ),
1236      'description' => array(
1237        'type' => 'text',
1238        'not null' => FALSE,
1239      ),
1240    ),
1241    'primary key' => array(
1242      'menu_name',
1243    ),
1244    'module' => 'menu',
1245    'name' => 'menu_custom',
1246  ));
1247  db_insert('menu_custom')->fields(array(
1248    'menu_name',
1249    'title',
1250    'description',
1251  ))
1252  ->values(array(
1253    'menu_name' => 'navigation',
1254    'title' => 'Navigation',
1255    'description' => 'The navigation menu is provided by Drupal and is the main interactive menu for any site. It is usually the only menu that contains personalized links for authenticated users, and is often not even visible to anonymous users.',
1256  ))
1257  ->values(array(
1258    'menu_name' => 'primary-links',
1259    'title' => 'Primary links',
1260    'description' => 'Primary links are often used at the theme layer to show the major sections of a site. A typical representation for primary links would be tabs along the top.',
1261  ))
1262  ->values(array(
1263    'menu_name' => 'secondary-links',
1264    'title' => 'Secondary links',
1265    'description' => 'Secondary links are often used for pages like legal notices, contact details, and other secondary navigation items that play a lesser role than primary links',
1266  ))
1267  ->execute();
1268  
1269  db_create_table('menu_links', array(
1270    'fields' => array(
1271      'menu_name' => array(
1272        'type' => 'varchar',
1273        'length' => 32,
1274        'not null' => TRUE,
1275        'default' => '',
1276      ),
1277      'mlid' => array(
1278        'type' => 'serial',
1279        'unsigned' => TRUE,
1280        'not null' => TRUE,
1281      ),
1282      'plid' => array(
1283        'type' => 'int',
1284        'unsigned' => TRUE,
1285        'not null' => TRUE,
1286        'default' => 0,
1287      ),
1288      'link_path' => array(
1289        'type' => 'varchar',
1290        'length' => 255,
1291        'not null' => TRUE,
1292        'default' => '',
1293      ),
1294      'router_path' => array(
1295        'type' => 'varchar',
1296        'length' => 255,
1297        'not null' => TRUE,
1298        'default' => '',
1299      ),
1300      'link_title' => array(
1301        'type' => 'varchar',
1302        'length' => 255,
1303        'not null' => TRUE,
1304        'default' => '',
1305      ),
1306      'options' => array(
1307        'type' => 'text',
1308        'not null' => FALSE,
1309      ),
1310      'module' => array(
1311        'type' => 'varchar',
1312        'length' => 255,
1313        'not null' => TRUE,
1314        'default' => 'system',
1315      ),
1316      'hidden' => array(
1317        'type' => 'int',
1318        'not null' => TRUE,
1319        'default' => 0,
1320        'size' => 'small',
1321      ),
1322      'external' => array(
1323        'type' => 'int',
1324        'not null' => TRUE,
1325        'default' => 0,
1326        'size' => 'small',
1327      ),
1328      'has_children' => array(
1329        'type' => 'int',
1330        'not null' => TRUE,
1331        'default' => 0,
1332        'size' => 'small',
1333      ),
1334      'expanded' => array(
1335        'type' => 'int',
1336        'not null' => TRUE,
1337        'default' => 0,
1338        'size' => 'small',
1339      ),
1340      'weight' => array(
1341        'type' => 'int',
1342        'not null' => TRUE,
1343        'default' => 0,
1344      ),
1345      'depth' => array(
1346        'type' => 'int',
1347        'not null' => TRUE,
1348        'default' => 0,
1349        'size' => 'small',
1350      ),
1351      'customized' => array(
1352        'type' => 'int',
1353        'not null' => TRUE,
1354        'default' => 0,
1355        'size' => 'small',
1356      ),
1357      'p1' => array(
1358        'type' => 'int',
1359        'unsigned' => TRUE,
1360        'not null' => TRUE,
1361        'default' => 0,
1362      ),
1363      'p2' => array(
1364        'type' => 'int',
1365        'unsigned' => TRUE,
1366        'not null' => TRUE,
1367        'default' => 0,
1368      ),
1369      'p3' => array(
1370        'type' => 'int',
1371        'unsigned' => TRUE,
1372        'not null' => TRUE,
1373        'default' => 0,
1374      ),
1375      'p4' => array(
1376        'type' => 'int',
1377        'unsigned' => TRUE,
1378        'not null' => TRUE,
1379        'default' => 0,
1380      ),
1381      'p5' => array(
1382        'type' => 'int',
1383        'unsigned' => TRUE,
1384        'not null' => TRUE,
1385        'default' => 0,
1386      ),
1387      'p6' => array(
1388        'type' => 'int',
1389        'unsigned' => TRUE,
1390        'not null' => TRUE,
1391        'default' => 0,
1392      ),
1393      'p7' => array(
1394        'type' => 'int',
1395        'unsigned' => TRUE,
1396        'not null' => TRUE,
1397        'default' => 0,
1398      ),
1399      'p8' => array(
1400        'type' => 'int',
1401        'unsigned' => TRUE,
1402        'not null' => TRUE,
1403        'default' => 0,
1404      ),
1405      'p9' => array(
1406        'type' => 'int',
1407        'unsigned' => TRUE,
1408        'not null' => TRUE,
1409        'default' => 0,
1410      ),
1411      'updated' => array(
1412        'type' => 'int',
1413        'not null' => TRUE,
1414        'default' => 0,
1415        'size' => 'small',
1416      ),
1417    ),
1418    'indexes' => array(
1419      'path_menu' => array(
1420        array(
1421          'link_path',
1422          128,
1423        ),
1424        'menu_name',
1425      ),
1426      'menu_plid_expand_child' => array(
1427        'menu_name',
1428        'plid',
1429        'expanded',
1430        'has_children',
1431      ),
1432      'menu_parents' => array(
1433        'menu_name',
1434        'p1',
1435        'p2',
1436        'p3',
1437        'p4',
1438        'p5',
1439        'p6',
1440        'p7',
1441        'p8',
1442        'p9',
1443      ),
1444      'router_path' => array(
1445        array(
1446          'router_path',
1447          128,
1448        ),
1449      ),
1450    ),
1451    'primary key' => array(
1452      'mlid',
1453    ),
1454    'module' => 'system',
1455    'name' => 'menu_links',
1456  ));
1457  db_insert('menu_links')->fields(array(
1458    'menu_name',
1459    'mlid',
1460    'plid',
1461    'link_path',
1462    'router_path',
1463    'link_title',
1464    'options',
1465    'module',
1466    'hidden',
1467    'external',
1468    'has_children',
1469    'expanded',
1470    'weight',
1471    'depth',
1472    'customized',
1473    'p1',
1474    'p2',
1475    'p3',
1476    'p4',
1477    'p5',
1478    'p6',
1479    'p7',
1480    'p8',
1481    'p9',
1482    'updated',
1483  ))
1484  ->values(array(
1485    'menu_name' => 'navigation',
1486    'mlid' => '1',
1487    'plid' => '0',
1488    'link_path' => 'batch',
1489    'router_path' => 'batch',
1490    'link_title' => '',
1491    'options' => 'a:0:{}',
1492    'module' => 'system',
1493    'hidden' => '-1',
1494    'external' => '0',
1495    'has_children' => '0',
1496    'expanded' => '0',
1497    'weight' => '0',
1498    'depth' => '1',
1499    'customized' => '0',
1500    'p1' => '1',
1501    'p2' => '0',
1502    'p3' => '0',
1503    'p4' => '0',
1504    'p5' => '0',
1505    'p6' => '0',
1506    'p7' => '0',
1507    'p8' => '0',
1508    'p9' => '0',
1509    'updated' => '0',
1510  ))
1511  ->values(array(
1512    'menu_name' => 'navigation',
1513    'mlid' => '2',
1514    'plid' => '0',
1515    'link_path' => 'admin',
1516    'router_path' => 'admin',
1517    'link_title' => 'Administer',
1518    'options' => 'a:0:{}',
1519    'module' => 'system',
1520    'hidden' => '0',
1521    'external' => '0',
1522    'has_children' => '1',
1523    'expanded' => '0',
1524    'weight' => '9',
1525    'depth' => '1',
1526    'customized' => '0',
1527    'p1' => '2',
1528    'p2' => '0',
1529    'p3' => '0',
1530    'p4' => '0',
1531    'p5' => '0',
1532    'p6' => '0',
1533    'p7' => '0',
1534    'p8' => '0',
1535    'p9' => '0',
1536    'updated' => '0',
1537  ))
1538  ->values(array(
1539    'menu_name' => 'navigation',
1540    'mlid' => '3',
1541    'plid' => '0',
1542    'link_path' => 'node',
1543    'router_path' => 'node',
1544    'link_title' => 'Content',
1545    'options' => 'a:0:{}',
1546    'module' => 'system',
1547    'hidden' => '-1',
1548    'external' => '0',
1549    'has_children' => '0',
1550    'expanded' => '0',
1551    'weight' => '0',
1552    'depth' => '1',
1553    'customized' => '0',
1554    'p1' => '3',
1555    'p2' => '0',
1556    'p3' => '0',
1557    'p4' => '0',
1558    'p5' => '0',
1559    'p6' => '0',
1560    'p7' => '0',
1561    'p8' => '0',
1562    'p9' => '0',
1563    'updated' => '0',
1564  ))
1565  ->values(array(
1566    'menu_name' => 'navigation',
1567    'mlid' => '4',
1568    'plid' => '0',
1569    'link_path' => 'logout',
1570    'router_path' => 'logout',
1571    'link_title' => 'Log out',
1572    'options' => 'a:0:{}',
1573    'module' => 'system',
1574    'hidden' => '0',
1575    'external' => '0',
1576    'has_children' => '0',
1577    'expanded' => '0',
1578    'weight' => '10',
1579    'depth' => '1',
1580    'customized' => '0',
1581    'p1' => '4',
1582    'p2' => '0',
1583    'p3' => '0',
1584    'p4' => '0',
1585    'p5' => '0',
1586    'p6' => '0',
1587    'p7' => '0',
1588    'p8' => '0',
1589    'p9' => '0',
1590    'updated' => '0',
1591  ))
1592  ->values(array(
1593    'menu_name' => 'navigation',
1594    'mlid' => '5',
1595    'plid' => '0',
1596    'link_path' => 'rss.xml',
1597    'router_path' => 'rss.xml',
1598    'link_title' => 'RSS feed',
1599    'options' => 'a:0:{}',
1600    'module' => 'system',
1601    'hidden' => '-1',
1602    'external' => '0',
1603    'has_children' => '0',
1604    'expanded' => '0',
1605    'weight' => '0',
1606    'depth' => '1',
1607    'customized' => '0',
1608    'p1' => '5',
1609    'p2' => '0',
1610    'p3' => '0',
1611    'p4' => '0',
1612    'p5' => '0',
1613    'p6' => '0',
1614    'p7' => '0',
1615    'p8' => '0',
1616    'p9' => '0',
1617    'updated' => '0',
1618  ))
1619  ->values(array(
1620    'menu_name' => 'navigation',
1621    'mlid' => '6',
1622    'plid' => '0',
1623    'link_path' => 'user',
1624    'router_path' => 'user',
1625    'link_title' => 'User account',
1626    'options' => 'a:0:{}',
1627    'module' => 'system',
1628    'hidden' => '-1',
1629    'external' => '0',
1630    'has_children' => '0',
1631    'expanded' => '0',
1632    'weight' => '0',
1633    'depth' => '1',
1634    'customized' => '0',
1635    'p1' => '6',
1636    'p2' => '0',
1637    'p3' => '0',
1638    'p4' => '0',
1639    'p5' => '0',
1640    'p6' => '0',
1641    'p7' => '0',
1642    'p8' => '0',
1643    'p9' => '0',
1644    'updated' => '0',
1645  ))
1646  ->values(array(
1647    'menu_name' => 'navigation',
1648    'mlid' => '7',
1649    'plid' => '0',
1650    'link_path' => 'node/%',
1651    'router_path' => 'node/%',
1652    'link_title' => '',
1653    'options' => 'a:0:{}',
1654    'module' => 'system',
1655    'hidden' => '-1',
1656    'external' => '0',
1657    'has_children' => '0',
1658    'expanded' => '0',
1659    'weight' => '0',
1660    'depth' => '1',
1661    'customized' => '0',
1662    'p1' => '7',
1663    'p2' => '0',
1664    'p3' => '0',
1665    'p4' => '0',
1666    'p5' => '0',
1667    'p6' => '0',
1668    'p7' => '0',
1669    'p8' => '0',
1670    'p9' => '0',
1671    'updated' => '0',
1672  ))
1673  ->values(array(
1674    'menu_name' => 'navigation',
1675    'mlid' => '8',
1676    'plid' => '2',
1677    'link_path' => 'admin/compact',
1678    'router_path' => 'admin/compact',
1679    'link_title' => 'Compact mode',
1680    'options' => 'a:0:{}',
1681    'module' => 'system',
1682    'hidden' => '-1',
1683    'external' => '0',
1684    'has_children' => '0',
1685    'expanded' => '0',
1686    'weight' => '0',
1687    'depth' => '2',
1688    'customized' => '0',
1689    'p1' => '2',
1690    'p2' => '8',
1691    'p3' => '0',
1692    'p4' => '0',
1693    'p5' => '0',
1694    'p6' => '0',
1695    'p7' => '0',
1696    'p8' => '0',
1697    'p9' => '0',
1698    'updated' => '0',
1699  ))
1700  ->values(array(
1701    'menu_name' => 'navigation',
1702    'mlid' => '9',
1703    'plid' => '0',
1704    'link_path' => 'filter/tips',
1705    'router_path' => 'filter/tips',
1706    'link_title' => 'Compose tips',
1707    'options' => 'a:0:{}',
1708    'module' => 'system',
1709    'hidden' => '1',
1710    'external' => '0',
1711    'has_children' => '0',
1712    'expanded' => '0',
1713    'weight' => '0',
1714    'depth' => '1',
1715    'customized' => '0',
1716    'p1' => '9',
1717    'p2' => '0',
1718    'p3' => '0',
1719    'p4' => '0',
1720    'p5' => '0',
1721    'p6' => '0',
1722    'p7' => '0',
1723    'p8' => '0',
1724    'p9' => '0',
1725    'updated' => '0',
1726  ))
1727  ->values(array(
1728    'menu_name' => 'navigation',
1729    'mlid' => '10',
1730    'plid' => '2',
1731    'link_path' => 'admin/content',
1732    'router_path' => 'admin/content',
1733    'link_title' => 'Content management',
1734    'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:27:\"Manage your site's content.\";}}",
1735    'module' => 'system',
1736    'hidden' => '0',
1737    'external' => '0',
1738    'has_children' => '1',
1739    'expanded' => '0',
1740    'weight' => '-10',
1741    'depth' => '2',
1742    'customized' => '0',
1743    'p1' => '2',
1744    'p2' => '10',
1745    'p3' => '0',
1746    'p4' => '0',
1747    'p5' => '0',
1748    'p6' => '0',
1749    'p7' => '0',
1750    'p8' => '0',
1751    'p9' => '0',
1752    'updated' => '0',
1753  ))
1754  ->values(array(
1755    'menu_name' => 'navigation',
1756    'mlid' => '11',
1757    'plid' => '0',
1758    'link_path' => 'node/add',
1759    'router_path' => 'node/add',
1760    'link_title' => 'Create content',
1761    'options' => 'a:0:{}',
1762    'module' => 'system',
1763    'hidden' => '0',
1764    'external' => '0',
1765    'has_children' => '1',
1766    'expanded' => '0',
1767    'weight' => '1',
1768    'depth' => '1',
1769    'customized' => '0',
1770    'p1' => '11',
1771    'p2' => '0',
1772    'p3' => '0',
1773    'p4' => '0',
1774    'p5' => '0',
1775    'p6' => '0',
1776    'p7' => '0',
1777    'p8' => '0',
1778    'p9' => '0',
1779    'updated' => '0',
1780  ))
1781  ->values(array(
1782    'menu_name' => 'navigation',
1783    'mlid' => '12',
1784    'plid' => '0',
1785    'link_path' => 'comment/delete',
1786    'router_path' => 'comment/delete',
1787    'link_title' => 'Delete comment',
1788    'options' => 'a:0:{}',
1789    'module' => 'system',
1790    'hidden' => '-1',
1791    'external' => '0',
1792    'has_children' => '0',
1793    'expanded' => '0',
1794    'weight' => '0',
1795    'depth' => '1',
1796    'customized' => '0',
1797    'p1' => '12',
1798    'p2' => '0',
1799    'p3' => '0',
1800    'p4' => '0',
1801    'p5' => '0',
1802    'p6' => '0',
1803    'p7' => '0',
1804    'p8' => '0',
1805    'p9' => '0',
1806    'updated' => '0',
1807  ))
1808  ->values(array(
1809    'menu_name' => 'navigation',
1810    'mlid' => '13',
1811    'plid' => '0',
1812    'link_path' => 'comment/edit',
1813    'router_path' => 'comment/edit',
1814    'link_title' => 'Edit comment',
1815    'options' => 'a:0:{}',
1816    'module' => 'system',
1817    'hidden' => '-1',
1818    'external' => '0',
1819    'has_children' => '0',
1820    'expanded' => '0',
1821    'weight' => '0',
1822    'depth' => '1',
1823    'customized' => '0',
1824    'p1' => '13',
1825    'p2' => '0',
1826    'p3' => '0',
1827    'p4' => '0',
1828    'p5' => '0',
1829    'p6' => '0',
1830    'p7' => '0',
1831    'p8' => '0',
1832    'p9' => '0',
1833    'updated' => '0',
1834  ))
1835  ->values(array(
1836    'menu_name' => 'navigation',
1837    'mlid' => '14',
1838    'plid' => '0',
1839    'link_path' => 'system/files',
1840    'router_path' => 'system/files',
1841    'link_title' => 'File download',
1842    'options' => 'a:0:{}',
1843    'module' => 'system',
1844    'hidden' => '-1',
1845    'external' => '0',
1846    'has_children' => '0',
1847    'expanded' => '0',
1848    'weight' => '0',
1849    'depth' => '1',
1850    'customized' => '0',
1851    'p1' => '14',
1852    'p2' => '0',
1853    'p3' => '0',
1854    'p4' => '0',
1855    'p5' => '0',
1856    'p6' => '0',
1857    'p7' => '0',
1858    'p8' => '0',
1859    'p9' => '0',
1860    'updated' => '0',
1861  ))
1862  ->values(array(
1863    'menu_name' => 'navigation',
1864    'mlid' => '15',
1865    'plid' => '2',
1866    'link_path' => 'admin/reports',
1867    'router_path' => 'admin/reports',
1868    'link_title' => 'Reports',
1869    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:59:"View reports from system logs and other status information.";}}',
1870    'module' => 'system',
1871    'hidden' => '0',
1872    'external' => '0',
1873    'has_children' => '1',
1874    'expanded' => '0',
1875    'weight' => '5',
1876    'depth' => '2',
1877    'customized' => '0',
1878    'p1' => '2',
1879    'p2' => '15',
1880    'p3' => '0',
1881    'p4' => '0',
1882    'p5' => '0',
1883    'p6' => '0',
1884    'p7' => '0',
1885    'p8' => '0',
1886    'p9' => '0',
1887    'updated' => '0',
1888  ))
1889  ->values(array(
1890    'menu_name' => 'navigation',
1891    'mlid' => '16',
1892    'plid' => '2',
1893    'link_path' => 'admin/build',
1894    'router_path' => 'admin/build',
1895    'link_title' => 'Site building',
1896    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:38:"Control how your site looks and feels.";}}',
1897    'module' => 'system',
1898    'hidden' => '0',
1899    'external' => '0',
1900    'has_children' => '1',
1901    'expanded' => '0',
1902    'weight' => '-10',
1903    'depth' => '2',
1904    'customized' => '0',
1905    'p1' => '2',
1906    'p2' => '16',
1907    'p3' => '0',
1908    'p4' => '0',
1909    'p5' => '0',
1910    'p6' => '0',
1911    'p7' => '0',
1912    'p8' => '0',
1913    'p9' => '0',
1914    'updated' => '0',
1915  ))
1916  ->values(array(
1917    'menu_name' => 'navigation',
1918    'mlid' => '17',
1919    'plid' => '2',
1920    'link_path' => 'admin/settings',
1921    'router_path' => 'admin/settings',
1922    'link_title' => 'Site configuration',
1923    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:40:"Adjust basic site configuration options.";}}',
1924    'module' => 'system',
1925    'hidden' => '0',
1926    'external' => '0',
1927    'has_children' => '1',
1928    'expanded' => '0',
1929    'weight' => '-5',
1930    'depth' => '2',
1931    'customized' => '0',
1932    'p1' => '2',
1933    'p2' => '17',
1934    'p3' => '0',
1935    'p4' => '0',
1936    'p5' => '0',
1937    'p6' => '0',
1938    'p7' => '0',
1939    'p8' => '0',
1940    'p9' => '0',
1941    'updated' => '0',
1942  ))
1943  ->values(array(
1944    'menu_name' => 'navigation',
1945    'mlid' => '18',
1946    'plid' => '0',
1947    'link_path' => 'user/autocomplete',
1948    'router_path' => 'user/autocomplete',
1949    'link_title' => 'User autocomplete',
1950    'options' => 'a:0:{}',
1951    'module' => 'system',
1952    'hidden' => '-1',
1953    'external' => '0',
1954    'has_children' => '0',
1955    'expanded' => '0',
1956    'weight' => '0',
1957    'depth' => '1',
1958    'customized' => '0',
1959    'p1' => '18',
1960    'p2' => '0',
1961    'p3' => '0',
1962    'p4' => '0',
1963    'p5' => '0',
1964    'p6' => '0',
1965    'p7' => '0',
1966    'p8' => '0',
1967    'p9' => '0',
1968    'updated' => '0',
1969  ))
1970  ->values(array(
1971    'menu_name' => 'navigation',
1972    'mlid' => '19',
1973    'plid' => '2',
1974    'link_path' => 'admin/user',
1975    'router_path' => 'admin/user',
1976    'link_title' => 'User management',
1977    'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:61:\"Manage your site's users, groups and access to site features.\";}}",
1978    'module' => 'system',
1979    'hidden' => '0',
1980    'external' => '0',
1981    'has_children' => '1',
1982    'expanded' => '0',
1983    'weight' => '0',
1984    'depth' => '2',
1985    'customized' => '0',
1986    'p1' => '2',
1987    'p2' => '19',
1988    'p3' => '0',
1989    'p4' => '0',
1990    'p5' => '0',
1991    'p6' => '0',
1992    'p7' => '0',
1993    'p8' => '0',
1994    'p9' => '0',
1995    'updated' => '0',
1996  ))
1997  ->values(array(
1998    'menu_name' => 'navigation',
1999    'mlid' => '20',
2000    'plid' => '0',
2001    'link_path' => 'user/%',
2002    'router_path' => 'user/%',
2003    'link_title' => 'My account',
2004    'options' => 'a:0:{}',
2005    'module' => 'system',
2006    'hidden' => '0',
2007    'external' => '0',
2008    'has_children' => '0',
2009    'expanded' => '0',
2010    'weight' => '0',
2011    'depth' => '1',
2012    'customized' => '0',
2013    'p1' => '20',
2014    'p2' => '0',
2015    'p3' => '0',
2016    'p4' => '0',
2017    'p5' => '0',
2018    'p6' => '0',
2019    'p7' => '0',
2020    'p8' => '0',
2021    'p9' => '0',
2022    'updated' => '0',
2023  ))
2024  ->values(array(
2025    'menu_name' => 'navigation',
2026    'mlid' => '21',
2027    'plid' => '19',
2028    'link_path' => 'admin/user/rules',
2029    'router_path' => 'admin/user/rules',
2030    'link_title' => 'Access rules',
2031    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:80:"List and create rules to disallow usernames, e-mail addresses, and IP addresses.";}}',
2032    'module' => 'system',
2033    'hidden' => '0',
2034    'external' => '0',
2035    'has_children' => '0',
2036    'expanded' => '0',
2037    'weight' => '0',
2038    'depth' => '3',
2039    'customized' => '0',
2040    'p1' => '2',
2041    'p2' => '19',
2042    'p3' => '21',
2043    'p4' => '0',
2044    'p5' => '0',
2045    'p6' => '0',
2046    'p7' => '0',
2047    'p8' => '0',
2048    'p9' => '0',
2049    'updated' => '0',
2050  ))
2051  ->values(array(
2052    'menu_name' => 'navigation',
2053    'mlid' => '22',
2054    'plid' => '17',
2055    'link_path' => 'admin/settings/actions',
2056    'router_path' => 'admin/settings/actions',
2057    'link_title' => 'Actions',
2058    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:41:"Manage the actions defined for your site.";}}',
2059    'module' => 'system',
2060    'hidden' => '0',
2061    'external' => '0',
2062    'has_children' => '0',
2063    'expanded' => '0',
2064    'weight' => '0',
2065    'depth' => '3',
2066    'customized' => '0',
2067    'p1' => '2',
2068    'p2' => '17',
2069    'p3' => '22',
2070    'p4' => '0',
2071    'p5' => '0',
2072    'p6' => '0',
2073    'p7' => '0',
2074    'p8' => '0',
2075    'p9' => '0',
2076    'updated' => '0',
2077  ))
2078  ->values(array(
2079    'menu_name' => 'navigation',
2080    'mlid' => '23',
2081    'plid' => '17',
2082    'link_path' => 'admin/settings/admin',
2083    'router_path' => 'admin/settings/admin',
2084    'link_title' => 'Administration theme',
2085    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:55:"Settings for how your administrative pages should look.";}}',
2086    'module' => 'system',
2087    'hidden' => '0',
2088    'external' => '0',
2089    'has_children' => '0',
2090    'expanded' => '0',
2091    'weight' => '0',
2092    'depth' => '3',
2093    'customized' => '0',
2094    'p1' => '2',
2095    'p2' => '17',
2096    'p3' => '23',
2097    'p4' => '0',
2098    'p5' => '0',
2099    'p6' => '0',
2100    'p7' => '0',
2101    'p8' => '0',
2102    'p9' => '0',
2103    'updated' => '0',
2104  ))
2105  ->values(array(
2106    'menu_name' => 'navigation',
2107    'mlid' => '24',
2108    'plid' => '16',
2109    'link_path' => 'admin/build/block',
2110    'router_path' => 'admin/build/block',
2111    'link_title' => 'Blocks',
2112    'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:79:\"Configure what block content appears in your site's sidebars and other regions.\";}}",
2113    'module' => 'system',
2114    'hidden' => '0',
2115    'external' => '0',
2116    'has_children' => '0',
2117    'expanded' => '0',
2118    'weight' => '0',
2119    'depth' => '3',
2120    'customized' => '0',
2121    'p1' => '2',
2122    'p2' => '16',
2123    'p3' => '24',
2124    'p4' => '0',
2125    'p5' => '0',
2126    'p6' => '0',
2127    'p7' => '0',
2128    'p8' => '0',
2129    'p9' => '0',
2130    'updated' => '0',
2131  ))
2132  ->values(array(
2133    'menu_name' => 'navigation',
2134    'mlid' => '25',
2135    'plid' => '17',
2136    'link_path' => 'admin/settings/clean-urls',
2137    'router_path' => 'admin/settings/clean-urls',
2138    'link_title' => 'Clean URLs',
2139    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"Enable or disable clean URLs for your site.";}}',
2140    'module' => 'system',
2141    'hidden' => '0',
2142    'external' => '0',
2143    'has_children' => '0',
2144    'expanded' => '0',
2145    'weight' => '0',
2146    'depth' => '3',
2147    'customized' => '0',
2148    'p1' => '2',
2149    'p2' => '17',
2150    'p3' => '25',
2151    'p4' => '0',
2152    'p5' => '0',
2153    'p6' => '0',
2154    'p7' => '0',
2155    'p8' => '0',
2156    'p9' => '0',
2157    'updated' => '0',
2158  ))
2159  ->values(array(
2160    'menu_name' => 'navigation',
2161    'mlid' => '26',
2162    'plid' => '10',
2163    'link_path' => 'admin/content/comment',
2164    'router_path' => 'admin/content/comment',
2165    'link_title' => 'Comments',
2166    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:61:"List and edit site comments and the comment moderation queue.";}}',
2167    'module' => 'system',
2168    'hidden' => '0',
2169    'external' => '0',
2170    'has_children' => '0',
2171    'expanded' => '0',
2172    'weight' => '0',
2173    'depth' => '3',
2174    'customized' => '0',
2175    'p1' => '2',
2176    'p2' => '10',
2177    'p3' => '26',
2178    'p4' => '0',
2179    'p5' => '0',
2180    'p6' => '0',
2181    'p7' => '0',
2182    'p8' => '0',
2183    'p9' => '0',
2184    'updated' => '0',
2185  ))
2186  ->values(array(
2187    'menu_name' => 'navigation',
2188    'mlid' => '27',
2189    'plid' => '10',
2190    'link_path' => 'admin/content/node',
2191    'router_path' => 'admin/content/node',
2192    'link_title' => 'Content',
2193    'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View, edit, and delete your site's content.\";}}",
2194    'module' => 'system',
2195    'hidden' => '0',
2196    'external' => '0',
2197    'has_children' => '0',
2198    'expanded' => '0',
2199    'weight' => '0',
2200    'depth' => '3',
2201    'customized' => '0',
2202    'p1' => '2',
2203    'p2' => '10',
2204    'p3' => '27',
2205    'p4' => '0',
2206    'p5' => '0',
2207    'p6' => '0',
2208    'p7' => '0',
2209    'p8' => '0',
2210    'p9' => '0',
2211    'updated' => '0',
2212  ))
2213  ->values(array(
2214    'menu_name' => 'navigation',
2215    'mlid' => '28',
2216    'plid' => '10',
2217    'link_path' => 'admin/content/types',
2218    'router_path' => 'admin/content/types',
2219    'link_title' => 'Content types',
2220    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:82:"Manage posts by content type, including default status, front page promotion, etc.";}}',
2221    'module' => 'system',
2222    'hidden' => '0',
2223    'external' => '0',
2224    'has_children' => '0',
2225    'expanded' => '0',
2226    'weight' => '0',
2227    'depth' => '3',
2228    'customized' => '0',
2229    'p1' => '2',
2230    'p2' => '10',
2231    'p3' => '28',
2232    'p4' => '0',
2233    'p5' => '0',
2234    'p6' => '0',
2235    'p7' => '0',
2236    'p8' => '0',
2237    'p9' => '0',
2238    'updated' => '0',
2239  ))
2240  ->values(array(
2241    'menu_name' => 'navigation',
2242    'mlid' => '29',
2243    'plid' => '17',
2244    'link_path' => 'admin/settings/date-time',
2245    'router_path' => 'admin/settings/date-time',
2246    'link_title' => 'Date and time',
2247    'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:89:\"Settings for how Drupal displays date and time, as well as the system's default timezone.\";}}",
2248    'module' => 'system',
2249    'hidden' => '0',
2250    'external' => '0',
2251    'has_children' => '0',
2252    'expanded' => '0',
2253    'weight' => '0',
2254    'depth' => '3',
2255    'customized' => '0',
2256    'p1' => '2',
2257    'p2' => '17',
2258    'p3' => '29',
2259    'p4' => '0',
2260    'p5' => '0',
2261    'p6' => '0',
2262    'p7' => '0',
2263    'p8' => '0',
2264    'p9' => '0',
2265    'updated' => '0',
2266  ))
2267  ->values(array(
2268    'menu_name' => 'navigation',
2269    'mlid' => '30',
2270    'plid' => '0',
2271    'link_path' => 'node/%/delete',
2272    'router_path' => 'node/%/delete',
2273    'link_title' => 'Delete',
2274    'options' => 'a:0:{}',
2275    'module' => 'system',
2276    'hidden' => '-1',
2277    'external' => '0',
2278    'has_children' => '0',
2279    'expanded' => '0',
2280    'weight' => '1',
2281    'depth' => '1',
2282    'customized' => '0',
2283    'p1' => '30',
2284    'p2' => '0',
2285    'p3' => '0',
2286    'p4' => '0',
2287    'p5' => '0',
2288    'p6' => '0',
2289    'p7' => '0',
2290    'p8' => '0',
2291    'p9' => '0',
2292    'updated' => '0',
2293  ))
2294  ->values(array(
2295    'menu_name' => 'navigation',
2296    'mlid' => '31',
2297    'plid' => '20',
2298    'link_path' => 'user/%/delete',
2299    'router_path' => 'user/%/delete',
2300    'link_title' => 'Delete',
2301    'options' => 'a:0:{}',
2302    'module' => 'system',
2303    'hidden' => '-1',
2304    'external' => '0',
2305    'has_children' => '0',
2306    'expanded' => '0',
2307    'weight' => '0',
2308    'depth' => '2',
2309    'customized' => '0',
2310    'p1' => '20',
2311    'p2' => '31',
2312    'p3' => '0',
2313    'p4' => '0',
2314    'p5' => '0',
2315    'p6' => '0',
2316    'p7' => '0',
2317    'p8' => '0',
2318    'p9' => '0',
2319    'updated' => '0',
2320  ))
2321  ->values(array(
2322    'menu_name' => 'navigation',
2323    'mlid' => '32',
2324    'plid' => '17',
2325    'link_path' => 'admin/settings/error-reporting',
2326    'router_path' => 'admin/settings/error-reporting',
2327    'link_title' => 'Error reporting',
2328    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:93:"Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.";}}',
2329    'module' => 'system',
2330    'hidden' => '0',
2331    'external' => '0',
2332    'has_children' => '0',
2333    'expanded' => '0',
2334    'weight' => '0',
2335    'depth' => '3',
2336    'customized' => '0',
2337    'p1' => '2',
2338    'p2' => '17',
2339    'p3' => '32',
2340    'p4' => '0',
2341    'p5' => '0',
2342    'p6' => '0',
2343    'p7' => '0',
2344    'p8' => '0',
2345    'p9' => '0',
2346    'updated' => '0',
2347  ))
2348  ->values(array(
2349    'menu_name' => 'navigation',
2350    'mlid' => '33',
2351    'plid' => '17',
2352    'link_path' => 'admin/settings/file-system',
2353    'router_path' => 'admin/settings/file-system',
2354    'link_title' => 'File system',
2355    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:68:"Tell Drupal where to store uploaded files and how they are accessed.";}}',
2356    'module' => 'system',
2357    'hidden' => '0',
2358    'external' => '0',
2359    'has_children' => '0',
2360    'expanded' => '0',
2361    'weight' => '0',
2362    'depth' => '3',
2363    'customized' => '0',
2364    'p1' => '2',
2365    'p2' => '17',
2366    'p3' => '33',
2367    'p4' => '0',
2368    'p5' => '0',
2369    'p6' => '0',
2370    'p7' => '0',
2371    'p8' => '0',
2372    'p9' => '0',
2373    'updated' => '0',
2374  ))
2375  ->values(array(
2376    'menu_name' => 'navigation',
2377    'mlid' => '34',
2378    'plid' => '17',
2379    'link_path' => 'admin/settings/image-toolkit',
2380    'router_path' => 'admin/settings/image-toolkit',
2381    'link_title' => 'Image toolkit',
2382    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:74:"Choose which image toolkit to use if you have installed optional toolkits.";}}',
2383    'module' => 'system',
2384    'hidden' => '0',
2385    'external' => '0',
2386    'has_children' => '0',
2387    'expanded' => '0',
2388    'weight' => '0',
2389    'depth' => '3',
2390    'customized' => '0',
2391    'p1' => '2',
2392    'p2' => '17',
2393    'p3' => '34',
2394    'p4' => '0',
2395    'p5' => '0',
2396    'p6' => '0',
2397    'p7' => '0',
2398    'p8' => '0',
2399    'p9' => '0',
2400    'updated' => '0',
2401  ))
2402  ->values(array(
2403    'menu_name' => 'navigation',
2404    'mlid' => '35',
2405    'plid' => '17',
2406    'link_path' => 'admin/settings/filters',
2407    'router_path' => 'admin/settings/filters',
2408    'link_title' => 'Input formats',
2409    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:127:"Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.";}}',
2410    'module' => 'system',
2411    'hidden' => '0',
2412    'external' => '0',
2413    'has_children' => '0',
2414    'expanded' => '0',
2415    'weight' => '0',
2416    'depth' => '3',
2417    'customized' => '0',
2418    'p1' => '2',
2419    'p2' => '17',
2420    'p3' => '35',
2421    'p4' => '0',
2422    'p5' => '0',
2423    'p6' => '0',
2424    'p7' => '0',
2425    'p8' => '0',
2426    'p9' => '0',
2427    'updated' => '0',
2428  ))
2429  ->values(array(
2430    'menu_name' => 'navigation',
2431    'mlid' => '36',
2432    'plid' => '17',
2433    'link_path' => 'admin/settings/logging',
2434    'router_path' => 'admin/settings/logging',
2435    'link_title' => 'Logging and alerts',
2436    'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:156:\"Settings for logging and alerts modules. Various modules can route Drupal's system events to different destination, such as syslog, database, email, ...etc.\";}}",
2437    'module' => 'system',
2438    'hidden' => '0',
2439    'external' => '0',
2440    'has_children' => '1',
2441    'expanded' => '0',
2442    'weight' => '0',
2443    'depth' => '3',
2444    'customized' => '0',
2445    'p1' => '2',
2446    'p2' => '17',
2447    'p3' => '36',
2448    'p4' => '0',
2449    'p5' => '0',
2450    'p6' => '0',
2451    'p7' => '0',
2452    'p8' => '0',
2453    'p9' => '0',
2454    'updated' => '0',
2455  ))
2456  ->values(array(
2457    'menu_name' => 'navigation',
2458    'mlid' => '37',
2459    'plid' => '16',
2460    'link_path' => 'admin/build/menu',
2461    'router_path' => 'admin/build/menu',
2462    'link_title' => 'Menus',
2463    'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:116:\"Control your site's navigation menu, primary links and secondary links. as well as rename and reorganize menu items.\";}}",
2464    'module' => 'system',
2465    'hidden' => '0',
2466    'external' => '0',
2467    'has_children' => '1',
2468    'expanded' => '0',
2469    'weight' => '0',
2470    'depth' => '3',
2471    'customized' => '0',
2472    'p1' => '2',
2473    'p2' => '16',
2474    'p3' => '37',
2475    'p4' => '0',
2476    'p5' => '0',
2477    'p6' => '0',
2478    'p7' => '0',
2479    'p8' => '0',
2480    'p9' => '0',
2481    'updated' => '0',
2482  ))
2483  ->values(array(
2484    'menu_name' => 'navigation',
2485    'mlid' => '38',
2486    'plid' => '16',
2487    'link_path' => 'admin/build/modules',
2488    'router_path' => 'admin/build/modules',
2489    'link_title' => 'Modules',
2490    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:47:"Enable or disable add-on modules for your site.";}}',
2491    'module' => 'system',
2492    'hidden' => '0',
2493    'external' => '0',
2494    'has_children' => '0',
2495    'expanded' => '0',
2496    'weight' => '0',
2497    'depth' => '3',
2498    'customized' => '0',
2499    'p1' => '2',
2500    'p2' => '16',
2501    'p3' => '38',
2502    'p4' => '0',
2503    'p5' => '0',
2504    'p6' => '0',
2505    'p7' => '0',
2506    'p8' => '0',
2507    'p9' => '0',
2508    'updated' => '0',
2509  ))
2510  ->values(array(
2511    'menu_name' => 'navigation',
2512    'mlid' => '39',
2513    'plid' => '17',
2514    'link_path' => 'admin/settings/performance',
2515    'router_path' => 'admin/settings/performance',
2516    'link_title' => 'Performance',
2517    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:101:"Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.";}}',
2518    'module' => 'system',
2519    'hidden' => '0',
2520    'external' => '0',
2521    'has_children' => '0',
2522    'expanded' => '0',
2523    'weight' => '0',
2524    'depth' => '3',
2525    'customized' => '0',
2526    'p1' => '2',
2527    'p2' => '17',
2528    'p3' => '39',
2529    'p4' => '0',
2530    'p5' => '0',
2531    'p6' => '0',
2532    'p7' => '0',
2533    'p8' => '0',
2534    'p9' => '0',
2535    'updated' => '0',
2536  ))
2537  ->values(array(
2538    'menu_name' => 'navigation',
2539    'mlid' => '40',
2540    'plid' => '19',
2541    'link_path' => 'admin/user/permissions',
2542    'router_path' => 'admin/user/permissions',
2543    'link_title' => 'Permissions',
2544    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:64:"Determine access to features by selecting permissions for roles.";}}',
2545    'module' => 'system',
2546    'hidden' => '0',
2547    'external' => '0',
2548    'has_children' => '0',
2549    'expanded' => '0',
2550    'weight' => '0',
2551    'depth' => '3',
2552    'customized' => '0',
2553    'p1' => '2',
2554    'p2' => '19',
2555    'p3' => '40',
2556    'p4' => '0',
2557    'p5' => '0',
2558    'p6' => '0',
2559    'p7' => '0',
2560    'p8' => '0',
2561    'p9' => '0',
2562    'updated' => '0',
2563  ))
2564  ->values(array(
2565    'menu_name' => 'navigation',
2566    'mlid' => '41',
2567    'plid' => '10',
2568    'link_path' => 'admin/content/node-settings',
2569    'router_path' => 'admin/content/node-settings',
2570    'link_title' => 'Post settings',
2571    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:126:"Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.";}}',
2572    'module' => 'system',
2573    'hidden' => '0',
2574    'external' => '0',
2575    'has_children' => '0',
2576    'expanded' => '0',
2577    'weight' => '0',
2578    'depth' => '3',
2579    'customized' => '0',
2580    'p1' => '2',
2581    'p2' => '10',
2582    'p3' => '41',
2583    'p4' => '0',
2584    'p5' => '0',
2585    'p6' => '0',
2586    'p7' => '0',
2587    'p8' => '0',
2588    'p9' => '0',
2589    'updated' => '0',
2590  ))
2591  ->values(array(
2592    'menu_name' => 'navigation',
2593    'mlid' => '42',
2594    'plid' => '10',
2595    'link_path' => 'admin/content/rss-publishing',
2596    'router_path' => 'admin/content/rss-publishing',
2597    'link_title' => 'RSS publishing',
2598    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:92:"Configure the number of items per feed and whether feeds should be titles/teasers/full-text.";}}',
2599    'module' => 'system',
2600    'hidden' => '0',
2601    'external' => '0',
2602    'has_children' => '0',
2603    'expanded' => '0',
2604    'weight' => '0',
2605    'depth' => '3',
2606    'customized' => '0',
2607    'p1' => '2',
2608    'p2' => '10',
2609    'p3' => '42',
2610    'p4' => '0',
2611    'p5' => '0',
2612    'p6' => '0',
2613    'p7' => '0',
2614    'p8' => '0',
2615    'p9' => '0',
2616    'updated' => '0',
2617  ))
2618  ->values(array(
2619    'menu_name' => 'navigation',
2620    'mlid' => '43',
2621    'plid' => '0',
2622    'link_path' => 'comment/reply/%',
2623    'router_path' => 'comment/reply/%',
2624    'link_title' => 'Reply to comment',
2625    'options' => 'a:0:{}',
2626    'module' => 'system',
2627    'hidden' => '-1',
2628    'external' => '0',
2629    'has_children' => '0',
2630    'expanded' => '0',
2631    'weight' => '0',
2632    'depth' => '1',
2633    'customized' => '0',
2634    'p1' => '43',
2635    'p2' => '0',
2636    'p3' => '0',
2637    'p4' => '0',
2638    'p5' => '0',
2639    'p6' => '0',
2640    'p7' => '0',
2641    'p8' => '0',
2642    'p9' => '0',
2643    'updated' => '0',
2644  ))
2645  ->values(array(
2646    'menu_name' => 'navigation',
2647    'mlid' => '44',
2648    'plid' => '19',
2649    'link_path' => 'admin/user/roles',
2650    'router_path' => 'admin/user/roles',
2651    'link_title' => 'Roles',
2652    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:30:"List, edit, or add user roles.";}}',
2653    'module' => 'system',
2654    'hidden' => '0',
2655    'external' => '0',
2656    'has_children' => '0',
2657    'expanded' => '0',
2658    'weight' => '0',
2659    'depth' => '3',
2660    'customized' => '0',
2661    'p1' => '2',
2662    'p2' => '19',
2663    'p3' => '44',
2664    'p4' => '0',
2665    'p5' => '0',
2666    'p6' => '0',
2667    'p7' => '0',
2668    'p8' => '0',
2669    'p9' => '0',
2670    'updated' => '0',
2671  ))
2672  ->values(array(
2673    'menu_name' => 'navigation',
2674    'mlid' => '45',
2675    'plid' => '17',
2676    'link_path' => 'admin/settings/site-information',
2677    'router_path' => 'admin/settings/site-information',
2678    'link_title' => 'Site information',
2679    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:107:"Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.";}}',
2680    'module' => 'system',
2681    'hidden' => '0',
2682    'external' => '0',
2683    'has_children' => '0',
2684    'expanded' => '0',
2685    'weight' => '0',
2686    'depth' => '3',
2687    'customized' => '0',
2688    'p1' => '2',
2689    'p2' => '17',
2690    'p3' => '45',
2691    'p4' => '0',
2692    'p5' => '0',
2693    'p6' => '0',
2694    'p7' => '0',
2695    'p8' => '0',
2696    'p9' => '0',
2697    'updated' => '0',
2698  ))
2699  ->values(array(
2700    'menu_name' => 'navigation',
2701    'mlid' => '46',
2702    'plid' => '17',
2703    'link_path' => 'admin/settings/site-maintenance',
2704    'router_path' => 'admin/settings/site-maintenance',
2705    'link_title' => 'Site maintenance',
2706    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:63:"Take the site off-line for maintenance or bring it back online.";}}',
2707    'module' => 'system',
2708    'hidden' => '0',
2709    'external' => '0',
2710    'has_children' => '0',
2711    'expanded' => '0',
2712    'weight' => '0',
2713    'depth' => '3',
2714    'customized' => '0',
2715    'p1' => '2',
2716    'p2' => '17',
2717    'p3' => '46',
2718    'p4' => '0',
2719    'p5' => '0',
2720    'p6' => '0',
2721    'p7' => '0',
2722    'p8' => '0',
2723    'p9' => '0',
2724    'updated' => '0',
2725  ))
2726  ->values(array(
2727    'menu_name' => 'navigation',
2728    'mlid' => '47',
2729    'plid' => '15',
2730    'link_path' => 'admin/reports/status',
2731    'router_path' => 'admin/reports/status',
2732    'link_title' => 'Status report',
2733    'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:74:\"Get a status report about your site's operation and any detected problems.\";}}",
2734    'module' => 'system',
2735    'hidden' => '0',
2736    'external' => '0',
2737    'has_children' => '0',
2738    'expanded' => '0',
2739    'weight' => '10',
2740    'depth' => '3',
2741    'customized' => '0',
2742    'p1' => '2',
2743    'p2' => '15',
2744    'p3' => '47',
2745    'p4' => '0',
2746    'p5' => '0',
2747    'p6' => '0',
2748    'p7' => '0',
2749    'p8' => '0',
2750    'p9' => '0',
2751    'updated' => '0',
2752  ))
2753  ->values(array(
2754    'menu_name' => 'navigation',
2755    'mlid' => '48',
2756    'plid' => '16',
2757    'link_path' => 'admin/build/themes',
2758    'router_path' => 'admin/build/themes',
2759    'link_title' => 'Themes',
2760    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:57:"Change which theme your site uses or allows users to set.";}}',
2761    'module' => 'system',
2762    'hidden' => '0',
2763    'external' => '0',
2764    'has_children' => '0',
2765    'expanded' => '0',
2766    'weight' => '0',
2767    'depth' => '3',
2768    'customized' => '0',
2769    'p1' => '2',
2770    'p2' => '16',
2771    'p3' => '48',
2772    'p4' => '0',
2773    'p5' => '0',
2774    'p6' => '0',
2775    'p7' => '0',
2776    'p8' => '0',
2777    'p9' => '0',
2778    'updated' => '0',
2779  ))
2780  ->values(array(
2781    'menu_name' => 'navigation',
2782    'mlid' => '49',
2783    'plid' => '19',
2784    'link_path' => 'admin/user/settings',
2785    'router_path' => 'admin/user/settings',
2786    'link_title' => 'User settings',
2787    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:101:"Configure default behavior of users, including registration requirements, e-mails, and user pictures.";}}',
2788    'module' => 'system',
2789    'hidden' => '0',
2790    'external' => '0',
2791    'has_children' => '0',
2792    'expanded' => '0',
2793    'weight' => '0',
2794    'depth' => '3',
2795    'customized' => '0',
2796    'p1' => '2',
2797    'p2' => '19',
2798    'p3' => '49',
2799    'p4' => '0',
2800    'p5' => '0',
2801    'p6' => '0',
2802    'p7' => '0',
2803    'p8' => '0',
2804    'p9' => '0',
2805    'updated' => '0',
2806  ))
2807  ->values(array(
2808    'menu_name' => 'navigation',
2809    'mlid' => '50',
2810    'plid' => '19',
2811    'link_path' => 'admin/user/user',
2812    'router_path' => 'admin/user/user',
2813    'link_title' => 'Users',
2814    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:26:"List, add, and edit users.";}}',
2815    'module' => 'system',
2816    'hidden' => '0',
2817    'external' => '0',
2818    'has_children' => '0',
2819    'expanded' => '0',
2820    'weight' => '0',
2821    'depth' => '3',
2822    'customized' => '0',
2823    'p1' => '2',
2824    'p2' => '19',
2825    'p3' => '50',
2826    'p4' => '0',
2827    'p5' => '0',
2828    'p6' => '0',
2829    'p7' => '0',
2830    'p8' => '0',
2831    'p9' => '0',
2832    'updated' => '0',
2833  ))
2834  ->values(array(
2835    'menu_name' => 'navigation',
2836    'mlid' => '51',
2837    'plid' => '35',
2838    'link_path' => 'admin/settings/filters/%',
2839    'router_path' => 'admin/settings/filters/%',
2840    'link_title' => '',
2841    'options' => 'a:0:{}',
2842    'module' => 'system',
2843    'hidden' => '-1',
2844    'external' => '0',
2845    'has_children' => '0',
2846    'expanded' => '0',
2847    'weight' => '0',
2848    'depth' => '4',
2849    'customized' => '0',
2850    'p1' => '2',
2851    'p2' => '17',
2852    'p3' => '35',
2853    'p4' => '51',
2854    'p5' => '0',
2855    'p6' => '0',
2856    'p7' => '0',
2857    'p8' => '0',
2858    'p9' => '0',
2859    'updated' => '0',
2860  ))
2861  ->values(array(
2862    'menu_name' => 'navigation',
2863    'mlid' => '52',
2864    'plid' => '25',
2865    'link_path' => 'admin/settings/clean-urls/check',
2866    'router_path' => 'admin/settings/clean-urls/check',
2867    'link_title' => 'Clean URL check',
2868    'options' => 'a:0:{}',
2869    'module' => 'system',
2870    'hidden' => '-1',
2871    'external' => '0',
2872    'has_children' => '0',
2873    'expanded' => '0',
2874    'weight' => '0',
2875    'depth' => '4',
2876    'customized' => '0',
2877    'p1' => '2',
2878    'p2' => '17',
2879    'p3' => '25',
2880    'p4' => '52',
2881    'p5' => '0',
2882    'p6' => '0',
2883    'p7' => '0',
2884    'p8' => '0',
2885    'p9' => '0',
2886    'updated' => '0',
2887  ))
2888  ->values(array(
2889    'menu_name' => 'navigation',
2890    'mlid' => '53',
2891    'plid' => '22',
2892    'link_path' => 'admin/settings/actions/configure',
2893    'router_path' => 'admin/settings/actions/configure',
2894    'link_title' => 'Configure an advanced action',
2895    'options' => 'a:0:{}',
2896    'module' => 'system',
2897    'hidden' => '-1',
2898    'external' => '0',
2899    'has_children' => '0',
2900    'expanded' => '0',
2901    'weight' => '0',
2902    'depth' => '4',
2903    'customized' => '0',
2904    'p1' => '2',
2905    'p2' => '17',
2906    'p3' => '22',
2907    'p4' => '53',
2908    'p5' => '0',
2909    'p6' => '0',
2910    'p7' => '0',
2911    'p8' => '0',
2912    'p9' => '0',
2913    'updated' => '0',
2914  ))
2915  ->values(array(
2916    'menu_name' => 'navigation',
2917    'mlid' => '54',
2918    'plid' => '24',
2919    'link_path' => 'admin/build/block/configure',
2920    'router_path' => 'admin/build/block/configure',
2921    'link_title' => 'Configure block',
2922    'options' => 'a:0:{}',
2923    'module' => 'system',
2924    'hidden' => '-1',
2925    'external' => '0',
2926    'has_children' => '0',
2927    'expanded' => '0',
2928    'weight' => '0',
2929    'depth' => '4',
2930    'customized' => '0',
2931    'p1' => '2',
2932    'p2' => '16',
2933    'p3' => '24',
2934    'p4' => '54',
2935    'p5' => '0',
2936    'p6' => '0',
2937    'p7' => '0',
2938    'p8' => '0',
2939    'p9' => '0',
2940    'updated' => '0',
2941  ))
2942  ->values(array(
2943    'menu_name' => 'navigation',
2944    'mlid' => '55',
2945    'plid' => '16',
2946    'link_path' => 'admin/build/menu-customize/%',
2947    'router_path' => 'admin/build/menu-customize/%',
2948    'link_title' => 'Customize menu',
2949    'options' => 'a:0:{}',
2950    'module' => 'system',
2951    'hidden' => '-1',
2952    'external' => '0',
2953    'has_children' => '0',
2954    'expanded' => '0',
2955    'weight' => '0',
2956    'depth' => '3',
2957    'customized' => '0',
2958    'p1' => '2',
2959    'p2' => '16',
2960    'p3' => '55',
2961    'p4' => '0',
2962    'p5' => '0',
2963    'p6' => '0',
2964    'p7' => '0',
2965    'p8' => '0',
2966    'p9' => '0',
2967    'updated' => '0',
2968  ))
2969  ->values(array(
2970    'menu_name' => 'navigation',
2971    'mlid' => '56',
2972    'plid' => '29',
2973    'link_path' => 'admin/settings/date-time/lookup',
2974    'router_path' => 'admin/settings/date-time/lookup',
2975    'link_title' => 'Date and time lookup',
2976    'options' => 'a:0:{}',
2977    'module' => 'system',
2978    'hidden' => '-1',
2979    'external' => '0',
2980    'has_children' => '0',
2981    'expanded' => '0',
2982    'weight' => '0',
2983    'depth' => '4',
2984    'customized' => '0',
2985    'p1' => '2',
2986    'p2' => '17',
2987    'p3' => '29',
2988    'p4' => '56',
2989    'p5' => '0',
2990    'p6' => '0',
2991    'p7' => '0',
2992    'p8' => '0',
2993    'p9' => '0',
2994    'updated' => '0',
2995  ))
2996  ->values(array(
2997    'menu_name' => 'navigation',
2998    'mlid' => '57',
2999    'plid' => '24',
3000    'link_path' => 'admin/build/block/delete',
3001    'router_path' => 'admin/build/block/delete',
3002    'link_title' => 'Delete block',
3003    'options' => 'a:0:{}',
3004    'module' => 'system',
3005    'hidden' => '-1',
3006    'external' => '0',
3007    'has_children' => '0',
3008    'expanded' => '0',
3009    'weight' => '0',
3010    'depth' => '4',
3011    'customized' => '0',
3012    'p1' => '2',
3013    'p2' => '16',
3014    'p3' => '24',
3015    'p4' => '57',
3016    'p5' => '0',
3017    'p6' => '0',
3018    'p7' => '0',
3019    'p8' => '0',
3020    'p9' => '0',
3021    'updated' => '0',
3022  ))
3023  ->values(array(
3024    'menu_name' => 'navigation',
3025    'mlid' => '58',
3026    'plid' => '35',
3027    'link_path' => 'admin/settings/filters/delete',
3028    'router_path' => 'admin/settings/filters/delete',
3029    'link_title' => 'Delete input format',
3030    'options' => 'a:0:{}',
3031    'module' => 'system',
3032    'hidden' => '-1',
3033    'external' => '0',
3034    'has_children' => '0',
3035    'expanded' => '0',
3036    'weight' => '0',
3037    'depth' => '4',
3038    'customized' => '0',
3039    'p1' => '2',
3040    'p2' => '17',
3041    'p3' => '35',
3042    'p4' => '58',
3043    'p5' => '0',
3044    'p6' => '0',
3045    'p7' => '0',
3046    'p8' => '0',
3047    'p9' => '0',
3048    'updated' => '0',
3049  ))
3050  ->values(array(
3051    'menu_name' => 'navigation',
3052    'mlid' => '59',
3053    'plid' => '21',
3054    'link_path' => 'admin/user/rules/delete',
3055    'router_path' => 'admin/user/rules/delete',
3056    'link_title' => 'Delete rule',
3057    'options' => 'a:0:{}',
3058    'module' => 'system',
3059    'hidden' => '-1',
3060    'external' => '0',
3061    'has_children' => '0',
3062    'expanded' => '0',
3063    'weight' => '0',
3064    'depth' => '4',
3065    'customized' => '0',
3066    'p1' => '2',
3067    'p2' => '19',
3068    'p3' => '21',
3069    'p4' => '59',
3070    'p5' => '0',
3071    'p6' => '0',
3072    'p7' => '0',
3073    'p8' => '0',
3074    'p9' => '0',
3075    'updated' => '0',
3076  ))
3077  ->values(array(
3078    'menu_name' => 'navigation',
3079    'mlid' => '60',
3080    'plid' => '44',
3081    'link_path' => 'admin/user/roles/edit',
3082    'router_path' => 'admin/user/roles/edit',
3083    'link_title' => 'Edit role',
3084    'options' => 'a:0:{}',
3085    'module' => 'system',
3086    'hidden' => '-1',
3087    'external' => '0',
3088    'has_children' => '0',
3089    'expanded' => '0',
3090    'weight' => '0',
3091    'depth' => '4',
3092    'customized' => '0',
3093    'p1' => '2',
3094    'p2' => '19',
3095    'p3' => '44',
3096    'p4' => '60',
3097    'p5' => '0',
3098    'p6' => '0',
3099    'p7' => '0',
3100    'p8' => '0',
3101    'p9' => '0',
3102    'updated' => '0',
3103  ))
3104  ->values(array(
3105    'menu_name' => 'navigation',
3106    'mlid' => '61',
3107    'plid' => '21',
3108    'link_path' => 'admin/user/rules/edit',
3109    'router_path' => 'admin/user/rules/edit',
3110    'link_title' => 'Edit rule',
3111    'options' => 'a:0:{}',
3112    'module' => 'system',
3113    'hidden' => '-1',
3114    'external' => '0',
3115    'has_children' => '0',
3116    'expanded' => '0',
3117    'weight' => '0',
3118    'depth' => '4',
3119    'customized' => '0',
3120    'p1' => '2',
3121    'p2' => '19',
3122    'p3' => '21',
3123    'p4' => '61',
3124    'p5' => '0',
3125    'p6' => '0',
3126    'p7' => '0',
3127    'p8' => '0',
3128    'p9' => '0',
3129    'updated' => '0',
3130  ))
3131  ->values(array(
3132    'menu_name' => 'navigation',
3133    'mlid' => '62',
3134    'plid' => '47',
3135    'link_path' => 'admin/reports/status/php',
3136    'router_path' => 'admin/reports/status/php',
3137    'link_title' => 'PHP',
3138    'options' => 'a:0:{}',
3139    'module' => 'system',
3140    'hidden' => '-1',
3141    'external' => '0',
3142    'has_children' => '0',
3143    'expanded' => '0',
3144    'weight' => '0',
3145    'depth' => '4',
3146    'customized' => '0',
3147    'p1' => '2',
3148    'p2' => '15',
3149    'p3' => '47',
3150    'p4' => '62',
3151    'p5' => '0',
3152    'p6' => '0',
3153    'p7' => '0',
3154    'p8' => '0',
3155    'p9' => '0',
3156    'updated' => '0',
3157  ))
3158  ->values(array(
3159    'menu_name' => 'navigation',
3160    'mlid' => '63',
3161    'plid' => '41',
3162    'link_path' => 'admin/content/node-settings/rebuild',
3163    'router_path' => 'admin/content/node-settings/rebuild',
3164    'link_title' => 'Rebuild permissions',
3165    'options' => 'a:0:{}',
3166    'module' => 'system',
3167    'hidden' => '-1',
3168    'external' => '0',
3169    'has_children' => '0',
3170    'expanded' => '0',
3171    'weight' => '0',
3172    'depth' => '4',
3173    'customized' => '0',
3174    'p1' => '2',
3175    'p2' => '10',
3176    'p3' => '41',
3177    'p4' => '63',
3178    'p5' => '0',
3179    'p6' => '0',
3180    'p7' => '0',
3181    'p8' => '0',
3182    'p9' => '0',
3183    'updated' => '0',
3184  ))
3185  ->values(array(
3186    'menu_name' => 'navigation',
3187    'mlid' => '64',
3188    'plid' => '22',
3189    'link_path' => 'admin/settings/actions/orphan',
3190    'router_path' => 'admin/settings/actions/orphan',
3191    'link_title' => 'Remove orphans',
3192    'options' => 'a:0:{}',
3193    'module' => 'system',
3194    'hidden' => '-1',
3195    'external' => '0',
3196    'has_children' => '0',
3197    'expanded' => '0',
3198    'weight' => '0',
3199    'depth' => '4',
3200    'customized' => '0',
3201    'p1' => '2',
3202    'p2' => '17',
3203    'p3' => '22',
3204    'p4' => '64',
3205    'p5' => '0',
3206    'p6' => '0',
3207    'p7' => '0',
3208    'p8' => '0',
3209    'p9' => '0',
3210    'updated' => '0',
3211  ))
3212  ->values(array(
3213    'menu_name' => 'navigation',
3214    'mlid' => '65',
3215    'plid' => '47',
3216    'link_path' => 'admin/reports/status/run-cron',
3217    'router_path' => 'admin/reports/status/run-cron',
3218    'link_title' => 'Run cron',
3219    'options' => 'a:0:{}',
3220    'module' => 'system',
3221    'hidden' => '-1',
3222    'external' => '0',
3223    'has_children' => '0',
3224    'expanded' => '0',
3225    'weight' => '0',
3226    'depth' => '4',
3227    'customized' => '0',
3228    'p1' => '2',
3229    'p2' => '15',
3230    'p3' => '47',
3231    'p4' => '65',
3232    'p5' => '0',
3233    'p6' => '0',
3234    'p7' => '0',
3235    'p8' => '0',
3236    'p9' => '0',
3237    'updated' => '0',
3238  ))
3239  ->values(array(
3240    'menu_name' => 'navigation',
3241    'mlid' => '66',
3242    'plid' => '47',
3243    'link_path' => 'admin/reports/status/sql',
3244    'router_path' => 'admin/reports/status/sql',
3245    'link_title' => 'SQL',
3246    'options' => 'a:0:{}',
3247    'module' => 'system',
3248    'hidden' => '-1',
3249    'external' => '0',
3250    'has_children' => '0',
3251    'expanded' => '0',
3252    'weight' => '0',
3253    'depth' => '4',
3254    'customized' => '0',
3255    'p1' => '2',
3256    'p2' => '15',
3257    'p3' => '47',
3258    'p4' => '66',
3259    'p5' => '0',
3260    'p6' => '0',
3261    'p7' => '0',
3262    'p8' => '0',
3263    'p9' => '0',
3264    'updated' => '0',
3265  ))
3266  ->values(array(
3267    'menu_name' => 'navigation',
3268    'mlid' => '67',
3269    'plid' => '22',
3270    'link_path' => 'admin/settings/actions/delete/%',
3271    'router_path' => 'admin/settings/actions/delete/%',
3272    'link_title' => 'Delete action',
3273    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:17:"Delete an action.";}}',
3274    'module' => 'system',
3275    'hidden' => '-1',
3276    'external' => '0',
3277    'has_children' => '0',
3278    'expanded' => '0',
3279    'weight' => '0',
3280    'depth' => '4',
3281    'customized' => '0',
3282    'p1' => '2',
3283    'p2' => '17',
3284    'p3' => '22',
3285    'p4' => '67',
3286    'p5' => '0',
3287    'p6' => '0',
3288    'p7' => '0',
3289    'p8' => '0',
3290    'p9' => '0',
3291    'updated' => '0',
3292  ))
3293  ->values(array(
3294    'menu_name' => 'navigation',
3295    'mlid' => '68',
3296    'plid' => '0',
3297    'link_path' => 'admin/build/menu-customize/%/delete',
3298    'router_path' => 'admin/build/menu-customize/%/delete',
3299    'link_title' => 'Delete menu',
3300    'options' => 'a:0:{}',
3301    'module' => 'system',
3302    'hidden' => '-1',
3303    'external' => '0',
3304    'has_children' => '0',
3305    'expanded' => '0',
3306    'weight' => '0',
3307    'depth' => '1',
3308    'customized' => '0',
3309    'p1' => '68',
3310    'p2' => '0',
3311    'p3' => '0',
3312    'p4' => '0',
3313    'p5' => '0',
3314    'p6' => '0',
3315    'p7' => '0',
3316    'p8' => '0',
3317    'p9' => '0',
3318    'updated' => '0',
3319  ))
3320  ->values(array(
3321    'menu_name' => 'navigation',
3322    'mlid' => '69',
3323    'plid' => '24',
3324    'link_path' => 'admin/build/block/list/js',
3325    'router_path' => 'admin/build/block/list/js',
3326    'link_title' => 'JavaScript List Form',
3327    'options' => 'a:0:{}',
3328    'module' => 'system',
3329    'hidden' => '-1',
3330    'external' => '0',
3331    'has_children' => '0',
3332    'expanded' => '0',
3333    'weight' => '0',
3334    'depth' => '4',
3335    'customized' => '0',
3336    'p1' => '2',
3337    'p2' => '16',
3338    'p3' => '24',
3339    'p4' => '69',
3340    'p5' => '0',
3341    'p6' => '0',
3342    'p7' => '0',
3343    'p8' => '0',
3344    'p9' => '0',
3345    'updated' => '0',
3346  ))
3347  ->values(array(
3348    'menu_name' => 'navigation',
3349    'mlid' => '70',
3350    'plid' => '38',
3351    'link_path' => 'admin/build/modules/list/confirm',
3352    'router_path' => 'admin/build/modules/list/confirm',
3353    'link_title' => 'List',
3354    'options' => 'a:0:{}',
3355    'module' => 'system',
3356    'hidden' => '-1',
3357    'external' => '0',
3358    'has_children' => '0',
3359    'expanded' => '0',
3360    'weight' => '0',
3361    'depth' => '4',
3362    'customized' => '0',
3363    'p1' => '2',
3364    'p2' => '16',
3365    'p3' => '38',
3366    'p4' => '70',
3367    'p5' => '0',
3368    'p6' => '0',
3369    'p7' => '0',
3370    'p8' => '0',
3371    'p9' => '0',
3372    'updated' => '0',
3373  ))
3374  ->values(array(
3375    'menu_name' => 'navigation',
3376    'mlid' => '71',
3377    'plid' => '0',
3378    'link_path' => 'user/reset/%/%/%',
3379    'router_path' => 'user/reset/%/%/%',
3380    'link_title' => 'Reset password',
3381    'options' => 'a:0:{}',
3382    'module' => 'system',
3383    'hidden' => '-1',
3384    'external' => '0',
3385    'has_children' => '0',
3386    'expanded' => '0',
3387    'weight' => '0',
3388    'depth' => '1',
3389    'customized' => '0',
3390    'p1' => '71',
3391    'p2' => '0',
3392    'p3' => '0',
3393    'p4' => '0',
3394    'p5' => '0',
3395    'p6' => '0',
3396    'p7' => '0',
3397    'p8' => '0',
3398    'p9' => '0',
3399    'updated' => '0',
3400  ))
3401  ->values(array(
3402    'menu_name' => 'navigation',
3403    'mlid' => '72',
3404    'plid' => '38',
3405    'link_path' => 'admin/build/modules/uninstall/confirm',
3406    'router_path' => 'admin/build/modules/uninstall/confirm',
3407    'link_title' => 'Uninstall',
3408    'options' => 'a:0:{}',
3409    'module' => 'system',
3410    'hidden' => '-1',
3411    'external' => '0',
3412    'has_children' => '0',
3413    'expanded' => '0',
3414    'weight' => '0',
3415    'depth' => '4',
3416    'customized' => '0',
3417    'p1' => '2',
3418    'p2' => '16',
3419    'p3' => '38',
3420    'p4' => '72',
3421    'p5' => '0',
3422    'p6' => '0',
3423    'p7' => '0',
3424    'p8' => '0',
3425    'p9' => '0',
3426    'updated' => '0',
3427  ))
3428  ->values(array(
3429    'menu_name' => 'navigation',
3430    'mlid' => '73',
3431    'plid' => '0',
3432    'link_path' => 'node/%/revisions/%/delete',
3433    'router_path' => 'node/%/revisions/%/delete',
3434    'link_title' => 'Delete earlier revision',
3435    'options' => 'a:0:{}',
3436    'module' => 'system',
3437    'hidden' => '-1',
3438    'external' => '0',
3439    'has_children' => '0',
3440    'expanded' => '0',
3441    'weight' => '0',
3442    'depth' => '1',
3443    'customized' => '0',
3444    'p1' => '73',
3445    'p2' => '0',
3446    'p3' => '0',
3447    'p4' => '0',
3448    'p5' => '0',
3449    'p6' => '0',
3450    'p7' => '0',
3451    'p8' => '0',
3452    'p9' => '0',
3453    'updated' => '0',
3454  ))
3455  ->values(array(
3456    'menu_name' => 'navigation',
3457    'mlid' => '74',
3458    'plid' => '0',
3459    'link_path' => 'node/%/revisions/%/revert',
3460    'router_path' => 'node/%/revisions/%/revert',
3461    'link_title' => 'Revert to earlier revision',
3462    'options' => 'a:0:{}',
3463    'module' => 'system',
3464    'hidden' => '-1',
3465    'external' => '0',
3466    'has_children' => '0',
3467    'expanded' => '0',
3468    'weight' => '0',
3469    'depth' => '1',
3470    'customized' => '0',
3471    'p1' => '74',
3472    'p2' => '0',
3473    'p3' => '0',
3474    'p4' => '0',
3475    'p5' => '0',
3476    'p6' => '0',
3477    'p7' => '0',
3478    'p8' => '0',
3479    'p9' => '0',
3480    'updated' => '0',
3481  ))
3482  ->values(array(
3483    'menu_name' => 'navigation',
3484    'mlid' => '75',
3485    'plid' => '0',
3486    'link_path' => 'node/%/revisions/%/view',
3487    'router_path' => 'node/%/revisions/%/view',
3488    'link_title' => 'Revisions',
3489    'options' => 'a:0:{}',
3490    'module' => 'system',
3491    'hidden' => '-1',
3492    'external' => '0',
3493    'has_children' => '0',
3494    'expanded' => '0',
3495    'weight' => '0',
3496    'depth' => '1',
3497    'customized' => '0',
3498    'p1' => '75',
3499    'p2' => '0',
3500    'p3' => '0',
3501    'p4' => '0',
3502    'p5' => '0',
3503    'p6' => '0',
3504    'p7' => '0',
3505    'p8' => '0',
3506    'p9' => '0',
3507    'updated' => '0',
3508  ))
3509  ->values(array(
3510    'menu_name' => 'navigation',
3511    'mlid' => '76',
3512    'plid' => '37',
3513    'link_path' => 'admin/build/menu/item/%/delete',
3514    'router_path' => 'admin/build/menu/item/%/delete',
3515    'link_title' => 'Delete menu item',
3516    'options' => 'a:0:{}',
3517    'module' => 'system',
3518    'hidden' => '-1',
3519    'external' => '0',
3520    'has_children' => '0',
3521    'expanded' => '0',
3522    'weight' => '0',
3523    'depth' => '4',
3524    'customized' => '0',
3525    'p1' => '2',
3526    'p2' => '16',
3527    'p3' => '37',
3528    'p4' => '76',
3529    'p5' => '0',
3530    'p6' => '0',
3531    'p7' => '0',
3532    'p8' => '0',
3533    'p9' => '0',
3534    'updated' => '0',
3535  ))
3536  ->values(array(
3537    'menu_name' => 'navigation',
3538    'mlid' => '77',
3539    'plid' => '37',
3540    'link_path' => 'admin/build/menu/item/%/edit',
3541    'router_path' => 'admin/build/menu/item/%/edit',
3542    'link_title' => 'Edit menu item',
3543    'options' => 'a:0:{}',
3544    'module' => 'system',
3545    'hidden' => '-1',
3546    'external' => '0',
3547    'has_children' => '0',
3548    'expanded' => '0',
3549    'weight' => '0',
3550    'depth' => '4',
3551    'customized' => '0',
3552    'p1' => '2',
3553    'p2' => '16',
3554    'p3' => '37',
3555    'p4' => '77',
3556    'p5' => '0',
3557    'p6' => '0',
3558    'p7' => '0',
3559    'p8' => '0',
3560    'p9' => '0',
3561    'updated' => '0',
3562  ))
3563  ->values(array(
3564    'menu_name' => 'navigation',
3565    'mlid' => '78',
3566    'plid' => '37',
3567    'link_path' => 'admin/build/menu/item/%/reset',
3568    'router_path' => 'admin/build/menu/item/%/reset',
3569    'link_title' => 'Reset menu item',
3570    'options' => 'a:0:{}',
3571    'module' => 'system',
3572    'hidden' => '-1',
3573    'external' => '0',
3574    'has_children' => '0',
3575    'expanded' => '0',
3576    'weight' => '0',
3577    'depth' => '4',
3578    'customized' => '0',
3579    'p1' => '2',
3580    'p2' => '16',
3581    'p3' => '37',
3582    'p4' => '78',
3583    'p5' => '0',
3584    'p6' => '0',
3585    'p7' => '0',
3586    'p8' => '0',
3587    'p9' => '0',
3588    'updated' => '0',
3589  ))
3590  ->values(array(
3591    'menu_name' => 'navigation',
3592    'mlid' => '79',
3593    'plid' => '37',
3594    'link_path' => 'admin/build/menu-customize/navigation',
3595    'router_path' => 'admin/build/menu-customize/%',
3596    'link_title' => 'Navigation',
3597    'options' => 'a:0:{}',
3598    'module' => 'menu',
3599    'hidden' => '0',
3600    'external' => '0',
3601    'has_children' => '0',
3602    'expanded' => '0',
3603    'weight' => '0',
3604    'depth' => '4',
3605    'customized' => '0',
3606    'p1' => '2',
3607    'p2' => '16',
3608    'p3' => '37',
3609    'p4' => '79',
3610    'p5' => '0',
3611    'p6' => '0',
3612    'p7' => '0',
3613    'p8' => '0',
3614    'p9' => '0',
3615    'updated' => '0',
3616  ))
3617  ->values(array(
3618    'menu_name' => 'navigation',
3619    'mlid' => '80',
3620    'plid' => '37',
3621    'link_path' => 'admin/build/menu-customize/primary-links',
3622    'router_path' => 'admin/build/menu-customize/%',
3623    'link_title' => 'Primary links',
3624    'options' => 'a:0:{}',
3625    'module' => 'menu',
3626    'hidden' => '0',
3627    'external' => '0',
3628    'has_children' => '0',
3629    'expanded' => '0',
3630    'weight' => '0',
3631    'depth' => '4',
3632    'customized' => '0',
3633    'p1' => '2',
3634    'p2' => '16',
3635    'p3' => '37',
3636    'p4' => '80',
3637    'p5' => '0',
3638    'p6' => '0',
3639    'p7' => '0',
3640    'p8' => '0',
3641    'p9' => '0',
3642    'updated' => '0',
3643  ))
3644  ->values(array(
3645    'menu_name' => 'navigation',
3646    'mlid' => '81',
3647    'plid' => '37',
3648    'link_path' => 'admin/build/menu-customize/secondary-links',
3649    'router_path' => 'admin/build/menu-customize/%',
3650    'link_title' => 'Secondary links',
3651    'options' => 'a:0:{}',
3652    'module' => 'menu',
3653    'hidden' => '0',
3654    'external' => '0',
3655    'has_children' => '0',
3656    'expanded' => '0',
3657    'weight' => '0',
3658    'depth' => '4',
3659    'customized' => '0',
3660    'p1' => '2',
3661    'p2' => '16',
3662    'p3' => '37',
3663    'p4' => '81',
3664    'p5' => '0',
3665    'p6' => '0',
3666    'p7' => '0',
3667    'p8' => '0',
3668    'p9' => '0',
3669    'updated' => '0',
3670  ))
3671  ->values(array(
3672    'menu_name' => 'navigation',
3673    'mlid' => '82',
3674    'plid' => '0',
3675    'link_path' => 'taxonomy/autocomplete',
3676    'router_path' => 'taxonomy/autocomplete',
3677    'link_title' => 'Autocomplete taxonomy',
3678    'options' => 'a:0:{}',
3679    'module' => 'system',
3680    'hidden' => '-1',
3681    'external' => '0',
3682    'has_children' => '0',
3683    'expanded' => '0',
3684    'weight' => '0',
3685    'depth' => '1',
3686    'customized' => '0',
3687    'p1' => '82',
3688    'p2' => '0',
3689    'p3' => '0',
3690    'p4' => '0',
3691    'p5' => '0',
3692    'p6' => '0',
3693    'p7' => '0',
3694    'p8' => '0',
3695    'p9' => '0',
3696    'updated' => '0',
3697  ))
3698  ->values(array(
3699    'menu_name' => 'navigation',
3700    'mlid' => '83',
3701    'plid' => '15',
3702    'link_path' => 'admin/reports/updates',
3703    'router_path' => 'admin/reports/updates',
3704    'link_title' => 'Available updates',
3705    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:82:"Get a status report about available updates for your installed modules and themes.";}}',
3706    'module' => 'system',
3707    'hidden' => '0',
3708    'external' => '0',
3709    'has_children' => '0',
3710    'expanded' => '0',
3711    'weight' => '10',
3712    'depth' => '3',
3713    'customized' => '0',
3714    'p1' => '2',
3715    'p2' => '15',
3716    'p3' => '83',
3717    'p4' => '0',
3718    'p5' => '0',
3719    'p6' => '0',
3720    'p7' => '0',
3721    'p8' => '0',
3722    'p9' => '0',
3723    'updated' => '0',
3724  ))
3725  ->values(array(
3726    'menu_name' => 'navigation',
3727    'mlid' => '84',
3728    'plid' => '11',
3729    'link_path' => 'node/add/page',
3730    'router_path' => 'node/add/page',
3731    'link_title' => 'Page',
3732    'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:296:\"A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.\";}}",
3733    'module' => 'system',
3734    'hidden' => '0',
3735    'external' => '0',
3736    'has_children' => '0',
3737    'expanded' => '0',
3738    'weight' => '0',
3739    'depth' => '2',
3740    'customized' => '0',
3741    'p1' => '11',
3742    'p2' => '84',
3743    'p3' => '0',
3744    'p4' => '0',
3745    'p5' => '0',
3746    'p6' => '0',
3747    'p7' => '0',
3748    'p8' => '0',
3749    'p9' => '0',
3750    'updated' => '0',
3751  ))
3752  ->values(array(
3753    'menu_name' => 'navigation',
3754    'mlid' => '85',
3755    'plid' => '15',
3756    'link_path' => 'admin/reports/dblog',
3757    'router_path' => 'admin/reports/dblog',
3758    'link_title' => 'Recent log entries',
3759    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"View events that have recently been logged.";}}',
3760    'module' => 'system',
3761    'hidden' => '0',
3762    'external' => '0',
3763    'has_children' => '0',
3764    'expanded' => '0',
3765    'weight' => '-1',
3766    'depth' => '3',
3767    'customized' => '0',
3768    'p1' => '2',
3769    'p2' => '15',
3770    'p3' => '85',
3771    'p4' => '0',
3772    'p5' => '0',
3773    'p6' => '0',
3774    'p7' => '0',
3775    'p8' => '0',
3776    'p9' => '0',
3777    'updated' => '0',
3778  ))
3779  ->values(array(
3780    'menu_name' => 'navigation',
3781    'mlid' => '86',
3782    'plid' => '11',
3783    'link_path' => 'node/add/story',
3784    'router_path' => 'node/add/story',
3785    'link_title' => 'Story',
3786    'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:392:\"A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.\";}}",
3787    'module' => 'system',
3788    'hidden' => '0',
3789    'external' => '0',
3790    'has_children' => '0',
3791    'expanded' => '0',
3792    'weight' => '0',
3793    'depth' => '2',
3794    'customized' => '0',
3795    'p1' => '11',
3796    'p2' => '86',
3797    'p3' => '0',
3798    'p4' => '0',
3799    'p5' => '0',
3800    'p6' => '0',
3801    'p7' => '0',
3802    'p8' => '0',
3803    'p9' => '0',
3804    'updated' => '0',
3805  ))
3806  ->values(array(
3807    'menu_name' => 'navigation',
3808    'mlid' => '87',
3809    'plid' => '10',
3810    'link_path' => 'admin/content/taxonomy',
3811    'router_path' => 'admin/content/taxonomy',
3812    'link_title' => 'Taxonomy',
3813    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:67:"Manage tagging, categorization, and classification of your content.";}}',
3814    'module' => 'system',
3815    'hidden' => '0',
3816    'external' => '0',
3817    'has_children' => '0',
3818    'expanded' => '0',
3819    'weight' => '0',
3820    'depth' => '3',
3821    'customized' => '0',
3822    'p1' => '2',
3823    'p2' => '10',
3824    'p3' => '87',
3825    'p4' => '0',
3826    'p5' => '0',
3827    'p6' => '0',
3828    'p7' => '0',
3829    'p8' => '0',
3830    'p9' => '0',
3831    'updated' => '0',
3832  ))
3833  ->values(array(
3834    'menu_name' => 'navigation',
3835    'mlid' => '88',
3836    'plid' => '0',
3837    'link_path' => 'taxonomy/term/%',
3838    'router_path' => 'taxonomy/term/%',
3839    'link_title' => 'Taxonomy term',
3840    'options' => 'a:0:{}',
3841    'module' => 'system',
3842    'hidden' => '-1',
3843    'external' => '0',
3844    'has_children' => '0',
3845    'expanded' => '0',
3846    'weight' => '0',
3847    'depth' => '1',
3848    'customized' => '0',
3849    'p1' => '88',
3850    'p2' => '0',
3851    'p3' => '0',
3852    'p4' => '0',
3853    'p5' => '0',
3854    'p6' => '0',
3855    'p7' => '0',
3856    'p8' => '0',
3857    'p9' => '0',
3858    'updated' => '0',
3859  ))
3860  ->values(array(
3861    'menu_name' => 'navigation',
3862    'mlid' => '89',
3863    'plid' => '15',
3864    'link_path' => 'admin/reports/access-denied',
3865    'router_path' => 'admin/reports/access-denied',
3866    'link_title' => "Top 'access denied' errors",
3867    'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:35:\"View 'access denied' errors (403s).\";}}",
3868    'module' => 'system',
3869    'hidden' => '0',
3870    'external' => '0',
3871    'has_children' => '0',
3872    'expanded' => '0',
3873    'weight' => '0',
3874    'depth' => '3',
3875    'customized' => '0',
3876    'p1' => '2',
3877    'p2' => '15',
3878    'p3' => '89',
3879    'p4' => '0',
3880    'p5' => '0',
3881    'p6' => '0',
3882    'p7' => '0',
3883    'p8' => '0',
3884    'p9' => '0',
3885    'updated' => '0',
3886  ))
3887  ->values(array(
3888    'menu_name' => 'navigation',
3889    'mlid' => '90',
3890    'plid' => '15',
3891    'link_path' => 'admin/reports/page-not-found',
3892    'router_path' => 'admin/reports/page-not-found',
3893    'link_title' => "Top 'page not found' errors",
3894    'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"View 'page not found' errors (404s).\";}}",
3895    'module' => 'system',
3896    'hidden' => '0',
3897    'external' => '0',
3898    'has_children' => '0',
3899    'expanded' => '0',
3900    'weight' => '0',
3901    'depth' => '3',
3902    'customized' => '0',
3903    'p1' => '2',
3904    'p2' => '15',
3905    'p3' => '90',
3906    'p4' => '0',
3907    'p5' => '0',
3908    'p6' => '0',
3909    'p7' => '0',
3910    'p8' => '0',
3911    'p9' => '0',
3912    'updated' => '0',
3913  ))
3914  ->values(array(
3915    'menu_name' => 'navigation',
3916    'mlid' => '91',
3917    'plid' => '16',
3918    'link_path' => 'admin/build/path',
3919    'router_path' => 'admin/build/path',
3920    'link_title' => 'URL aliases',
3921    'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:46:\"Change your site's URL paths by aliasing them.\";}}",
3922    'module' => 'system',
3923    'hidden' => '0',
3924    'external' => '0',
3925    'has_children' => '0',
3926    'expanded' => '0',
3927    'weight' => '0',
3928    'depth' => '3',
3929    'customized' => '0',
3930    'p1' => '2',
3931    'p2' => '16',
3932    'p3' => '91',
3933    'p4' => '0',
3934    'p5' => '0',
3935    'p6' => '0',
3936    'p7' => '0',
3937    'p8' => '0',
3938    'p9' => '0',
3939    'updated' => '0',
3940  ))
3941  ->values(array(
3942    'menu_name' => 'navigation',
3943    'mlid' => '92',
3944    'plid' => '36',
3945    'link_path' => 'admin/settings/logging/dblog',
3946    'router_path' => 'admin/settings/logging/dblog',
3947    'link_title' => 'Database logging',
3948    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:169:"Settings for logging to the Drupal database logs. This is the most common method for small to medium sites on shared hosting. The logs are viewable from the admin pages.";}}',
3949    'module' => 'system',
3950    'hidden' => '0',
3951    'external' => '0',
3952    'has_children' => '0',
3953    'expanded' => '0',
3954    'weight' => '0',
3955    'depth' => '4',
3956    'customized' => '0',
3957    'p1' => '2',
3958    'p2' => '17',
3959    'p3' => '36',
3960    'p4' => '92',
3961    'p5' => '0',
3962    'p6' => '0',
3963    'p7' => '0',
3964    'p8' => '0',
3965    'p9' => '0',
3966    'updated' => '0',
3967  ))
3968  ->values(array(
3969    'menu_name' => 'navigation',
3970    'mlid' => '93',
3971    'plid' => '91',
3972    'link_path' => 'admin/build/path/delete',
3973    'router_path' => 'admin/build/path/delete',
3974    'link_title' => 'Delete alias',
3975    'options' => 'a:0:{}',
3976    'module' => 'system',
3977    'hidden' => '-1',
3978    'external' => '0',
3979    'has_children' => '0',
3980    'expanded' => '0',
3981    'weight' => '0',
3982    'depth' => '4',
3983    'customized' => '0',
3984    'p1' => '2',
3985    'p2' => '16',
3986    'p3' => '91',
3987    'p4' => '93',
3988    'p5' => '0',
3989    'p6' => '0',
3990    'p7' => '0',
3991    'p8' => '0',
3992    'p9' => '0',
3993    'updated' => '0',
3994  ))
3995  ->values(array(
3996    'menu_name' => 'navigation',
3997    'mlid' => '94',
3998    'plid' => '15',
3999    'link_path' => 'admin/reports/event/%',
4000    'router_path' => 'admin/reports/event/%',
4001    'link_title' => 'Details',
4002    'options' => 'a:0:{}',
4003    'module' => 'system',
4004    'hidden' => '-1',
4005    'external' => '0',
4006    'has_children' => '0',
4007    'expanded' => '0',
4008    'weight' => '0',
4009    'depth' => '3',
4010    'customized' => '0',
4011    'p1' => '2',
4012    'p2' => '15',
4013    'p3' => '94',
4014    'p4' => '0',
4015    'p5' => '0',
4016    'p6' => '0',
4017    'p7' => '0',
4018    'p8' => '0',
4019    'p9' => '0',
4020    'updated' => '0',
4021  ))
4022  ->values(array(
4023    'menu_name' => 'navigation',
4024    'mlid' => '95',
4025    'plid' => '91',
4026    'link_path' => 'admin/build/path/edit',
4027    'router_path' => 'admin/build/path/edit',
4028    'link_title' => 'Edit alias',
4029    'options' => 'a:0:{}',
4030    'module' => 'system',
4031    'hidden' => '-1',
4032    'external' => '0',
4033    'has_children' => '0',
4034    'expanded' => '0',
4035    'weight' => '0',
4036    'depth' => '4',
4037    'customized' => '0',
4038    'p1' => '2',
4039    'p2' => '16',
4040    'p3' => '91',
4041    'p4' => '95',
4042    'p5' => '0',
4043    'p6' => '0',
4044    'p7' => '0',
4045    'p8' => '0',
4046    'p9' => '0',
4047    'updated' => '0',
4048  ))
4049  ->values(array(
4050    'menu_name' => 'navigation',
4051    'mlid' => '96',
4052    'plid' => '87',
4053    'link_path' => 'admin/content/taxonomy/%',
4054    'router_path' => 'admin/content/taxonomy/%',
4055    'link_title' => 'List terms',
4056    'options' => 'a:0:{}',
4057    'module' => 'system',
4058    'hidden' => '-1',
4059    'external' => '0',
4060    'has_children' => '0',
4061    'expanded' => '0',
4062    'weight' => '0',
4063    'depth' => '4',
4064    'customized' => '0',
4065    'p1' => '2',
4066    'p2' => '10',
4067    'p3' => '87',
4068    'p4' => '96',
4069    'p5' => '0',
4070    'p6' => '0',
4071    'p7' => '0',
4072    'p8' => '0',
4073    'p9' => '0',
4074    'updated' => '0',
4075  ))
4076  ->values(array(
4077    'menu_name' => 'navigation',
4078    'mlid' => '97',
4079    'plid' => '83',
4080    'link_path' => 'admin/reports/updates/check',
4081    'router_path' => 'admin/reports/updates/check',
4082    'link_title' => 'Manual update check',
4083    'options' => 'a:0:{}',
4084    'module' => 'system',
4085    'hidden' => '-1',
4086    'external' => '0',
4087    'has_children' => '0',
4088    'expanded' => '0',
4089    'weight' => '0',
4090    'depth' => '4',
4091    'customized' => '0',
4092    'p1' => '2',
4093    'p2' => '15',
4094    'p3' => '83',
4095    'p4' => '97',
4096    'p5' => '0',
4097    'p6' => '0',
4098    'p7' => '0',
4099    'p8' => '0',
4100    'p9' => '0',
4101    'updated' => '0',
4102  ))
4103  ->values(array(
4104    'menu_name' => 'navigation',
4105    'mlid' => '98',
4106    'plid' => '10',
4107    'link_path' => 'admin/content/node-type/page',
4108    'router_path' => 'admin/content/node-type/page',
4109    'link_title' => 'Page',
4110    'options' => 'a:0:{}',
4111    'module' => 'system',
4112    'hidden' => '-1',
4113    'external' => '0',
4114    'has_children' => '0',
4115    'expanded' => '0',
4116    'weight' => '0',
4117    'depth' => '3',
4118    'customized' => '0',
4119    'p1' => '2',
4120    'p2' => '10',
4121    'p3' => '98',
4122    'p4' => '0',
4123    'p5' => '0',
4124    'p6' => '0',
4125    'p7' => '0',
4126    'p8' => '0',
4127    'p9' => '0',
4128    'updated' => '0',
4129  ))
4130  ->values(array(
4131    'menu_name' => 'navigation',
4132    'mlid' => '99',
4133    'plid' => '10',
4134    'link_path' => 'admin/content/node-type/story',
4135    'router_path' => 'admin/content/node-type/story',
4136    'link_title' => 'Story',
4137    'options' => 'a:0:{}',
4138    'module' => 'system',
4139    'hidden' => '-1',
4140    'external' => '0',
4141    'has_children' => '0',
4142    'expanded' => '0',
4143    'weight' => '0',
4144    'depth' => '3',
4145    'customized' => '0',
4146    'p1' => '2',
4147    'p2' => '10',
4148    'p3' => '99',
4149    'p4' => '0',
4150    'p5' => '0',
4151    'p6' => '0',
4152    'p7' => '0',
4153    'p8' => '0',
4154    'p9' => '0',
4155    'updated' => '0',
4156  ))
4157  ->values(array(
4158    'menu_name' => 'navigation',
4159    'mlid' => '100',
4160    'plid' => '0',
4161    'link_path' => 'admin/content/node-type/page/delete',
4162    'router_path' => 'admin/content/node-type/page/delete',
4163    'link_title' => 'Delete',
4164    'options' => 'a:0:{}',
4165    'module' => 'system',
4166    'hidden' => '-1',
4167    'external' => '0',
4168    'has_children' => '0',
4169    'expanded' => '0',
4170    'weight' => '0',
4171    'depth' => '1',
4172    'customized' => '0',
4173    'p1' => '100',
4174    'p2' => '0',
4175    'p3' => '0',
4176    'p4' => '0',
4177    'p5' => '0',
4178    'p6' => '0',
4179    'p7' => '0',
4180    'p8' => '0',
4181    'p9' => '0',
4182    'updated' => '0',
4183  ))
4184  ->values(array(
4185    'menu_name' => 'navigation',
4186    'mlid' => '101',
4187    'plid' => '0',
4188    'link_path' => 'admin/content/node-type/story/delete',
4189    'router_path' => 'admin/content/node-type/story/delete',
4190    'link_title' => 'Delete',
4191    'options' => 'a:0:{}',
4192    'module' => 'system',
4193    'hidden' => '-1',
4194    'external' => '0',
4195    'has_children' => '0',
4196    'expanded' => '0',
4197    'weight' => '0',
4198    'depth' => '1',
4199    'customized' => '0',
4200    'p1' => '101',
4201    'p2' => '0',
4202    'p3' => '0',
4203    'p4' => '0',
4204    'p5' => '0',
4205    'p6' => '0',
4206    'p7' => '0',
4207    'p8' => '0',
4208    'p9' => '0',
4209    'updated' => '0',
4210  ))
4211  ->values(array(
4212    'menu_name' => 'navigation',
4213    'mlid' => '102',
4214    'plid' => '87',
4215    'link_path' => 'admin/content/taxonomy/edit/term',
4216    'router_path' => 'admin/content/taxonomy/edit/term',
4217    'link_title' => 'Edit term',
4218    'options' => 'a:0:{}',
4219    'module' => 'system',
4220    'hidden' => '-1',
4221    'external' => '0',
4222    'has_children' => '0',
4223    'expanded' => '0',
4224    'weight' => '0',
4225    'depth' => '4',
4226    'customized' => '0',
4227    'p1' => '2',
4228    'p2' => '10',
4229    'p3' => '87',
4230    'p4' => '102',
4231    'p5' => '0',
4232    'p6' => '0',
4233    'p7' => '0',
4234    'p8' => '0',
4235    'p9' => '0',
4236    'updated' => '0',
4237  ))
4238  ->values(array(
4239    'menu_name' => 'navigation',
4240    'mlid' => '103',
4241    'plid' => '87',
4242    'link_path' => 'admin/content/taxonomy/edit/vocabulary/%',
4243    'router_path' => 'admin/content/taxonomy/edit/vocabulary/%',
4244    'link_title' => 'Edit vocabulary',
4245    'options' => 'a:0:{}',
4246    'module' => 'system',
4247    'hidden' => '-1',
4248    'external' => '0',
4249    'has_children' => '0',
4250    'expanded' => '0',
4251    'weight' => '0',
4252    'depth' => '4',
4253    'customized' => '0',
4254    'p1' => '2',
4255    'p2' => '10',
4256    'p3' => '87',
4257    'p4' => '103',
4258    'p5' => '0',
4259    'p6' => '0',
4260    'p7' => '0',
4261    'p8' => '0',
4262    'p9' => '0',
4263    'updated' => '0',
4264  ))
4265  ->values(array(
4266    'menu_name' => 'navigation',
4267    'mlid' => '104',
4268    'plid' => '0',
4269    'link_path' => 'poll',
4270    'router_path' => 'poll',
4271    'link_title' => 'Polls',
4272    'options' => 'a:0:{}',
4273    'module' => 'system',
4274    'hidden' => '1',
4275    'external' => '0',
4276    'has_children' => '0',
4277    'expanded' => '0',
4278    'weight' => '0',
4279    'depth' => '1',
4280    'customized' => '0',
4281    'p1' => '104',
4282    'p2' => '0',
4283    'p3' => '0',
4284    'p4' => '0',
4285    'p5' => '0',
4286    'p6' => '0',
4287    'p7' => '0',
4288    'p8' => '0',
4289    'p9' => '0',
4290    'updated' => '0',
4291  ))
4292  ->values(array(
4293    'menu_name' => 'navigation',
4294    'mlid' => '105',
4295    'plid' => '104',
4296    'link_path' => 'poll/js',
4297    'router_path' => 'poll/js',
4298    'link_title' => 'Javascript Choice Form',
4299    'options' => 'a:0:{}',
4300    'module' => 'system',
4301    'hidden' => '-1',
4302    'external' => '0',
4303    'has_children' => '0',
4304    'expanded' => '0',
4305    'weight' => '0',
4306    'depth' => '2',
4307    'customized' => '0',
4308    'p1' => '104',
4309    'p2' => '105',
4310    'p3' => '0',
4311    'p4' => '0',
4312    'p5' => '0',
4313    'p6' => '0',
4314    'p7' => '0',
4315    'p8' => '0',
4316    'p9' => '0',
4317    'updated' => '0',
4318  ))
4319  ->values(array(
4320    'menu_name' => 'navigation',
4321    'mlid' => '106',
4322    'plid' => '11',
4323    'link_path' => 'node/add/poll',
4324    'router_path' => 'node/add/poll',
4325    'link_title' => 'Poll',
4326    'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:191:"A <em>poll</em> is a question with a set of possible responses. A <em>poll</em>, once created, automatically provides a simple running count of the number of votes received for each response.";}}',
4327    'module' => 'system',
4328    'hidden' => '0',
4329    'external' => '0',
4330    'has_children' => '0',
4331    'expanded' => '0',
4332    'weight' => '0',
4333    'depth' => '2',
4334    'customized' => '0',
4335    'p1' => '11',
4336    'p2' => '106',
4337    'p3' => '0',
4338    'p4' => '0',
4339    'p5' => '0',
4340    'p6' => '0',
4341    'p7' => '0',
4342    'p8' => '0',
4343    'p9' => '0',
4344    'updated' => '0',
4345  ))
4346  ->values(array(
4347    'menu_name' => 'navigation',
4348    'mlid' => '107',
4349    'plid' => '10',
4350    'link_path' => 'admin/content/node-type/poll',
4351    'router_path' => 'admin/content/node-type/poll',
4352    'link_title' => 'Poll',
4353    'options' => 'a:0:{}',
4354    'module' => 'system',
4355    'hidden' => '-1',
4356    'external' => '0',
4357    'has_children' => '0',
4358    'expanded' => '0',
4359    'weight' => '0',
4360    'depth' => '3',
4361    'customized' => '0',
4362    'p1' => '2',
4363    'p2' => '10',
4364    'p3' => '107',
4365    'p4' => '0',
4366    'p5' => '0',
4367    'p6' => '0',
4368    'p7' => '0',
4369    'p8' => '0',
4370    'p9' => '0',
4371    'updated' => '0',
4372  ))
4373  ->values(array(
4374    'menu_name' => 'navigation',
4375    'mlid' => '108',
4376    'plid' => '0',
4377    'link_path' => 'admin/content/node-type/poll/delete',
4378    'router_path' => 'admin/content/node-type/poll/delete',
4379    'link_title' => 'Delete',
4380    'options' => 'a:0:{}',
4381    'module' => 'system',
4382    'hidden' => '-1',
4383    'external' => '0',
4384    'has_children' => '0',
4385    'expanded' => '0',
4386    'weight' => '0',
4387    'depth' => '1',
4388    'customized' => '0',
4389    'p1' => '108',
4390    'p2' => '0',
4391    'p3' => '0',
4392    'p4' => '0',
4393    'p5' => '0',
4394    'p6' => '0',
4395    'p7' => '0',
4396    'p8' => '0',
4397    'p9' => '0',
4398    'updated' => '0',
4399  ))
4400  ->values(array(
4401    'menu_name' => 'navigation',
4402    'mlid' => '109',
4403    'plid' => '2',
4404    'link_path' => 'admin/help',
4405    'router_path' => 'admin/help',
4406    'link_title' => 'Help',
4407    'options' => 'a:0:{}',
4408    'module' => 'system',
4409    'hidden' => '0',
4410    'external' => '0',
4411    'has_children' => '0',
4412    'expanded' => '0',
4413    'weight' => '9',
4414    'depth' => '2',
4415    'customized' => '0',
4416    'p1' => '2',
4417    'p2' => '109',
4418    'p3' => '0',
4419    'p4' => '0',
4420    'p5' => '0',
4421    'p6' => '0',
4422    'p7' => '0',
4423    'p8' => '0',
4424    'p9' => '0',
4425    'updated' => '0',
4426  ))
4427  ->values(array(
4428    'menu_name' => 'navigation',
4429    'mlid' => '110',
4430    'plid' => '109',
4431    'link_path' => 'admin/help/block',
4432    'router_path' => 'admin/help/block',
4433    'link_title' => 'block',
4434    'options' => 'a:0:{}',
4435    'module' => 'system',
4436    'hidden' => '-1',
4437    'external' => '0',
4438    'has_children' => '0',
4439    'expanded' => '0',
4440    'weight' => '0',
4441    'depth' => '3',
4442    'customized' => '0',
4443    'p1' => '2',
4444    'p2' => '109',
4445    'p3' => '110',
4446    'p4' => '0',
4447    'p5' => '0',
4448    'p6' => '0',
4449    'p7' => '0',
4450    'p8' => '0',
4451    'p9' => '0',
4452    'updated' => '0',
4453  ))
4454  ->values(array(
4455    'menu_name' => 'navigation',
4456    'mlid' => '111',
4457    'plid' => '109',
4458    'link_path' => 'admin/help/color',
4459    'router_path' => 'admin/help/color',
4460    'link_title' => 'color',
4461    'options' => 'a:0:{}',
4462    'module' => 'system',
4463    'hidden' => '-1',
4464    'external' => '0',
4465    'has_children' => '0',
4466    'expanded' => '0',
4467    'weight' => '0',
4468    'depth' => '3',
4469    'customized' => '0',
4470    'p1' => '2',
4471    'p2' => '109',
4472    'p3' => '111',
4473    'p4' => '0',
4474    'p5' => '0',
4475    'p6' => '0',
4476    'p7' => '0',
4477    'p8' => '0',
4478    'p9' => '0',
4479    'updated' => '0',
4480  ))
4481  ->values(array(
4482    'menu_name' => 'navigation',
4483    'mlid' => '112',
4484    'plid' => '109',
4485    'link_path' => 'admin/help/comment',
4486    'router_path' => 'admin/help/comment',
4487    'link_title' => 'comment',
4488    'options' => 'a:0:{}',
4489    'module' => 'system',
4490    'hidden' => '-1',
4491    'external' => '0',
4492    'has_children' => '0',
4493    'expanded' => '0',
4494    'weight' => '0',
4495    'depth' => '3',
4496    'customized' => '0',
4497    'p1' => '2',
4498    'p2' => '109',
4499    'p3' => '112',
4500    'p4' => '0',
4501    'p5' => '0',
4502    'p6' => '0',
4503    'p7' => '0',
4504    'p8' => '0',
4505    'p9' => '0',
4506    'updated' => '0',
4507  ))
4508  ->values(array(
4509    'menu_name' => 'navigation',
4510    'mlid' => '113',
4511    'plid' => '109',
4512    'link_path' => 'admin/help/dblog',
4513    'router_path' => 'admin/help/dblog',
4514    'link_title' => 'dblog',
4515    'options' => 'a:0:{}',
4516    'module' => 'system',
4517    'hidden' => '-1',
4518    'external' => '0',
4519    'has_children' => '0',
4520    'expanded' => '0',
4521    'weight' => '0',
4522    'depth' => '3',
4523    'customized' => '0',
4524    'p1' => '2',
4525    'p2' => '109',
4526    'p3' => '113',
4527    'p4' => '0',
4528    'p5' => '0',
4529    'p6' => '0',
4530    'p7' => '0',
4531    'p8' => '0',
4532    'p9' => '0',
4533    'updated' => '0',
4534  ))
4535  ->values(array(
4536    'menu_name' => 'navigation',
4537    'mlid' => '114',
4538    'plid' => '109',
4539    'link_path' => 'admin/help/filter',
4540    'router_path' => 'admin/help/filter',
4541    'link_title' => 'filter',
4542    'options' => 'a:0:{}',
4543    'module' => 'system',
4544    'hidden' => '-1',
4545    'external' => '0',
4546    'has_children' => '0',
4547    'expanded' => '0',
4548    'weight' => '0',
4549    'depth' => '3',
4550    'customized' => '0',
4551    'p1' => '2',
4552    'p2' => '109',
4553    'p3' => '114',
4554    'p4' => '0',
4555    'p5' => '0',
4556    'p6' => '0',
4557    'p7' => '0',
4558    'p8' => '0',
4559    'p9' => '0',
4560    'updated' => '0',
4561  ))
4562  ->values(array(
4563    'menu_name' => 'navigation',
4564    'mlid' => '115',
4565    'plid' => '109',
4566    'link_path' => 'admin/help/help',
4567    'router_path' => 'admin/help/help',
4568    'link_title' => 'help',
4569    'options' => 'a:0:{}',
4570    'module' => 'system',
4571    'hidden' => '-1',
4572    'external' => '0',
4573    'has_children' => '0',
4574    'expanded' => '0',
4575    'weight' => '0',
4576    'depth' => '3',
4577    'customized' => '0',
4578    'p1' => '2',
4579    'p2' => '109',
4580    'p3' => '115',
4581    'p4' => '0',
4582    'p5' => '0',
4583    'p6' => '0',
4584    'p7' => '0',
4585    'p8' => '0',
4586    'p9' => '0',
4587    'updated' => '0',
4588  ))
4589  ->values(array(
4590    'menu_name' => 'navigation',
4591    'mlid' => '116',
4592    'plid' => '109',
4593    'link_path' => 'admin/help/menu',
4594    'router_path' => 'admin/help/menu',
4595    'link_title' => 'menu',
4596    'options' => 'a:0:{}',
4597    'module' => 'system',
4598    'hidden' => '-1',
4599    'external' => '0',
4600    'has_children' => '0',
4601    'expanded' => '0',
4602    'weight' => '0',
4603    'depth' => '3',
4604    'customized' => '0',
4605    'p1' => '2',
4606    'p2' => '109',
4607    'p3' => '116',
4608    'p4' => '0',
4609    'p5' => '0',
4610    'p6' => '0',
4611    'p7' => '0',
4612    'p8' => '0',
4613    'p9' => '0',
4614    'updated' => '0',
4615  ))
4616  ->values(array(
4617    'menu_name' => 'navigation',
4618    'mlid' => '117',
4619    'plid' => '109',
4620    'link_path' => 'admin/help/node',
4621    'router_path' => 'admin/help/node',
4622    'link_title' => 'node',
4623    'options' => 'a:0:{}',
4624    'module' => 'system',
4625    'hidden' => '-1',
4626    'external' => '0',
4627    'has_children' => '0',
4628    'expanded' => '0',
4629    'weight' => '0',
4630    'depth' => '3',
4631    'customized' => '0',
4632    'p1' => '2',
4633    'p2' => '109',
4634    'p3' => '117',
4635    'p4' => '0',
4636    'p5' => '0',
4637    'p6' => '0',
4638    'p7' => '0',
4639    'p8' => '0',
4640    'p9' => '0',
4641    'updated' => '0',
4642  ))
4643  ->values(array(
4644    'menu_name' => 'navigation',
4645    'mlid' => '118',
4646    'plid' => '109',
4647    'link_path' => 'admin/help/path',
4648    'router_path' => 'admin/help/path',
4649    'link_title' => 'path',
4650    'options' => 'a:0:{}',
4651    'module' => 'system',
4652    'hidden' => '-1',
4653    'external' => '0',
4654    'has_children' => '0',
4655    'expanded' => '0',
4656    'weight' => '0',
4657    'depth' => '3',
4658    'customized' => '0',
4659    'p1' => '2',
4660    'p2' => '109',
4661    'p3' => '118',
4662    'p4' => '0',
4663    'p5' => '0',
4664    'p6' => '0',
4665    'p7' => '0',
4666    'p8' => '0',
4667    'p9' => '0',
4668    'updated' => '0',
4669  ))
4670  ->values(array(
4671    'menu_name' => 'navigation',
4672    'mlid' => '119',
4673    'plid' => '109',
4674    'link_path' => 'admin/help/poll',
4675    'router_path' => 'admin/help/poll',
4676    'link_title' => 'poll',
4677    'options' => 'a:0:{}',
4678    'module' => 'system',
4679    'hidden' => '-1',
4680    'external' => '0',
4681    'has_children' => '0',
4682    'expanded' => '0',
4683    'weight' => '0',
4684    'depth' => '3',
4685    'customized' => '0',
4686    'p1' => '2',
4687    'p2' => '109',
4688    'p3' => '119',
4689    'p4' => '0',
4690    'p5' => '0',
4691    'p6' => '0',
4692    'p7' => '0',
4693    'p8' => '0',
4694    'p9' => '0',
4695    'updated' => '0',
4696  ))
4697  ->values(array(
4698    'menu_name' => 'navigation',
4699    'mlid' => '120',
4700    'plid' => '109',
4701    'link_path' => 'admin/help/system',
4702    'router_path' => 'admin/help/system',
4703    'link_title' => 'system',
4704    'options' => 'a:0:{}',
4705    'module' => 'system',
4706    'hidden' => '-1',
4707    'external' => '0',
4708    'has_children' => '0',
4709    'expanded' => '0',
4710    'weight' => '0',
4711    'depth' => '3',
4712    'customized' => '0',
4713    'p1' => '2',
4714    'p2' => '109',
4715    'p3' => '120',
4716    'p4' => '0',
4717    'p5' => '0',
4718    'p6' => '0',
4719    'p7' => '0',
4720    'p8' => '0',
4721    'p9' => '0',
4722    'updated' => '0',
4723  ))
4724  ->values(array(
4725    'menu_name' => 'navigation',
4726    'mlid' => '121',
4727    'plid' => '109',
4728    'link_path' => 'admin/help/taxonomy',
4729    'router_path' => 'admin/help/taxonomy',
4730    'link_title' => 'taxonomy',
4731    'options' => 'a:0:{}',
4732    'module' => 'system',
4733    'hidden' => '-1',
4734    'external' => '0',
4735    'has_children' => '0',
4736    'expanded' => '0',
4737    'weight' => '0',
4738    'depth' => '3',
4739    'customized' => '0',
4740    'p1' => '2',
4741    'p2' => '109',
4742    'p3' => '121',
4743    'p4' => '0',
4744    'p5' => '0',
4745    'p6' => '0',
4746    'p7' => '0',
4747    'p8' => '0',
4748    'p9' => '0',
4749    'updated' => '0',
4750  ))
4751  ->values(array(
4752    'menu_name' => 'navigation',
4753    'mlid' => '122',
4754    'plid' => '109',
4755    'link_path' => 'admin/help/update',
4756    'router_path' => 'admin/help/update',
4757    'link_title' => 'update',
4758    'options' => 'a:0:{}',
4759    'module' => 'system',
4760    'hidden' => '-1',
4761    'external' => '0',
4762    'has_children' => '0',
4763    'expanded' => '0',
4764    'weight' => '0',
4765    'depth' => '3',
4766    'customized' => '0',
4767    'p1' => '2',
4768    'p2' => '109',
4769    'p3' => '122',
4770    'p4' => '0',
4771    'p5' => '0',
4772    'p6' => '0',
4773    'p7' => '0',
4774    'p8' => '0',
4775    'p9' => '0',
4776    'updated' => '0',
4777  ))
4778  ->values(array(
4779    'menu_name' => 'navigation',
4780    'mlid' => '123',
4781    'plid' => '109',
4782    'link_path' => 'admin/help/user',
4783    'router_path' => 'admin/help/user',
4784    'link_title' => 'user',
4785    'options' => 'a:0:{}',
4786    'module' => 'system',
4787    'hidden' => '-1',
4788    'external' => '0',
4789    'has_children' => '0',
4790    'expanded' => '0',
4791    'weight' => '0',
4792    'depth' => '3',
4793    'customized' => '0',
4794    'p1' => '2',
4795    'p2' => '109',
4796    'p3' => '123',
4797    'p4' => '0',
4798    'p5' => '0',
4799    'p6' => '0',
4800    'p7' => '0',
4801    'p8' => '0',
4802    'p9' => '0',
4803    'updated' => '0',
4804  ))
4805  ->execute();
4806  
4807  db_create_table('menu_router', array(
4808    'fields' => array(
4809      'path' => array(
4810        'type' => 'varchar',
4811        'length' => 255,
4812        'not null' => TRUE,
4813        'default' => '',
4814      ),
4815      'load_functions' => array(
4816        'type' => 'text',
4817        'not null' => TRUE,
4818      ),
4819      'to_arg_functions' => array(
4820        'type' => 'text',
4821        'not null' => TRUE,
4822      ),
4823      'access_callback' => array(
4824        'type' => 'varchar',
4825        'length' => 255,
4826        'not null' => TRUE,
4827        'default' => '',
4828      ),
4829      'access_arguments' => array(
4830        'type' => 'text',
4831        'not null' => FALSE,
4832      ),
4833      'page_callback' => array(
4834        'type' => 'varchar',
4835        'length' => 255,
4836        'not null' => TRUE,
4837        'default' => '',
4838      ),
4839      'page_arguments' => array(
4840        'type' => 'text',
4841        'not null' => FALSE,
4842      ),
4843      'fit' => array(
4844        'type' => 'int',
4845        'not null' => TRUE,
4846        'default' => 0,
4847      ),
4848      'number_parts' => array(
4849        'type' => 'int',
4850        'not null' => TRUE,
4851        'default' => 0,
4852        'size' => 'small',
4853      ),
4854      'tab_parent' => array(
4855        'type' => 'varchar',
4856        'length' => 255,
4857        'not null' => TRUE,
4858        'default' => '',
4859      ),
4860      'tab_root' => array(
4861        'type' => 'varchar',
4862        'length' => 255,
4863        'not null' => TRUE,
4864        'default' => '',
4865      ),
4866      'title' => array(
4867        'type' => 'varchar',
4868        'length' => 255,
4869        'not null' => TRUE,
4870        'default' => '',
4871      ),
4872      'title_callback' => array(
4873        'type' => 'varchar',
4874        'length' => 255,
4875        'not null' => TRUE,
4876        'default' => '',
4877      ),
4878      'title_arguments' => array(
4879        'type' => 'varchar',
4880        'length' => 255,
4881        'not null' => TRUE,
4882        'default' => '',
4883      ),
4884      'type' => array(
4885        'type' => 'int',
4886        'not null' => TRUE,
4887        'default' => 0,
4888      ),
4889      'block_callback' => array(
4890        'type' => 'varchar',
4891        'length' => 255,
4892        'not null' => TRUE,
4893        'default' => '',
4894      ),
4895      'description' => array(
4896        'type' => 'text',
4897        'not null' => TRUE,
4898      ),
4899      'position' => array(
4900        'type' => 'varchar',
4901        'length' => 255,
4902        'not null' => TRUE,
4903        'default' => '',
4904      ),
4905      'weight' => array(
4906        'type' => 'int',
4907        'not null' => TRUE,
4908        'default' => 0,
4909      ),
4910      'file' => array(
4911        'type' => 'text',
4912        'size' => 'medium',
4913      ),
4914    ),
4915    'indexes' => array(
4916      'fit' => array(
4917        'fit',
4918      ),
4919      'tab_parent' => array(
4920        'tab_parent',
4921      ),
4922      'tab_root_weight_title' => array(
4923        array(
4924          'tab_root',
4925          64,
4926        ),
4927        'weight',
4928        'title',
4929      ),
4930    ),
4931    'primary key' => array(
4932      'path',
4933    ),
4934    'module' => 'system',
4935    'name' => 'menu_router',
4936  ));
4937  db_insert('menu_router')->fields(array(
4938    'path',
4939    'load_functions',
4940    'to_arg_functions',
4941    'access_callback',
4942    'access_arguments',
4943    'page_callback',
4944    'page_arguments',
4945    'fit',
4946    'number_parts',
4947    'tab_parent',
4948    'tab_root',
4949    'title',
4950    'title_callback',
4951    'title_arguments',
4952    'type',
4953    'block_callback',
4954    'description',
4955    'position',
4956    'weight',
4957    'file',
4958  ))
4959  ->values(array(
4960    'path' => 'admin',
4961    'load_functions' => '',
4962    'to_arg_functions' => '',
4963    'access_callback' => 'user_access',
4964    'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
4965    'page_callback' => 'system_main_admin_page',
4966    'page_arguments' => 'a:0:{}',
4967    'fit' => '1',
4968    'number_parts' => '1',
4969    'tab_parent' => '',
4970    'tab_root' => 'admin',
4971    'title' => 'Administer',
4972    'title_callback' => 't',
4973    'title_arguments' => '',
4974    'type' => '6',
4975    'block_callback' => '',
4976    'description' => '',
4977    'position' => '',
4978    'weight' => '9',
4979    'file' => 'modules/system/system.admin.inc',
4980  ))
4981  ->values(array(
4982    'path' => 'admin/build',
4983    'load_functions' => '',
4984    'to_arg_functions' => '',
4985    'access_callback' => 'user_access',
4986    'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
4987    'page_callback' => 'system_admin_menu_block_page',
4988    'page_arguments' => 'a:0:{}',
4989    'fit' => '3',
4990    'number_parts' => '2',
4991    'tab_parent' => '',
4992    'tab_root' => 'admin/build',
4993    'title' => 'Site building',
4994    'title_callback' => 't',
4995    'title_arguments' => '',
4996    'type' => '6',
4997    'block_callback' => '',
4998    'description' => 'Control how your site looks and feels.',
4999    'position' => 'right',
5000    'weight' => '-10',
5001    'file' => 'modules/system/system.admin.inc',
5002  ))
5003  ->values(array(
5004    'path' => 'admin/build/block',
5005    'load_functions' => '',
5006    'to_arg_functions' => '',
5007    'access_callback' => 'user_access',
5008    'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
5009    'page_callback' => 'block_admin_display',
5010    'page_arguments' => 'a:0:{}',
5011    'fit' => '7',
5012    'number_parts' => '3',
5013    'tab_parent' => '',
5014    'tab_root' => 'admin/build/block',
5015    'title' => 'Blocks',
5016    'title_callback' => 't',
5017    'title_arguments' => '',
5018    'type' => '6',
5019    'block_callback' => '',
5020    'description' => "Configure what block content appears in your site's sidebars and other regions.",
5021    'position' => '',
5022    'weight' => '0',
5023    'file' => 'modules/block/block.admin.inc',
5024  ))
5025  ->values(array(
5026    'path' => 'admin/build/block/add',
5027    'load_functions' => '',
5028    'to_arg_functions' => '',
5029    'access_callback' => 'user_access',
5030    'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
5031    'page_callback' => 'drupal_get_form',
5032    'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
5033    'fit' => '15',
5034    'number_parts' => '4',
5035    'tab_parent' => 'admin/build/block',
5036    'tab_root' => 'admin/build/block',
5037    'title' => 'Add block',
5038    'title_callback' => 't',
5039    'title_arguments' => '',
5040    'type' => '128',
5041    'block_callback' => '',
5042    'description' => '',
5043    'position' => '',
5044    'weight' => '0',
5045    'file' => 'modules/block/block.admin.inc',
5046  ))
5047  ->values(array(
5048    'path' => 'admin/build/block/configure',
5049    'load_functions' => '',
5050    'to_arg_functions' => '',
5051    'access_callback' => 'user_access',
5052    'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
5053    'page_callback' => 'drupal_get_form',
5054    'page_arguments' => 'a:1:{i:0;s:21:"block_admin_configure";}',
5055    'fit' => '15',
5056    'number_parts' => '4',
5057    'tab_parent' => '',
5058    'tab_root' => 'admin/build/block/configure',
5059    'title' => 'Configure block',
5060    'title_callback' => 't',
5061    'title_arguments' => '',
5062    'type' => '4',
5063    'block_callback' => '',
5064    'description' => '',
5065    'position' => '',
5066    'weight' => '0',
5067    'file' => 'modules/block/block.admin.inc',
5068  ))
5069  ->values(array(
5070    'path' => 'admin/build/block/delete',
5071    'load_functions' => '',
5072    'to_arg_functions' => '',
5073    'access_callback' => 'user_access',
5074    'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
5075    'page_callback' => 'drupal_get_form',
5076    'page_arguments' => 'a:1:{i:0;s:16:"block_box_delete";}',
5077    'fit' => '15',
5078    'number_parts' => '4',
5079    'tab_parent' => '',
5080    'tab_root' => 'admin/build/block/delete',
5081    'title' => 'Delete block',
5082    'title_callback' => 't',
5083    'title_arguments' => '',
5084    'type' => '4',
5085    'block_callback' => '',
5086    'description' => '',
5087    'position' => '',
5088    'weight' => '0',
5089    'file' => 'modules/block/block.admin.inc',
5090  ))
5091  ->values(array(
5092    'path' => 'admin/build/block/list',
5093    'load_functions' => '',
5094    'to_arg_functions' => '',
5095    'access_callback' => 'user_access',
5096    'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
5097    'page_callback' => 'block_admin_display',
5098    'page_arguments' => 'a:0:{}',
5099    'fit' => '15',
5100    'number_parts' => '4',
5101    'tab_parent' => 'admin/build/block',
5102    'tab_root' => 'admin/build/block',
5103    'title' => 'List',
5104    'title_callback' => 't',
5105    'title_arguments' => '',
5106    'type' => '136',
5107    'block_callback' => '',
5108    'description' => '',
5109    'position' => '',
5110    'weight' => '-10',
5111    'file' => 'modules/block/block.admin.inc',
5112  ))
5113  ->values(array(
5114    'path' => 'admin/build/block/list/bluemarine',
5115    'load_functions' => '',
5116    'to_arg_functions' => '',
5117    'access_callback' => '_block_themes_access',
5118    'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/bluemarine/bluemarine.info";s:4:"name";s:10:"bluemarine";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:11:{s:4:"name";s:10:"Bluemarine";s:11:"description";s:66:"Table-based multi-column theme with a marine and ash color scheme.";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/bluemarine/script.js";}s:10:"screenshot";s:32:"themes/bluemarine/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:6:"engine";s:11:"phptemplate";}}',
5119    'page_callback' => 'block_admin_display',
5120    'page_arguments' => 'a:1:{i:0;s:10:"bluemarine";}',
5121    'fit' => '31',
5122    'number_parts' => '5',
5123    'tab_parent' => 'admin/build/block/list',
5124    'tab_root' => 'admin/build/block',
5125    'title' => 'Bluemarine',
5126    'title_callback' => 't',
5127    'title_arguments' => '',
5128    'type' => '128',
5129    'block_callback' => '',
5130    'description' => '',
5131    'position' => '',
5132    'weight' => '0',
5133    'file' => 'modules/block/block.admin.inc',
5134  ))
5135  ->values(array(
5136    'path' => 'admin/build/block/list/chameleon',
5137    'load_functions' => '',
5138    'to_arg_functions' => '',
5139    'access_callback' => '_block_themes_access',
5140    'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:31:"themes/chameleon/chameleon.info";s:4:"name";s:9:"chameleon";s:4:"type";s:5:"theme";s:5:"owner";s:32:"themes/chameleon/chameleon.theme";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:10:{s:4:"name";s:9:"Chameleon";s:11:"description";s:42:"Minimalist tabled theme with light colors.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:8:"features";a:4:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:7:"scripts";a:1:{s:9:"script.js";s:26:"themes/chameleon/script.js";}s:10:"screenshot";s:31:"themes/chameleon/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}}}',
5141    'page_callback' => 'block_admin_display',
5142    'page_arguments' => 'a:1:{i:0;s:9:"chameleon";}',
5143    'fit' => '31',
5144    'number_parts' => '5',
5145    'tab_parent' => 'admin/build/block/list',
5146    'tab_root' => 'admin/build/block',
5147    'title' => 'Chameleon',
5148    'title_callback' => 't',
5149    'title_arguments' => '',
5150    'type' => '128',
5151    'block_callback' => '',
5152    'description' => '',
5153    'position' => '',
5154    'weight' => '0',
5155    'file' => 'modules/block/block.admin.inc',
5156  ))
5157  ->values(array(
5158    'path' => 'admin/build/block/list/garland',
5159    'load_functions' => '',
5160    'to_arg_functions' => '',
5161    'access_callback' => '_block_themes_access',
5162    'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:11:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:24:"themes/garland/script.js";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}',
5163    'page_callback' => 'block_admin_display',
5164    'page_arguments' => 'a:1:{i:0;s:7:"garland";}',
5165    'fit' => '31',
5166    'number_parts' => '5',
5167    'tab_parent' => 'admin/build/block/list',
5168    'tab_root' => 'admin/build/block',
5169    'title' => 'Garland',
5170    'title_callback' => 't',
5171    'title_arguments' => '',
5172    'type' => '136',
5173    'block_callback' => '',
5174    'description' => '',
5175    'position' => '',
5176    'weight' => '-10',
5177    'file' => 'modules/block/block.admin.inc',
5178  ))
5179  ->values(array(
5180    'path' => 'admin/build/block/list/js',
5181    'load_functions' => '',
5182    'to_arg_functions' => '',
5183    'access_callback' => 'user_access',
5184    'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
5185    'page_callback' => 'block_admin_display_js',
5186    'page_arguments' => 'a:0:{}',
5187    'fit' => '31',
5188    'number_parts' => '5',
5189    'tab_parent' => '',
5190    'tab_root' => 'admin/build/block/list/js',
5191    'title' => 'JavaScript List Form',
5192    'title_callback' => 't',
5193    'title_arguments' => '',
5194    'type' => '4',
5195    'block_callback' => '',
5196    'description' => '',
5197    'position' => '',
5198    'weight' => '0',
5199    'file' => 'modules/block/block.admin.inc',
5200  ))
5201  ->values(array(
5202    'path' => 'admin/build/block/list/marvin',
5203    'load_functions' => '',
5204    'to_arg_functions' => '',
5205    'access_callback' => '_block_themes_access',
5206    'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:35:"themes/chameleon/marvin/marvin.info";s:4:"name";s:6:"marvin";s:4:"type";s:5:"theme";s:5:"owner";s:0:"";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:11:{s:4:"name";s:6:"Marvin";s:11:"description";s:31:"Boxy tabled theme in all grays.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/chameleon/marvin/script.js";}s:10:"screenshot";s:38:"themes/chameleon/marvin/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:10:"base_theme";s:9:"chameleon";}}',
5207    'page_callback' => 'block_admin_display',
5208    'page_arguments' => 'a:1:{i:0;s:6:"marvin";}',
5209    'fit' => '31',
5210    'number_parts' => '5',
5211    'tab_parent' => 'admin/build/block/list',
5212    'tab_root' => 'admin/build/block',
5213    'title' => 'Marvin',
5214    'title_callback' => 't',
5215    'title_arguments' => '',
5216    'type' => '128',
5217    'block_callback' => '',
5218    'description' => '',
5219    'position' => '',
5220    'weight' => '0',
5221    'file' => 'modules/block/block.admin.inc',
5222  ))
5223  ->values(array(
5224    'path' => 'admin/build/block/list/minnelli',
5225    'load_functions' => '',
5226    'to_arg_functions' => '',
5227    'access_callback' => '_block_themes_access',
5228    'access_arguments' => 'a:1:{i:0;O:8:"stdClass":13:{s:8:"filename";s:37:"themes/garland/minnelli/minnelli.info";s:4:"name";s:8:"minnelli";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:12:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:10:"base theme";s:7:"garland";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/garland/minnelli/script.js";}s:10:"screenshot";s:38:"themes/garland/minnelli/screenshot.png";s:3:"php";s:5:"4.3.5";s:6:"engine";s:11:"phptemplate";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:6:"engine";s:11:"phptemplate";s:10:"base_theme";s:7:"garland";}}',
5229    'page_callback' => 'block_admin_display',
5230    'page_arguments' => 'a:1:{i:0;s:8:"minnelli";}',
5231    'fit' => '31',
5232    'number_parts' => '5',
5233    'tab_parent' => 'admin/build/block/list',
5234    'tab_root' => 'admin/build/block',
5235    'title' => 'Minnelli',
5236    'title_callback' => 't',
5237    'title_arguments' => '',
5238    'type' => '128',
5239    'block_callback' => '',
5240    'description' => '',
5241    'position' => '',
5242    'weight' => '0',
5243    'file' => 'modules/block/block.admin.inc',
5244  ))
5245  ->values(array(
5246    'path' => 'admin/build/block/list/pushbutton',
5247    'load_functions' => '',
5248    'to_arg_functions' => '',
5249    'access_callback' => '_block_themes_access',
5250    'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/pushbutton/pushbutton.info";s:4:"name";s:10:"pushbutton";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:11:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/pushbutton/script.js";}s:10:"screenshot";s:32:"themes/pushbutton/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:6:"engine";s:11:"phptemplate";}}',
5251    'page_callback' => 'block_admin_display',
5252    'page_arguments' => 'a:1:{i:0;s:10:"pushbutton";}',
5253    'fit' => '31',
5254    'number_parts' => '5',
5255    'tab_parent' => 'admin/build/block/list',
5256    'tab_root' => 'admin/build/block',
5257    'title' => 'Pushbutton',
5258    'title_callback' => 't',
5259    'title_arguments' => '',
5260    'type' => '128',
5261    'block_callback' => '',
5262    'description' => '',
5263    'position' => '',
5264    'weight' => '0',
5265    'file' => 'modules/block/block.admin.inc',
5266  ))
5267  ->values(array(
5268    'path' => 'admin/build/menu',
5269    'load_functions' => '',
5270    'to_arg_functions' => '',
5271    'access_callback' => 'user_access',
5272    'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
5273    'page_callback' => 'menu_overview_page',
5274    'page_arguments' => 'a:0:{}',
5275    'fit' => '7',
5276    'number_parts' => '3',
5277    'tab_parent' => '',
5278    'tab_root' => 'admin/build/menu',
5279    'title' => 'Menus',
5280    'title_callback' => 't',
5281    'title_arguments' => '',
5282    'type' => '6',
5283    'block_callback' => '',
5284    'description' => "Control your site's navigation menu, primary links and secondary links. as well as rename and reorganize menu items.",
5285    'position' => '',
5286    'weight' => '0',
5287    'file' => 'modules/menu/menu.admin.inc',
5288  ))
5289  ->values(array(
5290    'path' => 'admin/build/menu-customize/%',
5291    'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
5292    'to_arg_functions' => '',
5293    'access_callback' => 'user_access',
5294    'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
5295    'page_callback' => 'drupal_get_form',
5296    'page_arguments' => 'a:2:{i:0;s:18:"menu_overview_form";i:1;i:3;}',
5297    'fit' => '14',
5298    'number_parts' => '4',
5299    'tab_parent' => '',
5300    'tab_root' => 'admin/build/menu-customize/%',
5301    'title' => 'Customize menu',
5302    'title_callback' => 'menu_overview_title',
5303    'title_arguments' => 'a:1:{i:0;i:3;}',
5304    'type' => '4',
5305    'block_callback' => '',
5306    'description' => '',
5307    'position' => '',
5308    'weight' => '0',
5309    'file' => 'modules/menu/menu.admin.inc',
5310  ))
5311  ->values(array(
5312    'path' => 'admin/build/menu-customize/%/add',
5313    'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
5314    'to_arg_functions' => '',
5315    'access_callback' => 'user_access',
5316    'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
5317    'page_callback' => 'drupal_get_form',
5318    'page_arguments' => 'a:4:{i:0;s:14:"menu_edit_item";i:1;s:3:"add";i:2;N;i:3;i:3;}',
5319    'fit' => '29',
5320    'number_parts' => '5',
5321    'tab_parent' => 'admin/build/menu-customize/%',
5322    'tab_root' => 'admin/build/menu-customize/%',
5323    'title' => 'Add item',
5324    'title_callback' => 't',
5325    'title_arguments' => '',
5326    'type' => '128',
5327    'block_callback' => '',
5328    'description' => '',
5329    'position' => '',
5330    'weight' => '0',
5331    'file' => 'modules/menu/menu.admin.inc',
5332  ))
5333  ->values(array(
5334    'path' => 'admin/build/menu-customize/%/delete',
5335    'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
5336    'to_arg_functions' => '',
5337    'access_callback' => 'user_access',
5338    'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
5339    'page_callback' => 'menu_delete_menu_page',
5340    'page_arguments' => 'a:1:{i:0;i:3;}',
5341    'fit' => '29',
5342    'number_parts' => '5',
5343    'tab_parent' => '',
5344    'tab_root' => 'admin/build/menu-customize/%/delete',
5345    'title' => 'Delete menu',
5346    'title_callback' => 't',
5347    'title_arguments' => '',
5348    'type' => '4',
5349    'block_callback' => '',
5350    'description' => '',
5351    'position' => '',
5352    'weight' => '0',
5353    'file' => 'modules/menu/menu.admin.inc',
5354  ))
5355  ->values(array(
5356    'path' => 'admin/build/menu-customize/%/edit',
5357    'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
5358    'to_arg_functions' => '',
5359    'access_callback' => 'user_access',
5360    'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
5361    'page_callback' => 'drupal_get_form',
5362    'page_arguments' => 'a:3:{i:0;s:14:"menu_edit_menu";i:1;s:4:"edit";i:2;i:3;}',
5363    'fit' => '29',
5364    'number_parts' => '5',
5365    'tab_parent' => 'admin/build/menu-customize/%',
5366    'tab_root' => 'admin/build/menu-customize/%',
5367    'title' => 'Edit menu',
5368    'title_callback' => 't',
5369    'title_arguments' => '',
5370    'type' => '128',
5371    'block_callback' => '',
5372    'description' => '',
5373    'position' => '',
5374    'weight' => '0',
5375    'file' => 'modules/menu/menu.admin.inc',
5376  ))
5377  ->values(array(
5378    'path' => 'admin/build/menu-customize/%/list',
5379    'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
5380    'to_arg_functions' => '',
5381    'access_callback' => 'user_access',
5382    'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
5383    'page_callback' => 'drupal_get_form',
5384    'page_arguments' => 'a:2:{i:0;s:18:"menu_overview_form";i:1;i:3;}',
5385    'fit' => '29',
5386    'number_parts' => '5',
5387    'tab_parent' => 'admin/build/menu-customize/%',
5388    'tab_root' => 'admin/build/menu-customize/%',
5389    'title' => 'List items',
5390    'title_callback' => 't',
5391    'title_arguments' => '',
5392    'type' => '136',
5393    'block_callback' => '',
5394    'description' => '',
5395    'position' => '',
5396    'weight' => '-10',
5397    'file' => 'modules/menu/menu.admin.inc',
5398  ))
5399  ->values(array(
5400    'path' => 'admin/build/menu/add',
5401    'load_functions' => '',
5402    'to_arg_functions' => '',
5403    'access_callback' => 'user_access',
5404    'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
5405    'page_callback' => 'drupal_get_form',
5406    'page_arguments' => 'a:2:{i:0;s:14:"menu_edit_menu";i:1;s:3:"add";}',
5407    'fit' => '15',
5408    'number_parts' => '4',
5409    'tab_parent' => 'admin/build/menu',
5410    'tab_root' => 'admin/build/menu',
5411    'title' => 'Add menu',
5412    'title_callback' => 't',
5413    'title_arguments' => '',
5414    'type' => '128',
5415    'block_callback' => '',
5416    'description' => '',
5417    'position' => '',
5418    'weight' => '0',
5419    'file' => 'modules/menu/menu.admin.inc',
5420  ))
5421  ->values(array(
5422    'path' => 'admin/build/menu/item/%/delete',
5423    'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
5424    'to_arg_functions' => '',
5425    'access_callback' => 'user_access',
5426    'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
5427    'page_callback' => 'menu_item_delete_page',
5428    'page_arguments' => 'a:1:{i:0;i:4;}',
5429    'fit' => '61',
5430    'number_parts' => '6',
5431    'tab_parent' => '',
5432    'tab_root' => 'admin/build/menu/item/%/delete',
5433    'title' => 'Delete menu item',
5434    'title_callback' => 't',
5435    'title_arguments' => '',
5436    'type' => '4',
5437    'block_callback' => '',
5438    'description' => '',
5439    'position' => '',
5440    'weight' => '0',
5441    'file' => 'modules/menu/menu.admin.inc',
5442  ))
5443  ->values(array(
5444    'path' => 'admin/build/menu/item/%/edit',
5445    'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
5446    'to_arg_functions' => '',
5447    'access_callback' => 'user_access',
5448    'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
5449    'page_callback' => 'drupal_get_form',
5450    'page_arguments' => 'a:4:{i:0;s:14:"menu_edit_item";i:1;s:4:"edit";i:2;i:4;i:3;N;}',
5451    'fit' => '61',
5452    'number_parts' => '6',
5453    'tab_parent' => '',
5454    'tab_root' => 'admin/build/menu/item/%/edit',
5455    'title' => 'Edit menu item',
5456    'title_callback' => 't',
5457    'title_arguments' => '',
5458    'type' => '4',
5459    'block_callback' => '',
5460    'description' => '',
5461    'position' => '',
5462    'weight' => '0',
5463    'file' => 'modules/menu/menu.admin.inc',
5464  ))
5465  ->values(array(
5466    'path' => 'admin/build/menu/item/%/reset',
5467    'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
5468    'to_arg_functions' => '',
5469    'access_callback' => 'user_access',
5470    'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
5471    'page_callback' => 'drupal_get_form',
5472    'page_arguments' => 'a:2:{i:0;s:23:"menu_reset_item_confirm";i:1;i:4;}',
5473    'fit' => '61',
5474    'number_parts' => '6',
5475    'tab_parent' => '',
5476    'tab_root' => 'admin/build/menu/item/%/reset',
5477    'title' => 'Reset menu item',
5478    'title_callback' => 't',
5479    'title_arguments' => '',
5480    'type' => '4',
5481    'block_callback' => '',
5482    'description' => '',
5483    'position' => '',
5484    'weight' => '0',
5485    'file' => 'modules/menu/menu.admin.inc',
5486  ))
5487  ->values(array(
5488    'path' => 'admin/build/menu/list',
5489    'load_functions' => '',
5490    'to_arg_functions' => '',
5491    'access_callback' => 'user_access',
5492    'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
5493    'page_callback' => 'menu_overview_page',
5494    'page_arguments' => 'a:0:{}',
5495    'fit' => '15',
5496    'number_parts' => '4',
5497    'tab_parent' => 'admin/build/menu',
5498    'tab_root' => 'admin/build/menu',
5499    'title' => 'List menus',
5500    'title_callback' => 't',
5501    'title_arguments' => '',
5502    'type' => '136',
5503    'block_callback' => '',
5504    'description' => '',
5505    'position' => '',
5506    'weight' => '-10',
5507    'file' => 'modules/menu/menu.admin.inc',
5508  ))
5509  ->values(array(
5510    'path' => 'admin/build/menu/settings',
5511    'load_functions' => '',
5512    'to_arg_functions' => '',
5513    'access_callback' => 'user_access',
5514    'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
5515    'page_callback' => 'drupal_get_form',
5516    'page_arguments' => 'a:1:{i:0;s:14:"menu_configure";}',
5517    'fit' => '15',
5518    'number_parts' => '4',
5519    'tab_parent' => 'admin/build/menu',
5520    'tab_root' => 'admin/build/menu',
5521    'title' => 'Settings',
5522    'title_callback' => 't',
5523    'title_arguments' => '',
5524    'type' => '128',
5525    'block_callback' => '',
5526    'description' => '',
5527    'position' => '',
5528    'weight' => '5',
5529    'file' => 'modules/menu/menu.admin.inc',
5530  ))
5531  ->values(array(
5532    'path' => 'admin/build/modules',
5533    'load_functions' => '',
5534    'to_arg_functions' => '',
5535    'access_callback' => 'user_access',
5536    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
5537    'page_callback' => 'drupal_get_form',
5538    'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
5539    'fit' => '7',
5540    'number_parts' => '3',
5541    'tab_parent' => '',
5542    'tab_root' => 'admin/build/modules',
5543    'title' => 'Modules',
5544    'title_callback' => 't',
5545    'title_arguments' => '',
5546    'type' => '6',
5547    'block_callback' => '',
5548    'description' => 'Enable or disable add-on modules for your site.',
5549    'position' => '',
5550    'weight' => '0',
5551    'file' => 'modules/system/system.admin.inc',
5552  ))
5553  ->values(array(
5554    'path' => 'admin/build/modules/list',
5555    'load_functions' => '',
5556    'to_arg_functions' => '',
5557    'access_callback' => 'user_access',
5558    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
5559    'page_callback' => 'drupal_get_form',
5560    'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
5561    'fit' => '15',
5562    'number_parts' => '4',
5563    'tab_parent' => 'admin/build/modules',
5564    'tab_root' => 'admin/build/modules',
5565    'title' => 'List',
5566    'title_callback' => 't',
5567    'title_arguments' => '',
5568    'type' => '136',
5569    'block_callback' => '',
5570    'description' => '',
5571    'position' => '',
5572    'weight' => '0',
5573    'file' => 'modules/system/system.admin.inc',
5574  ))
5575  ->values(array(
5576    'path' => 'admin/build/modules/list/confirm',
5577    'load_functions' => '',
5578    'to_arg_functions' => '',
5579    'access_callback' => 'user_access',
5580    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
5581    'page_callback' => 'drupal_get_form',
5582    'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
5583    'fit' => '31',
5584    'number_parts' => '5',
5585    'tab_parent' => '',
5586    'tab_root' => 'admin/build/modules/list/confirm',
5587    'title' => 'List',
5588    'title_callback' => 't',
5589    'title_arguments' => '',
5590    'type' => '4',
5591    'block_callback' => '',
5592    'description' => '',
5593    'position' => '',
5594    'weight' => '0',
5595    'file' => 'modules/system/system.admin.inc',
5596  ))
5597  ->values(array(
5598    'path' => 'admin/build/modules/uninstall',
5599    'load_functions' => '',
5600    'to_arg_functions' => '',
5601    'access_callback' => 'user_access',
5602    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
5603    'page_callback' => 'drupal_get_form',
5604    'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}',
5605    'fit' => '15',
5606    'number_parts' => '4',
5607    'tab_parent' => 'admin/build/modules',
5608    'tab_root' => 'admin/build/modules',
5609    'title' => 'Uninstall',
5610    'title_callback' => 't',
5611    'title_arguments' => '',
5612    'type' => '128',
5613    'block_callback' => '',
5614    'description' => '',
5615    'position' => '',
5616    'weight' => '0',
5617    'file' => 'modules/system/system.admin.inc',
5618  ))
5619  ->values(array(
5620    'path' => 'admin/build/modules/uninstall/confirm',
5621    'load_functions' => '',
5622    'to_arg_functions' => '',
5623    'access_callback' => 'user_access',
5624    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
5625    'page_callback' => 'drupal_get_form',
5626    'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}',
5627    'fit' => '31',
5628    'number_parts' => '5',
5629    'tab_parent' => '',
5630    'tab_root' => 'admin/build/modules/uninstall/confirm',
5631    'title' => 'Uninstall',
5632    'title_callback' => 't',
5633    'title_arguments' => '',
5634    'type' => '4',
5635    'block_callback' => '',
5636    'description' => '',
5637    'position' => '',
5638    'weight' => '0',
5639    'file' => 'modules/system/system.admin.inc',
5640  ))
5641  ->values(array(
5642    'path' => 'admin/build/path',
5643    'load_functions' => '',
5644    'to_arg_functions' => '',
5645    'access_callback' => 'user_access',
5646    'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
5647    'page_callback' => 'path_admin_overview',
5648    'page_arguments' => 'a:0:{}',
5649    'fit' => '7',
5650    'number_parts' => '3',
5651    'tab_parent' => '',
5652    'tab_root' => 'admin/build/path',
5653    'title' => 'URL aliases',
5654    'title_callback' => 't',
5655    'title_arguments' => '',
5656    'type' => '6',
5657    'block_callback' => '',
5658    'description' => "Change your site's URL paths by aliasing them.",
5659    'position' => '',
5660    'weight' => '0',
5661    'file' => 'modules/path/path.admin.inc',
5662  ))
5663  ->values(array(
5664    'path' => 'admin/build/path/add',
5665    'load_functions' => '',
5666    'to_arg_functions' => '',
5667    'access_callback' => 'user_access',
5668    'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
5669    'page_callback' => 'path_admin_edit',
5670    'page_arguments' => 'a:0:{}',
5671    'fit' => '15',
5672    'number_parts' => '4',
5673    'tab_parent' => 'admin/build/path',
5674    'tab_root' => 'admin/build/path',
5675    'title' => 'Add alias',
5676    'title_callback' => 't',
5677    'title_arguments' => '',
5678    'type' => '128',
5679    'block_callback' => '',
5680    'description' => '',
5681    'position' => '',
5682    'weight' => '0',
5683    'file' => 'modules/path/path.admin.inc',
5684  ))
5685  ->values(array(
5686    'path' => 'admin/build/path/delete',
5687    'load_functions' => '',
5688    'to_arg_functions' => '',
5689    'access_callback' => 'user_access',
5690    'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
5691    'page_callback' => 'drupal_get_form',
5692    'page_arguments' => 'a:1:{i:0;s:25:"path_admin_delete_confirm";}',
5693    'fit' => '15',
5694    'number_parts' => '4',
5695    'tab_parent' => '',
5696    'tab_root' => 'admin/build/path/delete',
5697    'title' => 'Delete alias',
5698    'title_callback' => 't',
5699    'title_arguments' => '',
5700    'type' => '4',
5701    'block_callback' => '',
5702    'description' => '',
5703    'position' => '',
5704    'weight' => '0',
5705    'file' => 'modules/path/path.admin.inc',
5706  ))
5707  ->values(array(
5708    'path' => 'admin/build/path/edit',
5709    'load_functions' => '',
5710    'to_arg_functions' => '',
5711    'access_callback' => 'user_access',
5712    'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
5713    'page_callback' => 'path_admin_edit',
5714    'page_arguments' => 'a:0:{}',
5715    'fit' => '15',
5716    'number_parts' => '4',
5717    'tab_parent' => '',
5718    'tab_root' => 'admin/build/path/edit',
5719    'title' => 'Edit alias',
5720    'title_callback' => 't',
5721    'title_arguments' => '',
5722    'type' => '4',
5723    'block_callback' => '',
5724    'description' => '',
5725    'position' => '',
5726    'weight' => '0',
5727    'file' => 'modules/path/path.admin.inc',
5728  ))
5729  ->values(array(
5730    'path' => 'admin/build/path/list',
5731    'load_functions' => '',
5732    'to_arg_functions' => '',
5733    'access_callback' => 'user_access',
5734    'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}',
5735    'page_callback' => 'path_admin_overview',
5736    'page_arguments' => 'a:0:{}',
5737    'fit' => '15',
5738    'number_parts' => '4',
5739    'tab_parent' => 'admin/build/path',
5740    'tab_root' => 'admin/build/path',
5741    'title' => 'List',
5742    'title_callback' => 't',
5743    'title_arguments' => '',
5744    'type' => '136',
5745    'block_callback' => '',
5746    'description' => '',
5747    'position' => '',
5748    'weight' => '-10',
5749    'file' => 'modules/path/path.admin.inc',
5750  ))
5751  ->values(array(
5752    'path' => 'admin/build/themes',
5753    'load_functions' => '',
5754    'to_arg_functions' => '',
5755    'access_callback' => 'user_access',
5756    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
5757    'page_callback' => 'drupal_get_form',
5758    'page_arguments' => 'a:2:{i:0;s:18:"system_themes_form";i:1;N;}',
5759    'fit' => '7',
5760    'number_parts' => '3',
5761    'tab_parent' => '',
5762    'tab_root' => 'admin/build/themes',
5763    'title' => 'Themes',
5764    'title_callback' => 't',
5765    'title_arguments' => '',
5766    'type' => '6',
5767    'block_callback' => '',
5768    'description' => 'Change which theme your site uses or allows users to set.',
5769    'position' => '',
5770    'weight' => '0',
5771    'file' => 'modules/system/system.admin.inc',
5772  ))
5773  ->values(array(
5774    'path' => 'admin/build/themes/select',
5775    'load_functions' => '',
5776    'to_arg_functions' => '',
5777    'access_callback' => 'user_access',
5778    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
5779    'page_callback' => 'drupal_get_form',
5780    'page_arguments' => 'a:2:{i:0;s:18:"system_themes_form";i:1;N;}',
5781    'fit' => '15',
5782    'number_parts' => '4',
5783    'tab_parent' => 'admin/build/themes',
5784    'tab_root' => 'admin/build/themes',
5785    'title' => 'List',
5786    'title_callback' => 't',
5787    'title_arguments' => '',
5788    'type' => '136',
5789    'block_callback' => '',
5790    'description' => 'Select the default theme.',
5791    'position' => '',
5792    'weight' => '-1',
5793    'file' => 'modules/system/system.admin.inc',
5794  ))
5795  ->values(array(
5796    'path' => 'admin/build/themes/settings',
5797    'load_functions' => '',
5798    'to_arg_functions' => '',
5799    'access_callback' => 'user_access',
5800    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
5801    'page_callback' => 'drupal_get_form',
5802    'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}',
5803    'fit' => '15',
5804    'number_parts' => '4',
5805    'tab_parent' => 'admin/build/themes',
5806    'tab_root' => 'admin/build/themes',
5807    'title' => 'Configure',
5808    'title_callback' => 't',
5809    'title_arguments' => '',
5810    'type' => '128',
5811    'block_callback' => '',
5812    'description' => '',
5813    'position' => '',
5814    'weight' => '0',
5815    'file' => 'modules/system/system.admin.inc',
5816  ))
5817  ->values(array(
5818    'path' => 'admin/build/themes/settings/bluemarine',
5819    'load_functions' => '',
5820    'to_arg_functions' => '',
5821    'access_callback' => '_system_themes_access',
5822    'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/bluemarine/bluemarine.info";s:4:"name";s:10:"bluemarine";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:11:{s:4:"name";s:10:"Bluemarine";s:11:"description";s:66:"Table-based multi-column theme with a marine and ash color scheme.";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/bluemarine/script.js";}s:10:"screenshot";s:32:"themes/bluemarine/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:6:"engine";s:11:"phptemplate";}}',
5823    'page_callback' => 'drupal_get_form',
5824    'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"bluemarine";}',
5825    'fit' => '31',
5826    'number_parts' => '5',
5827    'tab_parent' => 'admin/build/themes/settings',
5828    'tab_root' => 'admin/build/themes',
5829    'title' => 'Bluemarine',
5830    'title_callback' => 't',
5831    'title_arguments' => '',
5832    'type' => '128',
5833    'block_callback' => '',
5834    'description' => '',
5835    'position' => '',
5836    'weight' => '0',
5837    'file' => 'modules/system/system.admin.inc',
5838  ))
5839  ->values(array(
5840    'path' => 'admin/build/themes/settings/chameleon',
5841    'load_functions' => '',
5842    'to_arg_functions' => '',
5843    'access_callback' => '_system_themes_access',
5844    'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:31:"themes/chameleon/chameleon.info";s:4:"name";s:9:"chameleon";s:4:"type";s:5:"theme";s:5:"owner";s:32:"themes/chameleon/chameleon.theme";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:10:{s:4:"name";s:9:"Chameleon";s:11:"description";s:42:"Minimalist tabled theme with light colors.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:8:"features";a:4:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:7:"scripts";a:1:{s:9:"script.js";s:26:"themes/chameleon/script.js";}s:10:"screenshot";s:31:"themes/chameleon/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}}}',
5845    'page_callback' => 'drupal_get_form',
5846    'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:9:"chameleon";}',
5847    'fit' => '31',
5848    'number_parts' => '5',
5849    'tab_parent' => 'admin/build/themes/settings',
5850    'tab_root' => 'admin/build/themes',
5851    'title' => 'Chameleon',
5852    'title_callback' => 't',
5853    'title_arguments' => '',
5854    'type' => '128',
5855    'block_callback' => '',
5856    'description' => '',
5857    'position' => '',
5858    'weight' => '0',
5859    'file' => 'modules/system/system.admin.inc',
5860  ))
5861  ->values(array(
5862    'path' => 'admin/build/themes/settings/garland',
5863    'load_functions' => '',
5864    'to_arg_functions' => '',
5865    'access_callback' => '_system_themes_access',
5866    'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:11:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:24:"themes/garland/script.js";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}',
5867    'page_callback' => 'drupal_get_form',
5868    'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:7:"garland";}',
5869    'fit' => '31',
5870    'number_parts' => '5',
5871    'tab_parent' => 'admin/build/themes/settings',
5872    'tab_root' => 'admin/build/themes',
5873    'title' => 'Garland',
5874    'title_callback' => 't',
5875    'title_arguments' => '',
5876    'type' => '128',
5877    'block_callback' => '',
5878    'description' => '',
5879    'position' => '',
5880    'weight' => '0',
5881    'file' => 'modules/system/system.admin.inc',
5882  ))
5883  ->values(array(
5884    'path' => 'admin/build/themes/settings/global',
5885    'load_functions' => '',
5886    'to_arg_functions' => '',
5887    'access_callback' => 'user_access',
5888    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
5889    'page_callback' => 'drupal_get_form',
5890    'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}',
5891    'fit' => '31',
5892    'number_parts' => '5',
5893    'tab_parent' => 'admin/build/themes/settings',
5894    'tab_root' => 'admin/build/themes',
5895    'title' => 'Global settings',
5896    'title_callback' => 't',
5897    'title_arguments' => '',
5898    'type' => '136',
5899    'block_callback' => '',
5900    'description' => '',
5901    'position' => '',
5902    'weight' => '-1',
5903    'file' => 'modules/system/system.admin.inc',
5904  ))
5905  ->values(array(
5906    'path' => 'admin/build/themes/settings/marvin',
5907    'load_functions' => '',
5908    'to_arg_functions' => '',
5909    'access_callback' => '_system_themes_access',
5910    'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:35:"themes/chameleon/marvin/marvin.info";s:4:"name";s:6:"marvin";s:4:"type";s:5:"theme";s:5:"owner";s:0:"";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:11:{s:4:"name";s:6:"Marvin";s:11:"description";s:31:"Boxy tabled theme in all grays.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/chameleon/marvin/script.js";}s:10:"screenshot";s:38:"themes/chameleon/marvin/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:10:"base_theme";s:9:"chameleon";}}',
5911    'page_callback' => 'drupal_get_form',
5912    'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:6:"marvin";}',
5913    'fit' => '31',
5914    'number_parts' => '5',
5915    'tab_parent' => 'admin/build/themes/settings',
5916    'tab_root' => 'admin/build/themes',
5917    'title' => 'Marvin',
5918    'title_callback' => 't',
5919    'title_arguments' => '',
5920    'type' => '128',
5921    'block_callback' => '',
5922    'description' => '',
5923    'position' => '',
5924    'weight' => '0',
5925    'file' => 'modules/system/system.admin.inc',
5926  ))
5927  ->values(array(
5928    'path' => 'admin/build/themes/settings/minnelli',
5929    'load_functions' => '',
5930    'to_arg_functions' => '',
5931    'access_callback' => '_system_themes_access',
5932    'access_arguments' => 'a:1:{i:0;O:8:"stdClass":13:{s:8:"filename";s:37:"themes/garland/minnelli/minnelli.info";s:4:"name";s:8:"minnelli";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:12:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:10:"base theme";s:7:"garland";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/garland/minnelli/script.js";}s:10:"screenshot";s:38:"themes/garland/minnelli/screenshot.png";s:3:"php";s:5:"4.3.5";s:6:"engine";s:11:"phptemplate";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:6:"engine";s:11:"phptemplate";s:10:"base_theme";s:7:"garland";}}',
5933    'page_callback' => 'drupal_get_form',
5934    'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:8:"minnelli";}',
5935    'fit' => '31',
5936    'number_parts' => '5',
5937    'tab_parent' => 'admin/build/themes/settings',
5938    'tab_root' => 'admin/build/themes',
5939    'title' => 'Minnelli',
5940    'title_callback' => 't',
5941    'title_arguments' => '',
5942    'type' => '128',
5943    'block_callback' => '',
5944    'description' => '',
5945    'position' => '',
5946    'weight' => '0',
5947    'file' => 'modules/system/system.admin.inc',
5948  ))
5949  ->values(array(
5950    'path' => 'admin/build/themes/settings/pushbutton',
5951    'load_functions' => '',
5952    'to_arg_functions' => '',
5953    'access_callback' => '_system_themes_access',
5954    'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/pushbutton/pushbutton.info";s:4:"name";s:10:"pushbutton";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:11:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/pushbutton/script.js";}s:10:"screenshot";s:32:"themes/pushbutton/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:6:"engine";s:11:"phptemplate";}}',
5955    'page_callback' => 'drupal_get_form',
5956    'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"pushbutton";}',
5957    'fit' => '31',
5958    'number_parts' => '5',
5959    'tab_parent' => 'admin/build/themes/settings',
5960    'tab_root' => 'admin/build/themes',
5961    'title' => 'Pushbutton',
5962    'title_callback' => 't',
5963    'title_arguments' => '',
5964    'type' => '128',
5965    'block_callback' => '',
5966    'description' => '',
5967    'position' => '',
5968    'weight' => '0',
5969    'file' => 'modules/system/system.admin.inc',
5970  ))
5971  ->values(array(
5972    'path' => 'admin/by-module',
5973    'load_functions' => '',
5974    'to_arg_functions' => '',
5975    'access_callback' => 'user_access',
5976    'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
5977    'page_callback' => 'system_admin_by_module',
5978    'page_arguments' => 'a:0:{}',
5979    'fit' => '3',
5980    'number_parts' => '2',
5981    'tab_parent' => 'admin',
5982    'tab_root' => 'admin',
5983    'title' => 'By module',
5984    'title_callback' => 't',
5985    'title_arguments' => '',
5986    'type' => '128',
5987    'block_callback' => '',
5988    'description' => '',
5989    'position' => '',
5990    'weight' => '2',
5991    'file' => 'modules/system/system.admin.inc',
5992  ))
5993  ->values(array(
5994    'path' => 'admin/by-task',
5995    'load_functions' => '',
5996    'to_arg_functions' => '',
5997    'access_callback' => 'user_access',
5998    'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
5999    'page_callback' => 'system_main_admin_page',
6000    'page_arguments' => 'a:0:{}',
6001    'fit' => '3',
6002    'number_parts' => '2',
6003    'tab_parent' => 'admin',
6004    'tab_root' => 'admin',
6005    'title' => 'By task',
6006    'title_callback' => 't',
6007    'title_arguments' => '',
6008    'type' => '136',
6009    'block_callback' => '',
6010    'description' => '',
6011    'position' => '',
6012    'weight' => '0',
6013    'file' => 'modules/system/system.admin.inc',
6014  ))
6015  ->values(array(
6016    'path' => 'admin/compact',
6017    'load_functions' => '',
6018    'to_arg_functions' => '',
6019    'access_callback' => 'user_access',
6020    'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
6021    'page_callback' => 'system_admin_compact_page',
6022    'page_arguments' => 'a:0:{}',
6023    'fit' => '3',
6024    'number_parts' => '2',
6025    'tab_parent' => '',
6026    'tab_root' => 'admin/compact',
6027    'title' => 'Compact mode',
6028    'title_callback' => 't',
6029    'title_arguments' => '',
6030    'type' => '4',
6031    'block_callback' => '',
6032    'description' => '',
6033    'position' => '',
6034    'weight' => '0',
6035    'file' => 'modules/system/system.admin.inc',
6036  ))
6037  ->values(array(
6038    'path' => 'admin/content',
6039    'load_functions' => '',
6040    'to_arg_functions' => '',
6041    'access_callback' => 'user_access',
6042    'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
6043    'page_callback' => 'system_admin_menu_block_page',
6044    'page_arguments' => 'a:0:{}',
6045    'fit' => '3',
6046    'number_parts' => '2',
6047    'tab_parent' => '',
6048    'tab_root' => 'admin/content',
6049    'title' => 'Content management',
6050    'title_callback' => 't',
6051    'title_arguments' => '',
6052    'type' => '6',
6053    'block_callback' => '',
6054    'description' => "Manage your site's content.",
6055    'position' => 'left',
6056    'weight' => '-10',
6057    'file' => 'modules/system/system.admin.inc',
6058  ))
6059  ->values(array(
6060    'path' => 'admin/content/comment',
6061    'load_functions' => '',
6062    'to_arg_functions' => '',
6063    'access_callback' => 'user_access',
6064    'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
6065    'page_callback' => 'comment_admin',
6066    'page_arguments' => 'a:0:{}',
6067    'fit' => '7',
6068    'number_parts' => '3',
6069    'tab_parent' => '',
6070    'tab_root' => 'admin/content/comment',
6071    'title' => 'Comments',
6072    'title_callback' => 't',
6073    'title_arguments' => '',
6074    'type' => '6',
6075    'block_callback' => '',
6076    'description' => 'List and edit site comments and the comment moderation queue.',
6077    'position' => '',
6078    'weight' => '0',
6079    'file' => 'modules/comment/comment.admin.inc',
6080  ))
6081  ->values(array(
6082    'path' => 'admin/content/comment/approval',
6083    'load_functions' => '',
6084    'to_arg_functions' => '',
6085    'access_callback' => 'user_access',
6086    'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
6087    'page_callback' => 'comment_admin',
6088    'page_arguments' => 'a:1:{i:0;s:8:"approval";}',
6089    'fit' => '15',
6090    'number_parts' => '4',
6091    'tab_parent' => 'admin/content/comment',
6092    'tab_root' => 'admin/content/comment',
6093    'title' => 'Approval queue',
6094    'title_callback' => 't',
6095    'title_arguments' => '',
6096    'type' => '128',
6097    'block_callback' => '',
6098    'description' => '',
6099    'position' => '',
6100    'weight' => '0',
6101    'file' => 'modules/comment/comment.admin.inc',
6102  ))
6103  ->values(array(
6104    'path' => 'admin/content/comment/new',
6105    'load_functions' => '',
6106    'to_arg_functions' => '',
6107    'access_callback' => 'user_access',
6108    'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
6109    'page_callback' => 'comment_admin',
6110    'page_arguments' => 'a:0:{}',
6111    'fit' => '15',
6112    'number_parts' => '4',
6113    'tab_parent' => 'admin/content/comment',
6114    'tab_root' => 'admin/content/comment',
6115    'title' => 'Published comments',
6116    'title_callback' => 't',
6117    'title_arguments' => '',
6118    'type' => '136',
6119    'block_callback' => '',
6120    'description' => '',
6121    'position' => '',
6122    'weight' => '-10',
6123    'file' => 'modules/comment/comment.admin.inc',
6124  ))
6125  ->values(array(
6126    'path' => 'admin/content/node',
6127    'load_functions' => '',
6128    'to_arg_functions' => '',
6129    'access_callback' => 'user_access',
6130    'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}',
6131    'page_callback' => 'drupal_get_form',
6132    'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}',
6133    'fit' => '7',
6134    'number_parts' => '3',
6135    'tab_parent' => '',
6136    'tab_root' => 'admin/content/node',
6137    'title' => 'Content',
6138    'title_callback' => 't',
6139    'title_arguments' => '',
6140    'type' => '6',
6141    'block_callback' => '',
6142    'description' => "View, edit, and delete your site's content.",
6143    'position' => '',
6144    'weight' => '0',
6145    'file' => 'modules/node/node.admin.inc',
6146  ))
6147  ->values(array(
6148    'path' => 'admin/content/node-settings',
6149    'load_functions' => '',
6150    'to_arg_functions' => '',
6151    'access_callback' => 'user_access',
6152    'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}',
6153    'page_callback' => 'drupal_get_form',
6154    'page_arguments' => 'a:1:{i:0;s:14:"node_configure";}',
6155    'fit' => '7',
6156    'number_parts' => '3',
6157    'tab_parent' => '',
6158    'tab_root' => 'admin/content/node-settings',
6159    'title' => 'Post settings',
6160    'title_callback' => 't',
6161    'title_arguments' => '',
6162    'type' => '6',
6163    'block_callback' => '',
6164    'description' => 'Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.',
6165    'position' => '',
6166    'weight' => '0',
6167    'file' => 'modules/node/node.admin.inc',
6168  ))
6169  ->values(array(
6170    'path' => 'admin/content/node-settings/rebuild',
6171    'load_functions' => '',
6172    'to_arg_functions' => '',
6173    'access_callback' => 'user_access',
6174    'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
6175    'page_callback' => 'drupal_get_form',
6176    'page_arguments' => 'a:1:{i:0;s:30:"node_configure_rebuild_confirm";}',
6177    'fit' => '15',
6178    'number_parts' => '4',
6179    'tab_parent' => '',
6180    'tab_root' => 'admin/content/node-settings/rebuild',
6181    'title' => 'Rebuild permissions',
6182    'title_callback' => 't',
6183    'title_arguments' => '',
6184    'type' => '4',
6185    'block_callback' => '',
6186    'description' => '',
6187    'position' => '',
6188    'weight' => '0',
6189    'file' => 'modules/node/node.admin.inc',
6190  ))
6191  ->values(array(
6192    'path' => 'admin/content/node-type/page',
6193    'load_functions' => '',
6194    'to_arg_functions' => '',
6195    'access_callback' => 'user_access',
6196    'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
6197    'page_callback' => 'drupal_get_form',
6198    'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:4:\"page\";s:4:\"name\";s:4:\"Page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";}}",
6199    'fit' => '15',
6200    'number_parts' => '4',
6201    'tab_parent' => '',
6202    'tab_root' => 'admin/content/node-type/page',
6203    'title' => 'Page',
6204    'title_callback' => 't',
6205    'title_arguments' => '',
6206    'type' => '4',
6207    'block_callback' => '',
6208    'description' => '',
6209    'position' => '',
6210    'weight' => '0',
6211    'file' => 'modules/node/content_types.inc',
6212  ))
6213  ->values(array(
6214    'path' => 'admin/content/node-type/page/delete',
6215    'load_functions' => '',
6216    'to_arg_functions' => '',
6217    'access_callback' => 'user_access',
6218    'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
6219    'page_callback' => 'drupal_get_form',
6220    'page_arguments' => "a:2:{i:0;s:24:\"node_type_delete_confirm\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:4:\"page\";s:4:\"name\";s:4:\"Page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";}}",
6221    'fit' => '31',
6222    'number_parts' => '5',
6223    'tab_parent' => '',
6224    'tab_root' => 'admin/content/node-type/page/delete',
6225    'title' => 'Delete',
6226    'title_callback' => 't',
6227    'title_arguments' => '',
6228    'type' => '4',
6229    'block_callback' => '',
6230    'description' => '',
6231    'position' => '',
6232    'weight' => '0',
6233    'file' => 'modules/node/content_types.inc',
6234  ))
6235  ->values(array(
6236    'path' => 'admin/content/node-type/page/edit',
6237    'load_functions' => '',
6238    'to_arg_functions' => '',
6239    'access_callback' => 'user_access',
6240    'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
6241    'page_callback' => 'drupal_get_form',
6242    'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:4:\"page\";s:4:\"name\";s:4:\"Page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";}}",
6243    'fit' => '31',
6244    'number_parts' => '5',
6245    'tab_parent' => 'admin/content/node-type/page',
6246    'tab_root' => 'admin/content/node-type/page',
6247    'title' => 'Edit',
6248    'title_callback' => 't',
6249    'title_arguments' => '',
6250    'type' => '136',
6251    'block_callback' => '',
6252    'description' => '',
6253    'position' => '',
6254    'weight' => '0',
6255    'file' => 'modules/node/content_types.inc',
6256  ))
6257  ->values(array(
6258    'path' => 'admin/content/node-type/poll',
6259    'load_functions' => '',
6260    'to_arg_functions' => '',
6261    'access_callback' => 'user_access',
6262    'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
6263    'page_callback' => 'drupal_get_form',
6264    'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"name";s:4:"Poll";s:6:"module";s:4:"poll";s:11:"description";s:191:"A <em>poll</em> is a question with a set of possible responses. A <em>poll</em>, once created, automatically provides a simple running count of the number of votes received for each response.";s:11:"title_label";s:8:"Question";s:8:"has_body";b:0;s:4:"type";s:4:"poll";s:9:"has_title";b:1;s:4:"help";s:0:"";s:14:"min_word_count";i:0;s:6:"custom";b:0;s:8:"modified";b:0;s:6:"locked";b:1;s:9:"orig_type";s:4:"poll";s:6:"is_new";b:1;}}',
6265    'fit' => '15',
6266    'number_parts' => '4',
6267    'tab_parent' => '',
6268    'tab_root' => 'admin/content/node-type/poll',
6269    'title' => 'Poll',
6270    'title_callback' => 't',
6271    'title_arguments' => '',
6272    'type' => '4',
6273    'block_callback' => '',
6274    'description' => '',
6275    'position' => '',
6276    'weight' => '0',
6277    'file' => 'modules/node/content_types.inc',
6278  ))
6279  ->values(array(
6280    'path' => 'admin/content/node-type/poll/delete',
6281    'load_functions' => '',
6282    'to_arg_functions' => '',
6283    'access_callback' => 'user_access',
6284    'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
6285    'page_callback' => 'drupal_get_form',
6286    'page_arguments' => 'a:2:{i:0;s:24:"node_type_delete_confirm";i:1;O:8:"stdClass":14:{s:4:"name";s:4:"Poll";s:6:"module";s:4:"poll";s:11:"description";s:191:"A <em>poll</em> is a question with a set of possible responses. A <em>poll</em>, once created, automatically provides a simple running count of the number of votes received for each response.";s:11:"title_label";s:8:"Question";s:8:"has_body";b:0;s:4:"type";s:4:"poll";s:9:"has_title";b:1;s:4:"help";s:0:"";s:14:"min_word_count";i:0;s:6:"custom";b:0;s:8:"modified";b:0;s:6:"locked";b:1;s:9:"orig_type";s:4:"poll";s:6:"is_new";b:1;}}',
6287    'fit' => '31',
6288    'number_parts' => '5',
6289    'tab_parent' => '',
6290    'tab_root' => 'admin/content/node-type/poll/delete',
6291    'title' => 'Delete',
6292    'title_callback' => 't',
6293    'title_arguments' => '',
6294    'type' => '4',
6295    'block_callback' => '',
6296    'description' => '',
6297    'position' => '',
6298    'weight' => '0',
6299    'file' => 'modules/node/content_types.inc',
6300  ))
6301  ->values(array(
6302    'path' => 'admin/content/node-type/poll/edit',
6303    'load_functions' => '',
6304    'to_arg_functions' => '',
6305    'access_callback' => 'user_access',
6306    'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
6307    'page_callback' => 'drupal_get_form',
6308    'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"name";s:4:"Poll";s:6:"module";s:4:"poll";s:11:"description";s:191:"A <em>poll</em> is a question with a set of possible responses. A <em>poll</em>, once created, automatically provides a simple running count of the number of votes received for each response.";s:11:"title_label";s:8:"Question";s:8:"has_body";b:0;s:4:"type";s:4:"poll";s:9:"has_title";b:1;s:4:"help";s:0:"";s:14:"min_word_count";i:0;s:6:"custom";b:0;s:8:"modified";b:0;s:6:"locked";b:1;s:9:"orig_type";s:4:"poll";s:6:"is_new";b:1;}}',
6309    'fit' => '31',
6310    'number_parts' => '5',
6311    'tab_parent' => 'admin/content/node-type/poll',
6312    'tab_root' => 'admin/content/node-type/poll',
6313    'title' => 'Edit',
6314    'title_callback' => 't',
6315    'title_arguments' => '',
6316    'type' => '136',
6317    'block_callback' => '',
6318    'description' => '',
6319    'position' => '',
6320    'weight' => '0',
6321    'file' => 'modules/node/content_types.inc',
6322  ))
6323  ->values(array(
6324    'path' => 'admin/content/node-type/story',
6325    'load_functions' => '',
6326    'to_arg_functions' => '',
6327    'access_callback' => 'user_access',
6328    'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
6329    'page_callback' => 'drupal_get_form',
6330    'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:5:\"story\";s:4:\"name\";s:5:\"Story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:5:\"story\";}}",
6331    'fit' => '15',
6332    'number_parts' => '4',
6333    'tab_parent' => '',
6334    'tab_root' => 'admin/content/node-type/story',
6335    'title' => 'Story',
6336    'title_callback' => 't',
6337    'title_arguments' => '',
6338    'type' => '4',
6339    'block_callback' => '',
6340    'description' => '',
6341    'position' => '',
6342    'weight' => '0',
6343    'file' => 'modules/node/content_types.inc',
6344  ))
6345  ->values(array(
6346    'path' => 'admin/content/node-type/story/delete',
6347    'load_functions' => '',
6348    'to_arg_functions' => '',
6349    'access_callback' => 'user_access',
6350    'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
6351    'page_callback' => 'drupal_get_form',
6352    'page_arguments' => "a:2:{i:0;s:24:\"node_type_delete_confirm\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:5:\"story\";s:4:\"name\";s:5:\"Story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:5:\"story\";}}",
6353    'fit' => '31',
6354    'number_parts' => '5',
6355    'tab_parent' => '',
6356    'tab_root' => 'admin/content/node-type/story/delete',
6357    'title' => 'Delete',
6358    'title_callback' => 't',
6359    'title_arguments' => '',
6360    'type' => '4',
6361    'block_callback' => '',
6362    'description' => '',
6363    'position' => '',
6364    'weight' => '0',
6365    'file' => 'modules/node/content_types.inc',
6366  ))
6367  ->values(array(
6368    'path' => 'admin/content/node-type/story/edit',
6369    'load_functions' => '',
6370    'to_arg_functions' => '',
6371    'access_callback' => 'user_access',
6372    'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
6373    'page_callback' => 'drupal_get_form',
6374    'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:5:\"story\";s:4:\"name\";s:5:\"Story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:5:\"story\";}}",
6375    'fit' => '31',
6376    'number_parts' => '5',
6377    'tab_parent' => 'admin/content/node-type/story',
6378    'tab_root' => 'admin/content/node-type/story',
6379    'title' => 'Edit',
6380    'title_callback' => 't',
6381    'title_arguments' => '',
6382    'type' => '136',
6383    'block_callback' => '',
6384    'description' => '',
6385    'position' => '',
6386    'weight' => '0',
6387    'file' => 'modules/node/content_types.inc',
6388  ))
6389  ->values(array(
6390    'path' => 'admin/content/node/overview',
6391    'load_functions' => '',
6392    'to_arg_functions' => '',
6393    'access_callback' => 'user_access',
6394    'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}',
6395    'page_callback' => 'drupal_get_form',
6396    'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}',
6397    'fit' => '15',
6398    'number_parts' => '4',
6399    'tab_parent' => 'admin/content/node',
6400    'tab_root' => 'admin/content/node',
6401    'title' => 'List',
6402    'title_callback' => 't',
6403    'title_arguments' => '',
6404    'type' => '136',
6405    'block_callback' => '',
6406    'description' => '',
6407    'position' => '',
6408    'weight' => '-10',
6409    'file' => 'modules/node/node.admin.inc',
6410  ))
6411  ->values(array(
6412    'path' => 'admin/content/rss-publishing',
6413    'load_functions' => '',
6414    'to_arg_functions' => '',
6415    'access_callback' => 'user_access',
6416    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
6417    'page_callback' => 'drupal_get_form',
6418    'page_arguments' => 'a:1:{i:0;s:25:"system_rss_feeds_settings";}',
6419    'fit' => '7',
6420    'number_parts' => '3',
6421    'tab_parent' => '',
6422    'tab_root' => 'admin/content/rss-publishing',
6423    'title' => 'RSS publishing',
6424    'title_callback' => 't',
6425    'title_arguments' => '',
6426    'type' => '6',
6427    'block_callback' => '',
6428    'description' => 'Configure the number of items per feed and whether feeds should be titles/teasers/full-text.',
6429    'position' => '',
6430    'weight' => '0',
6431    'file' => 'modules/system/system.admin.inc',
6432  ))
6433  ->values(array(
6434    'path' => 'admin/content/taxonomy',
6435    'load_functions' => '',
6436    'to_arg_functions' => '',
6437    'access_callback' => 'user_access',
6438    'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
6439    'page_callback' => 'drupal_get_form',
6440    'page_arguments' => 'a:1:{i:0;s:30:"taxonomy_overview_vocabularies";}',
6441    'fit' => '7',
6442    'number_parts' => '3',
6443    'tab_parent' => '',
6444    'tab_root' => 'admin/content/taxonomy',
6445    'title' => 'Taxonomy',
6446    'title_callback' => 't',
6447    'title_arguments' => '',
6448    'type' => '6',
6449    'block_callback' => '',
6450    'description' => 'Manage tagging, categorization, and classification of your content.',
6451    'position' => '',
6452    'weight' => '0',
6453    'file' => 'modules/taxonomy/taxonomy.admin.inc',
6454  ))
6455  ->values(array(
6456    'path' => 'admin/content/taxonomy/%',
6457    'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}',
6458    'to_arg_functions' => '',
6459    'access_callback' => 'user_access',
6460    'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
6461    'page_callback' => 'drupal_get_form',
6462    'page_arguments' => 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}',
6463    'fit' => '14',
6464    'number_parts' => '4',
6465    'tab_parent' => '',
6466    'tab_root' => 'admin/content/taxonomy/%',
6467    'title' => 'List terms',
6468    'title_callback' => 't',
6469    'title_arguments' => '',
6470    'type' => '4',
6471    'block_callback' => '',
6472    'description' => '',
6473    'position' => '',
6474    'weight' => '0',
6475    'file' => 'modules/taxonomy/taxonomy.admin.inc',
6476  ))
6477  ->values(array(
6478    'path' => 'admin/content/taxonomy/%/add/term',
6479    'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}',
6480    'to_arg_functions' => '',
6481    'access_callback' => 'user_access',
6482    'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
6483    'page_callback' => 'taxonomy_add_term_page',
6484    'page_arguments' => 'a:1:{i:0;i:3;}',
6485    'fit' => '59',
6486    'number_parts' => '6',
6487    'tab_parent' => 'admin/content/taxonomy/%',
6488    'tab_root' => 'admin/content/taxonomy/%',
6489    'title' => 'Add term',
6490    'title_callback' => 't',
6491    'title_arguments' => '',
6492    'type' => '128',
6493    'block_callback' => '',
6494    'description' => '',
6495    'position' => '',
6496    'weight' => '0',
6497    'file' => 'modules/taxonomy/taxonomy.admin.inc',
6498  ))
6499  ->values(array(
6500    'path' => 'admin/content/taxonomy/%/list',
6501    'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}',
6502    'to_arg_functions' => '',
6503    'access_callback' => 'user_access',
6504    'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
6505    'page_callback' => 'drupal_get_form',
6506    'page_arguments' => 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}',
6507    'fit' => '29',
6508    'number_parts' => '5',
6509    'tab_parent' => 'admin/content/taxonomy/%',
6510    'tab_root' => 'admin/content/taxonomy/%',
6511    'title' => 'List',
6512    'title_callback' => 't',
6513    'title_arguments' => '',
6514    'type' => '136',
6515    'block_callback' => '',
6516    'description' => '',
6517    'position' => '',
6518    'weight' => '-10',
6519    'file' => 'modules/taxonomy/taxonomy.admin.inc',
6520  ))
6521  ->values(array(
6522    'path' => 'admin/content/taxonomy/add/vocabulary',
6523    'load_functions' => '',
6524    'to_arg_functions' => '',
6525    'access_callback' => 'user_access',
6526    'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
6527    'page_callback' => 'drupal_get_form',
6528    'page_arguments' => 'a:1:{i:0;s:24:"taxonomy_form_vocabulary";}',
6529    'fit' => '31',
6530    'number_parts' => '5',
6531    'tab_parent' => 'admin/content/taxonomy',
6532    'tab_root' => 'admin/content/taxonomy',
6533    'title' => 'Add vocabulary',
6534    'title_callback' => 't',
6535    'title_arguments' => '',
6536    'type' => '128',
6537    'block_callback' => '',
6538    'description' => '',
6539    'position' => '',
6540    'weight' => '0',
6541    'file' => 'modules/taxonomy/taxonomy.admin.inc',
6542  ))
6543  ->values(array(
6544    'path' => 'admin/content/taxonomy/edit/term',
6545    'load_functions' => '',
6546    'to_arg_functions' => '',
6547    'access_callback' => 'user_access',
6548    'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
6549    'page_callback' => 'taxonomy_admin_term_edit',
6550    'page_arguments' => 'a:0:{}',
6551    'fit' => '31',
6552    'number_parts' => '5',
6553    'tab_parent' => '',
6554    'tab_root' => 'admin/content/taxonomy/edit/term',
6555    'title' => 'Edit term',
6556    'title_callback' => 't',
6557    'title_arguments' => '',
6558    'type' => '4',
6559    'block_callback' => '',
6560    'description' => '',
6561    'position' => '',
6562    'weight' => '0',
6563    'file' => 'modules/taxonomy/taxonomy.admin.inc',
6564  ))
6565  ->values(array(
6566    'path' => 'admin/content/taxonomy/edit/vocabulary/%',
6567    'load_functions' => 'a:1:{i:5;s:24:"taxonomy_vocabulary_load";}',
6568    'to_arg_functions' => '',
6569    'access_callback' => 'user_access',
6570    'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
6571    'page_callback' => 'taxonomy_admin_vocabulary_edit',
6572    'page_arguments' => 'a:1:{i:0;i:5;}',
6573    'fit' => '62',
6574    'number_parts' => '6',
6575    'tab_parent' => '',
6576    'tab_root' => 'admin/content/taxonomy/edit/vocabulary/%',
6577    'title' => 'Edit vocabulary',
6578    'title_callback' => 't',
6579    'title_arguments' => '',
6580    'type' => '4',
6581    'block_callback' => '',
6582    'description' => '',
6583    'position' => '',
6584    'weight' => '0',
6585    'file' => 'modules/taxonomy/taxonomy.admin.inc',
6586  ))
6587  ->values(array(
6588    'path' => 'admin/content/taxonomy/list',
6589    'load_functions' => '',
6590    'to_arg_functions' => '',
6591    'access_callback' => 'user_access',
6592    'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
6593    'page_callback' => 'drupal_get_form',
6594    'page_arguments' => 'a:1:{i:0;s:30:"taxonomy_overview_vocabularies";}',
6595    'fit' => '15',
6596    'number_parts' => '4',
6597    'tab_parent' => 'admin/content/taxonomy',
6598    'tab_root' => 'admin/content/taxonomy',
6599    'title' => 'List',
6600    'title_callback' => 't',
6601    'title_arguments' => '',
6602    'type' => '136',
6603    'block_callback' => '',
6604    'description' => '',
6605    'position' => '',
6606    'weight' => '-10',
6607    'file' => 'modules/taxonomy/taxonomy.admin.inc',
6608  ))
6609  ->values(array(
6610    'path' => 'admin/content/types',
6611    'load_functions' => '',
6612    'to_arg_functions' => '',
6613    'access_callback' => 'user_access',
6614    'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
6615    'page_callback' => 'node_overview_types',
6616    'page_arguments' => 'a:0:{}',
6617    'fit' => '7',
6618    'number_parts' => '3',
6619    'tab_parent' => '',
6620    'tab_root' => 'admin/content/types',
6621    'title' => 'Content types',
6622    'title_callback' => 't',
6623    'title_arguments' => '',
6624    'type' => '6',
6625    'block_callback' => '',
6626    'description' => 'Manage posts by content type, including default status, front page promotion, etc.',
6627    'position' => '',
6628    'weight' => '0',
6629    'file' => 'modules/node/content_types.inc',
6630  ))
6631  ->values(array(
6632    'path' => 'admin/content/types/add',
6633    'load_functions' => '',
6634    'to_arg_functions' => '',
6635    'access_callback' => 'user_access',
6636    'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
6637    'page_callback' => 'drupal_get_form',
6638    'page_arguments' => 'a:1:{i:0;s:14:"node_type_form";}',
6639    'fit' => '15',
6640    'number_parts' => '4',
6641    'tab_parent' => 'admin/content/types',
6642    'tab_root' => 'admin/content/types',
6643    'title' => 'Add content type',
6644    'title_callback' => 't',
6645    'title_arguments' => '',
6646    'type' => '128',
6647    'block_callback' => '',
6648    'description' => '',
6649    'position' => '',
6650    'weight' => '0',
6651    'file' => 'modules/node/content_types.inc',
6652  ))
6653  ->values(array(
6654    'path' => 'admin/content/types/list',
6655    'load_functions' => '',
6656    'to_arg_functions' => '',
6657    'access_callback' => 'user_access',
6658    'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
6659    'page_callback' => 'node_overview_types',
6660    'page_arguments' => 'a:0:{}',
6661    'fit' => '15',
6662    'number_parts' => '4',
6663    'tab_parent' => 'admin/content/types',
6664    'tab_root' => 'admin/content/types',
6665    'title' => 'List',
6666    'title_callback' => 't',
6667    'title_arguments' => '',
6668    'type' => '136',
6669    'block_callback' => '',
6670    'description' => '',
6671    'position' => '',
6672    'weight' => '-10',
6673    'file' => 'modules/node/content_types.inc',
6674  ))
6675  ->values(array(
6676    'path' => 'admin/help',
6677    'load_functions' => '',
6678    'to_arg_functions' => '',
6679    'access_callback' => 'user_access',
6680    'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
6681    'page_callback' => 'help_main',
6682    'page_arguments' => 'a:0:{}',
6683    'fit' => '3',
6684    'number_parts' => '2',
6685    'tab_parent' => '',
6686    'tab_root' => 'admin/help',
6687    'title' => 'Help',
6688    'title_callback' => 't',
6689    'title_arguments' => '',
6690    'type' => '6',
6691    'block_callback' => '',
6692    'description' => '',
6693    'position' => '',
6694    'weight' => '9',
6695    'file' => 'modules/help/help.admin.inc',
6696  ))
6697  ->values(array(
6698    'path' => 'admin/help/block',
6699    'load_functions' => '',
6700    'to_arg_functions' => '',
6701    'access_callback' => 'user_access',
6702    'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
6703    'page_callback' => 'help_page',
6704    'page_arguments' => 'a:1:{i:0;i:2;}',
6705    'fit' => '7',
6706    'number_parts' => '3',
6707    'tab_parent' => '',
6708    'tab_root' => 'admin/help/block',
6709    'title' => 'block',
6710    'title_callback' => 't',
6711    'title_arguments' => '',
6712    'type' => '4',
6713    'block_callback' => '',
6714    'description' => '',
6715    'position' => '',
6716    'weight' => '0',
6717    'file' => 'modules/help/help.admin.inc',
6718  ))
6719  ->values(array(
6720    'path' => 'admin/help/color',
6721    'load_functions' => '',
6722    'to_arg_functions' => '',
6723    'access_callback' => 'user_access',
6724    'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
6725    'page_callback' => 'help_page',
6726    'page_arguments' => 'a:1:{i:0;i:2;}',
6727    'fit' => '7',
6728    'number_parts' => '3',
6729    'tab_parent' => '',
6730    'tab_root' => 'admin/help/color',
6731    'title' => 'color',
6732    'title_callback' => 't',
6733    'title_arguments' => '',
6734    'type' => '4',
6735    'block_callback' => '',
6736    'description' => '',
6737    'position' => '',
6738    'weight' => '0',
6739    'file' => 'modules/help/help.admin.inc',
6740  ))
6741  ->values(array(
6742    'path' => 'admin/help/comment',
6743    'load_functions' => '',
6744    'to_arg_functions' => '',
6745    'access_callback' => 'user_access',
6746    'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
6747    'page_callback' => 'help_page',
6748    'page_arguments' => 'a:1:{i:0;i:2;}',
6749    'fit' => '7',
6750    'number_parts' => '3',
6751    'tab_parent' => '',
6752    'tab_root' => 'admin/help/comment',
6753    'title' => 'comment',
6754    'title_callback' => 't',
6755    'title_arguments' => '',
6756    'type' => '4',
6757    'block_callback' => '',
6758    'description' => '',
6759    'position' => '',
6760    'weight' => '0',
6761    'file' => 'modules/help/help.admin.inc',
6762  ))
6763  ->values(array(
6764    'path' => 'admin/help/dblog',
6765    'load_functions' => '',
6766    'to_arg_functions' => '',
6767    'access_callback' => 'user_access',
6768    'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
6769    'page_callback' => 'help_page',
6770    'page_arguments' => 'a:1:{i:0;i:2;}',
6771    'fit' => '7',
6772    'number_parts' => '3',
6773    'tab_parent' => '',
6774    'tab_root' => 'admin/help/dblog',
6775    'title' => 'dblog',
6776    'title_callback' => 't',
6777    'title_arguments' => '',
6778    'type' => '4',
6779    'block_callback' => '',
6780    'description' => '',
6781    'position' => '',
6782    'weight' => '0',
6783    'file' => 'modules/help/help.admin.inc',
6784  ))
6785  ->values(array(
6786    'path' => 'admin/help/filter',
6787    'load_functions' => '',
6788    'to_arg_functions' => '',
6789    'access_callback' => 'user_access',
6790    'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
6791    'page_callback' => 'help_page',
6792    'page_arguments' => 'a:1:{i:0;i:2;}',
6793    'fit' => '7',
6794    'number_parts' => '3',
6795    'tab_parent' => '',
6796    'tab_root' => 'admin/help/filter',
6797    'title' => 'filter',
6798    'title_callback' => 't',
6799    'title_arguments' => '',
6800    'type' => '4',
6801    'block_callback' => '',
6802    'description' => '',
6803    'position' => '',
6804    'weight' => '0',
6805    'file' => 'modules/help/help.admin.inc',
6806  ))
6807  ->values(array(
6808    'path' => 'admin/help/help',
6809    'load_functions' => '',
6810    'to_arg_functions' => '',
6811    'access_callback' => 'user_access',
6812    'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
6813    'page_callback' => 'help_page',
6814    'page_arguments' => 'a:1:{i:0;i:2;}',
6815    'fit' => '7',
6816    'number_parts' => '3',
6817    'tab_parent' => '',
6818    'tab_root' => 'admin/help/help',
6819    'title' => 'help',
6820    'title_callback' => 't',
6821    'title_arguments' => '',
6822    'type' => '4',
6823    'block_callback' => '',
6824    'description' => '',
6825    'position' => '',
6826    'weight' => '0',
6827    'file' => 'modules/help/help.admin.inc',
6828  ))
6829  ->values(array(
6830    'path' => 'admin/help/menu',
6831    'load_functions' => '',
6832    'to_arg_functions' => '',
6833    'access_callback' => 'user_access',
6834    'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
6835    'page_callback' => 'help_page',
6836    'page_arguments' => 'a:1:{i:0;i:2;}',
6837    'fit' => '7',
6838    'number_parts' => '3',
6839    'tab_parent' => '',
6840    'tab_root' => 'admin/help/menu',
6841    'title' => 'menu',
6842    'title_callback' => 't',
6843    'title_arguments' => '',
6844    'type' => '4',
6845    'block_callback' => '',
6846    'description' => '',
6847    'position' => '',
6848    'weight' => '0',
6849    'file' => 'modules/help/help.admin.inc',
6850  ))
6851  ->values(array(
6852    'path' => 'admin/help/node',
6853    'load_functions' => '',
6854    'to_arg_functions' => '',
6855    'access_callback' => 'user_access',
6856    'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
6857    'page_callback' => 'help_page',
6858    'page_arguments' => 'a:1:{i:0;i:2;}',
6859    'fit' => '7',
6860    'number_parts' => '3',
6861    'tab_parent' => '',
6862    'tab_root' => 'admin/help/node',
6863    'title' => 'node',
6864    'title_callback' => 't',
6865    'title_arguments' => '',
6866    'type' => '4',
6867    'block_callback' => '',
6868    'description' => '',
6869    'position' => '',
6870    'weight' => '0',
6871    'file' => 'modules/help/help.admin.inc',
6872  ))
6873  ->values(array(
6874    'path' => 'admin/help/path',
6875    'load_functions' => '',
6876    'to_arg_functions' => '',
6877    'access_callback' => 'user_access',
6878    'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
6879    'page_callback' => 'help_page',
6880    'page_arguments' => 'a:1:{i:0;i:2;}',
6881    'fit' => '7',
6882    'number_parts' => '3',
6883    'tab_parent' => '',
6884    'tab_root' => 'admin/help/path',
6885    'title' => 'path',
6886    'title_callback' => 't',
6887    'title_arguments' => '',
6888    'type' => '4',
6889    'block_callback' => '',
6890    'description' => '',
6891    'position' => '',
6892    'weight' => '0',
6893    'file' => 'modules/help/help.admin.inc',
6894  ))
6895  ->values(array(
6896    'path' => 'admin/help/poll',
6897    'load_functions' => '',
6898    'to_arg_functions' => '',
6899    'access_callback' => 'user_access',
6900    'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
6901    'page_callback' => 'help_page',
6902    'page_arguments' => 'a:1:{i:0;i:2;}',
6903    'fit' => '7',
6904    'number_parts' => '3',
6905    'tab_parent' => '',
6906    'tab_root' => 'admin/help/poll',
6907    'title' => 'poll',
6908    'title_callback' => 't',
6909    'title_arguments' => '',
6910    'type' => '4',
6911    'block_callback' => '',
6912    'description' => '',
6913    'position' => '',
6914    'weight' => '0',
6915    'file' => 'modules/help/help.admin.inc',
6916  ))
6917  ->values(array(
6918    'path' => 'admin/help/system',
6919    'load_functions' => '',
6920    'to_arg_functions' => '',
6921    'access_callback' => 'user_access',
6922    'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
6923    'page_callback' => 'help_page',
6924    'page_arguments' => 'a:1:{i:0;i:2;}',
6925    'fit' => '7',
6926    'number_parts' => '3',
6927    'tab_parent' => '',
6928    'tab_root' => 'admin/help/system',
6929    'title' => 'system',
6930    'title_callback' => 't',
6931    'title_arguments' => '',
6932    'type' => '4',
6933    'block_callback' => '',
6934    'description' => '',
6935    'position' => '',
6936    'weight' => '0',
6937    'file' => 'modules/help/help.admin.inc',
6938  ))
6939  ->values(array(
6940    'path' => 'admin/help/taxonomy',
6941    'load_functions' => '',
6942    'to_arg_functions' => '',
6943    'access_callback' => 'user_access',
6944    'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
6945    'page_callback' => 'help_page',
6946    'page_arguments' => 'a:1:{i:0;i:2;}',
6947    'fit' => '7',
6948    'number_parts' => '3',
6949    'tab_parent' => '',
6950    'tab_root' => 'admin/help/taxonomy',
6951    'title' => 'taxonomy',
6952    'title_callback' => 't',
6953    'title_arguments' => '',
6954    'type' => '4',
6955    'block_callback' => '',
6956    'description' => '',
6957    'position' => '',
6958    'weight' => '0',
6959    'file' => 'modules/help/help.admin.inc',
6960  ))
6961  ->values(array(
6962    'path' => 'admin/help/update',
6963    'load_functions' => '',
6964    'to_arg_functions' => '',
6965    'access_callback' => 'user_access',
6966    'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
6967    'page_callback' => 'help_page',
6968    'page_arguments' => 'a:1:{i:0;i:2;}',
6969    'fit' => '7',
6970    'number_parts' => '3',
6971    'tab_parent' => '',
6972    'tab_root' => 'admin/help/update',
6973    'title' => 'update',
6974    'title_callback' => 't',
6975    'title_arguments' => '',
6976    'type' => '4',
6977    'block_callback' => '',
6978    'description' => '',
6979    'position' => '',
6980    'weight' => '0',
6981    'file' => 'modules/help/help.admin.inc',
6982  ))
6983  ->values(array(
6984    'path' => 'admin/help/user',
6985    'load_functions' => '',
6986    'to_arg_functions' => '',
6987    'access_callback' => 'user_access',
6988    'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
6989    'page_callback' => 'help_page',
6990    'page_arguments' => 'a:1:{i:0;i:2;}',
6991    'fit' => '7',
6992    'number_parts' => '3',
6993    'tab_parent' => '',
6994    'tab_root' => 'admin/help/user',
6995    'title' => 'user',
6996    'title_callback' => 't',
6997    'title_arguments' => '',
6998    'type' => '4',
6999    'block_callback' => '',
7000    'description' => '',
7001    'position' => '',
7002    'weight' => '0',
7003    'file' => 'modules/help/help.admin.inc',
7004  ))
7005  ->values(array(
7006    'path' => 'admin/reports',
7007    'load_functions' => '',
7008    'to_arg_functions' => '',
7009    'access_callback' => 'user_access',
7010    'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
7011    'page_callback' => 'system_admin_menu_block_page',
7012    'page_arguments' => 'a:0:{}',
7013    'fit' => '3',
7014    'number_parts' => '2',
7015    'tab_parent' => '',
7016    'tab_root' => 'admin/reports',
7017    'title' => 'Reports',
7018    'title_callback' => 't',
7019    'title_arguments' => '',
7020    'type' => '6',
7021    'block_callback' => '',
7022    'description' => 'View reports from system logs and other status information.',
7023    'position' => 'left',
7024    'weight' => '5',
7025    'file' => 'modules/system/system.admin.inc',
7026  ))
7027  ->values(array(
7028    'path' => 'admin/reports/access-denied',
7029    'load_functions' => '',
7030    'to_arg_functions' => '',
7031    'access_callback' => 'user_access',
7032    'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
7033    'page_callback' => 'dblog_top',
7034    'page_arguments' => 'a:1:{i:0;s:13:"access denied";}',
7035    'fit' => '7',
7036    'number_parts' => '3',
7037    'tab_parent' => '',
7038    'tab_root' => 'admin/reports/access-denied',
7039    'title' => "Top 'access denied' errors",
7040    'title_callback' => 't',
7041    'title_arguments' => '',
7042    'type' => '6',
7043    'block_callback' => '',
7044    'description' => "View 'access denied' errors (403s).",
7045    'position' => '',
7046    'weight' => '0',
7047    'file' => 'modules/dblog/dblog.admin.inc',
7048  ))
7049  ->values(array(
7050    'path' => 'admin/reports/dblog',
7051    'load_functions' => '',
7052    'to_arg_functions' => '',
7053    'access_callback' => 'user_access',
7054    'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
7055    'page_callback' => 'dblog_overview',
7056    'page_arguments' => 'a:0:{}',
7057    'fit' => '7',
7058    'number_parts' => '3',
7059    'tab_parent' => '',
7060    'tab_root' => 'admin/reports/dblog',
7061    'title' => 'Recent log entries',
7062    'title_callback' => 't',
7063    'title_arguments' => '',
7064    'type' => '6',
7065    'block_callback' => '',
7066    'description' => 'View events that have recently been logged.',
7067    'position' => '',
7068    'weight' => '-1',
7069    'file' => 'modules/dblog/dblog.admin.inc',
7070  ))
7071  ->values(array(
7072    'path' => 'admin/reports/event/%',
7073    'load_functions' => 'a:1:{i:3;N;}',
7074    'to_arg_functions' => '',
7075    'access_callback' => 'user_access',
7076    'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
7077    'page_callback' => 'dblog_event',
7078    'page_arguments' => 'a:1:{i:0;i:3;}',
7079    'fit' => '14',
7080    'number_parts' => '4',
7081    'tab_parent' => '',
7082    'tab_root' => 'admin/reports/event/%',
7083    'title' => 'Details',
7084    'title_callback' => 't',
7085    'title_arguments' => '',
7086    'type' => '4',
7087    'block_callback' => '',
7088    'description' => '',
7089    'position' => '',
7090    'weight' => '0',
7091    'file' => 'modules/dblog/dblog.admin.inc',
7092  ))
7093  ->values(array(
7094    'path' => 'admin/reports/page-not-found',
7095    'load_functions' => '',
7096    'to_arg_functions' => '',
7097    'access_callback' => 'user_access',
7098    'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
7099    'page_callback' => 'dblog_top',
7100    'page_arguments' => 'a:1:{i:0;s:14:"page not found";}',
7101    'fit' => '7',
7102    'number_parts' => '3',
7103    'tab_parent' => '',
7104    'tab_root' => 'admin/reports/page-not-found',
7105    'title' => "Top 'page not found' errors",
7106    'title_callback' => 't',
7107    'title_arguments' => '',
7108    'type' => '6',
7109    'block_callback' => '',
7110    'description' => "View 'page not found' errors (404s).",
7111    'position' => '',
7112    'weight' => '0',
7113    'file' => 'modules/dblog/dblog.admin.inc',
7114  ))
7115  ->values(array(
7116    'path' => 'admin/reports/status',
7117    'load_functions' => '',
7118    'to_arg_functions' => '',
7119    'access_callback' => 'user_access',
7120    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
7121    'page_callback' => 'system_status',
7122    'page_arguments' => 'a:0:{}',
7123    'fit' => '7',
7124    'number_parts' => '3',
7125    'tab_parent' => '',
7126    'tab_root' => 'admin/reports/status',
7127    'title' => 'Status report',
7128    'title_callback' => 't',
7129    'title_arguments' => '',
7130    'type' => '6',
7131    'block_callback' => '',
7132    'description' => "Get a status report about your site's operation and any detected problems.",
7133    'position' => '',
7134    'weight' => '10',
7135    'file' => 'modules/system/system.admin.inc',
7136  ))
7137  ->values(array(
7138    'path' => 'admin/reports/status/php',
7139    'load_functions' => '',
7140    'to_arg_functions' => '',
7141    'access_callback' => 'user_access',
7142    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
7143    'page_callback' => 'system_php',
7144    'page_arguments' => 'a:0:{}',
7145    'fit' => '15',
7146    'number_parts' => '4',
7147    'tab_parent' => '',
7148    'tab_root' => 'admin/reports/status/php',
7149    'title' => 'PHP',
7150    'title_callback' => 't',
7151    'title_arguments' => '',
7152    'type' => '4',
7153    'block_callback' => '',
7154    'description' => '',
7155    'position' => '',
7156    'weight' => '0',
7157    'file' => 'modules/system/system.admin.inc',
7158  ))
7159  ->values(array(
7160    'path' => 'admin/reports/status/run-cron',
7161    'load_functions' => '',
7162    'to_arg_functions' => '',
7163    'access_callback' => 'user_access',
7164    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
7165    'page_callback' => 'system_run_cron',
7166    'page_arguments' => 'a:0:{}',
7167    'fit' => '15',
7168    'number_parts' => '4',
7169    'tab_parent' => '',
7170    'tab_root' => 'admin/reports/status/run-cron',
7171    'title' => 'Run cron',
7172    'title_callback' => 't',
7173    'title_arguments' => '',
7174    'type' => '4',
7175    'block_callback' => '',
7176    'description' => '',
7177    'position' => '',
7178    'weight' => '0',
7179    'file' => 'modules/system/system.admin.inc',
7180  ))
7181  ->values(array(
7182    'path' => 'admin/reports/status/sql',
7183    'load_functions' => '',
7184    'to_arg_functions' => '',
7185    'access_callback' => 'user_access',
7186    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
7187    'page_callback' => 'system_sql',
7188    'page_arguments' => 'a:0:{}',
7189    'fit' => '15',
7190    'number_parts' => '4',
7191    'tab_parent' => '',
7192    'tab_root' => 'admin/reports/status/sql',
7193    'title' => 'SQL',
7194    'title_callback' => 't',
7195    'title_arguments' => '',
7196    'type' => '4',
7197    'block_callback' => '',
7198    'description' => '',
7199    'position' => '',
7200    'weight' => '0',
7201    'file' => 'modules/system/system.admin.inc',
7202  ))
7203  ->values(array(
7204    'path' => 'admin/reports/updates',
7205    'load_functions' => '',
7206    'to_arg_functions' => '',
7207    'access_callback' => 'user_access',
7208    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
7209    'page_callback' => 'update_status',
7210    'page_arguments' => 'a:0:{}',
7211    'fit' => '7',
7212    'number_parts' => '3',
7213    'tab_parent' => '',
7214    'tab_root' => 'admin/reports/updates',
7215    'title' => 'Available updates',
7216    'title_callback' => 't',
7217    'title_arguments' => '',
7218    'type' => '6',
7219    'block_callback' => '',
7220    'description' => 'Get a status report about available updates for your installed modules and themes.',
7221    'position' => '',
7222    'weight' => '10',
7223    'file' => 'modules/update/update.report.inc',
7224  ))
7225  ->values(array(
7226    'path' => 'admin/reports/updates/check',
7227    'load_functions' => '',
7228    'to_arg_functions' => '',
7229    'access_callback' => 'user_access',
7230    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
7231    'page_callback' => 'update_manual_status',
7232    'page_arguments' => 'a:0:{}',
7233    'fit' => '15',
7234    'number_parts' => '4',
7235    'tab_parent' => '',
7236    'tab_root' => 'admin/reports/updates/check',
7237    'title' => 'Manual update check',
7238    'title_callback' => 't',
7239    'title_arguments' => '',
7240    'type' => '4',
7241    'block_callback' => '',
7242    'description' => '',
7243    'position' => '',
7244    'weight' => '0',
7245    'file' => 'modules/update/update.fetch.inc',
7246  ))
7247  ->values(array(
7248    'path' => 'admin/reports/updates/list',
7249    'load_functions' => '',
7250    'to_arg_functions' => '',
7251    'access_callback' => 'user_access',
7252    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
7253    'page_callback' => 'update_status',
7254    'page_arguments' => 'a:0:{}',
7255    'fit' => '15',
7256    'number_parts' => '4',
7257    'tab_parent' => 'admin/reports/updates',
7258    'tab_root' => 'admin/reports/updates',
7259    'title' => 'List',
7260    'title_callback' => 't',
7261    'title_arguments' => '',
7262    'type' => '136',
7263    'block_callback' => '',
7264    'description' => '',
7265    'position' => '',
7266    'weight' => '0',
7267    'file' => 'modules/update/update.report.inc',
7268  ))
7269  ->values(array(
7270    'path' => 'admin/reports/updates/settings',
7271    'load_functions' => '',
7272    'to_arg_functions' => '',
7273    'access_callback' => 'user_access',
7274    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
7275    'page_callback' => 'drupal_get_form',
7276    'page_arguments' => 'a:1:{i:0;s:15:"update_settings";}',
7277    'fit' => '15',
7278    'number_parts' => '4',
7279    'tab_parent' => 'admin/reports/updates',
7280    'tab_root' => 'admin/reports/updates',
7281    'title' => 'Settings',
7282    'title_callback' => 't',
7283    'title_arguments' => '',
7284    'type' => '128',
7285    'block_callback' => '',
7286    'description' => '',
7287    'position' => '',
7288    'weight' => '0',
7289    'file' => 'modules/update/update.settings.inc',
7290  ))
7291  ->values(array(
7292    'path' => 'admin/settings',
7293    'load_functions' => '',
7294    'to_arg_functions' => '',
7295    'access_callback' => 'user_access',
7296    'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
7297    'page_callback' => 'system_settings_overview',
7298    'page_arguments' => 'a:0:{}',
7299    'fit' => '3',
7300    'number_parts' => '2',
7301    'tab_parent' => '',
7302    'tab_root' => 'admin/settings',
7303    'title' => 'Site configuration',
7304    'title_callback' => 't',
7305    'title_arguments' => '',
7306    'type' => '6',
7307    'block_callback' => '',
7308    'description' => 'Adjust basic site configuration options.',
7309    'position' => 'right',
7310    'weight' => '-5',
7311    'file' => 'modules/system/system.admin.inc',
7312  ))
7313  ->values(array(
7314    'path' => 'admin/settings/actions',
7315    'load_functions' => '',
7316    'to_arg_functions' => '',
7317    'access_callback' => 'user_access',
7318    'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
7319    'page_callback' => 'system_actions_manage',
7320    'page_arguments' => 'a:0:{}',
7321    'fit' => '7',
7322    'number_parts' => '3',
7323    'tab_parent' => '',
7324    'tab_root' => 'admin/settings/actions',
7325    'title' => 'Actions',
7326    'title_callback' => 't',
7327    'title_arguments' => '',
7328    'type' => '6',
7329    'block_callback' => '',
7330    'description' => 'Manage the actions defined for your site.',
7331    'position' => '',
7332    'weight' => '0',
7333    'file' => '',
7334  ))
7335  ->values(array(
7336    'path' => 'admin/settings/actions/configure',
7337    'load_functions' => '',
7338    'to_arg_functions' => '',
7339    'access_callback' => 'user_access',
7340    'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
7341    'page_callback' => 'drupal_get_form',
7342    'page_arguments' => 'a:1:{i:0;s:24:"system_actions_configure";}',
7343    'fit' => '15',
7344    'number_parts' => '4',
7345    'tab_parent' => '',
7346    'tab_root' => 'admin/settings/actions/configure',
7347    'title' => 'Configure an advanced action',
7348    'title_callback' => 't',
7349    'title_arguments' => '',
7350    'type' => '4',
7351    'block_callback' => '',
7352    'description' => '',
7353    'position' => '',
7354    'weight' => '0',
7355    'file' => '',
7356  ))
7357  ->values(array(
7358    'path' => 'admin/settings/actions/delete/%',
7359    'load_functions' => 'a:1:{i:4;s:12:"actions_load";}',
7360    'to_arg_functions' => '',
7361    'access_callback' => 'user_access',
7362    'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
7363    'page_callback' => 'drupal_get_form',
7364    'page_arguments' => 'a:2:{i:0;s:26:"system_actions_delete_form";i:1;i:4;}',
7365    'fit' => '30',
7366    'number_parts' => '5',
7367    'tab_parent' => '',
7368    'tab_root' => 'admin/settings/actions/delete/%',
7369    'title' => 'Delete action',
7370    'title_callback' => 't',
7371    'title_arguments' => '',
7372    'type' => '4',
7373    'block_callback' => '',
7374    'description' => 'Delete an action.',
7375    'position' => '',
7376    'weight' => '0',
7377    'file' => '',
7378  ))
7379  ->values(array(
7380    'path' => 'admin/settings/actions/manage',
7381    'load_functions' => '',
7382    'to_arg_functions' => '',
7383    'access_callback' => 'user_access',
7384    'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
7385    'page_callback' => 'system_actions_manage',
7386    'page_arguments' => 'a:0:{}',
7387    'fit' => '15',
7388    'number_parts' => '4',
7389    'tab_parent' => 'admin/settings/actions',
7390    'tab_root' => 'admin/settings/actions',
7391    'title' => 'Manage actions',
7392    'title_callback' => 't',
7393    'title_arguments' => '',
7394    'type' => '136',
7395    'block_callback' => '',
7396    'description' => 'Manage the actions defined for your site.',
7397    'position' => '',
7398    'weight' => '-2',
7399    'file' => '',
7400  ))
7401  ->values(array(
7402    'path' => 'admin/settings/actions/orphan',
7403    'load_functions' => '',
7404    'to_arg_functions' => '',
7405    'access_callback' => 'user_access',
7406    'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
7407    'page_callback' => 'system_actions_remove_orphans',
7408    'page_arguments' => 'a:0:{}',
7409    'fit' => '15',
7410    'number_parts' => '4',
7411    'tab_parent' => '',
7412    'tab_root' => 'admin/settings/actions/orphan',
7413    'title' => 'Remove orphans',
7414    'title_callback' => 't',
7415    'title_arguments' => '',
7416    'type' => '4',
7417    'block_callback' => '',
7418    'description' => '',
7419    'position' => '',
7420    'weight' => '0',
7421    'file' => '',
7422  ))
7423  ->values(array(
7424    'path' => 'admin/settings/admin',
7425    'load_functions' => '',
7426    'to_arg_functions' => '',
7427    'access_callback' => 'user_access',
7428    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
7429    'page_callback' => 'drupal_get_form',
7430    'page_arguments' => 'a:1:{i:0;s:27:"system_admin_theme_settings";}',
7431    'fit' => '7',
7432    'number_parts' => '3',
7433    'tab_parent' => '',
7434    'tab_root' => 'admin/settings/admin',
7435    'title' => 'Administration theme',
7436    'title_callback' => 't',
7437    'title_arguments' => '',
7438    'type' => '6',
7439    'block_callback' => 'system_admin_theme_settings',
7440    'description' => 'Settings for how your administrative pages should look.',
7441    'position' => 'left',
7442    'weight' => '0',
7443    'file' => 'modules/system/system.admin.inc',
7444  ))
7445  ->values(array(
7446    'path' => 'admin/settings/clean-urls',
7447    'load_functions' => '',
7448    'to_arg_functions' => '',
7449    'access_callback' => 'user_access',
7450    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
7451    'page_callback' => 'drupal_get_form',
7452    'page_arguments' => 'a:1:{i:0;s:25:"system_clean_url_settings";}',
7453    'fit' => '7',
7454    'number_parts' => '3',
7455    'tab_parent' => '',
7456    'tab_root' => 'admin/settings/clean-urls',
7457    'title' => 'Clean URLs',
7458    'title_callback' => 't',
7459    'title_arguments' => '',
7460    'type' => '6',
7461    'block_callback' => '',
7462    'description' => 'Enable or disable clean URLs for your site.',
7463    'position' => '',
7464    'weight' => '0',
7465    'file' => 'modules/system/system.admin.inc',
7466  ))
7467  ->values(array(
7468    'path' => 'admin/settings/clean-urls/check',
7469    'load_functions' => '',
7470    'to_arg_functions' => '',
7471    'access_callback' => '1',
7472    'access_arguments' => 'a:0:{}',
7473    'page_callback' => 'drupal_json',
7474    'page_arguments' => 'a:1:{i:0;a:1:{s:6:"status";b:1;}}',
7475    'fit' => '15',
7476    'number_parts' => '4',
7477    'tab_parent' => '',
7478    'tab_root' => 'admin/settings/clean-urls/check',
7479    'title' => 'Clean URL check',
7480    'title_callback' => 't',
7481    'title_arguments' => '',
7482    'type' => '4',
7483    'block_callback' => '',
7484    'description' => '',
7485    'position' => '',
7486    'weight' => '0',
7487    'file' => '',
7488  ))
7489  ->values(array(
7490    'path' => 'admin/settings/date-time',
7491    'load_functions' => '',
7492    'to_arg_functions' => '',
7493    'access_callback' => 'user_access',
7494    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
7495    'page_callback' => 'drupal_get_form',
7496    'page_arguments' => 'a:1:{i:0;s:25:"system_date_time_settings";}',
7497    'fit' => '7',
7498    'number_parts' => '3',
7499    'tab_parent' => '',
7500    'tab_root' => 'admin/settings/date-time',
7501    'title' => 'Date and time',
7502    'title_callback' => 't',
7503    'title_arguments' => '',
7504    'type' => '6',
7505    'block_callback' => '',
7506    'description' => "Settings for how Drupal displays date and time, as well as the system's default timezone.",
7507    'position' => '',
7508    'weight' => '0',
7509    'file' => 'modules/system/system.admin.inc',
7510  ))
7511  ->values(array(
7512    'path' => 'admin/settings/date-time/lookup',
7513    'load_functions' => '',
7514    'to_arg_functions' => '',
7515    'access_callback' => 'user_access',
7516    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
7517    'page_callback' => 'system_date_time_lookup',
7518    'page_arguments' => 'a:0:{}',
7519    'fit' => '15',
7520    'number_parts' => '4',
7521    'tab_parent' => '',
7522    'tab_root' => 'admin/settings/date-time/lookup',
7523    'title' => 'Date and time lookup',
7524    'title_callback' => 't',
7525    'title_arguments' => '',
7526    'type' => '4',
7527    'block_callback' => '',
7528    'description' => '',
7529    'position' => '',
7530    'weight' => '0',
7531    'file' => 'modules/system/system.admin.inc',
7532  ))
7533  ->values(array(
7534    'path' => 'admin/settings/error-reporting',
7535    'load_functions' => '',
7536    'to_arg_functions' => '',
7537    'access_callback' => 'user_access',
7538    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
7539    'page_callback' => 'drupal_get_form',
7540    'page_arguments' => 'a:1:{i:0;s:31:"system_error_reporting_settings";}',
7541    'fit' => '7',
7542    'number_parts' => '3',
7543    'tab_parent' => '',
7544    'tab_root' => 'admin/settings/error-reporting',
7545    'title' => 'Error reporting',
7546    'title_callback' => 't',
7547    'title_arguments' => '',
7548    'type' => '6',
7549    'block_callback' => '',
7550    'description' => 'Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.',
7551    'position' => '',
7552    'weight' => '0',
7553    'file' => 'modules/system/system.admin.inc',
7554  ))
7555  ->values(array(
7556    'path' => 'admin/settings/file-system',
7557    'load_functions' => '',
7558    'to_arg_functions' => '',
7559    'access_callback' => 'user_access',
7560    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
7561    'page_callback' => 'drupal_get_form',
7562    'page_arguments' => 'a:1:{i:0;s:27:"system_file_system_settings";}',
7563    'fit' => '7',
7564    'number_parts' => '3',
7565    'tab_parent' => '',
7566    'tab_root' => 'admin/settings/file-system',
7567    'title' => 'File system',
7568    'title_callback' => 't',
7569    'title_arguments' => '',
7570    'type' => '6',
7571    'block_callback' => '',
7572    'description' => 'Tell Drupal where to store uploaded files and how they are accessed.',
7573    'position' => '',
7574    'weight' => '0',
7575    'file' => 'modules/system/system.admin.inc',
7576  ))
7577  ->values(array(
7578    'path' => 'admin/settings/filters',
7579    'load_functions' => '',
7580    'to_arg_functions' => '',
7581    'access_callback' => 'user_access',
7582    'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
7583    'page_callback' => 'drupal_get_form',
7584    'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}',
7585    'fit' => '7',
7586    'number_parts' => '3',
7587    'tab_parent' => '',
7588    'tab_root' => 'admin/settings/filters',
7589    'title' => 'Input formats',
7590    'title_callback' => 't',
7591    'title_arguments' => '',
7592    'type' => '6',
7593    'block_callback' => '',
7594    'description' => 'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.',
7595    'position' => '',
7596    'weight' => '0',
7597    'file' => 'modules/filter/filter.admin.inc',
7598  ))
7599  ->values(array(
7600    'path' => 'admin/settings/filters/%',
7601    'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
7602    'to_arg_functions' => '',
7603    'access_callback' => 'user_access',
7604    'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
7605    'page_callback' => 'filter_admin_format_page',
7606    'page_arguments' => 'a:1:{i:0;i:3;}',
7607    'fit' => '14',
7608    'number_parts' => '4',
7609    'tab_parent' => '',
7610    'tab_root' => 'admin/settings/filters/%',
7611    'title' => '',
7612    'title_callback' => 'filter_admin_format_title',
7613    'title_arguments' => 'a:1:{i:0;i:3;}',
7614    'type' => '4',
7615    'block_callback' => '',
7616    'description' => '',
7617    'position' => '',
7618    'weight' => '0',
7619    'file' => 'modules/filter/filter.admin.inc',
7620  ))
7621  ->values(array(
7622    'path' => 'admin/settings/filters/%/configure',
7623    'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
7624    'to_arg_functions' => '',
7625    'access_callback' => 'user_access',
7626    'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
7627    'page_callback' => 'filter_admin_configure_page',
7628    'page_arguments' => 'a:1:{i:0;i:3;}',
7629    'fit' => '29',
7630    'number_parts' => '5',
7631    'tab_parent' => 'admin/settings/filters/%',
7632    'tab_root' => 'admin/settings/filters/%',
7633    'title' => 'Configure',
7634    'title_callback' => 't',
7635    'title_arguments' => '',
7636    'type' => '128',
7637    'block_callback' => '',
7638    'description' => '',
7639    'position' => '',
7640    'weight' => '1',
7641    'file' => 'modules/filter/filter.admin.inc',
7642  ))
7643  ->values(array(
7644    'path' => 'admin/settings/filters/%/edit',
7645    'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
7646    'to_arg_functions' => '',
7647    'access_callback' => 'user_access',
7648    'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
7649    'page_callback' => 'filter_admin_format_page',
7650    'page_arguments' => 'a:1:{i:0;i:3;}',
7651    'fit' => '29',
7652    'number_parts' => '5',
7653    'tab_parent' => 'admin/settings/filters/%',
7654    'tab_root' => 'admin/settings/filters/%',
7655    'title' => 'Edit',
7656    'title_callback' => 't',
7657    'title_arguments' => '',
7658    'type' => '136',
7659    'block_callback' => '',
7660    'description' => '',
7661    'position' => '',
7662    'weight' => '0',
7663    'file' => 'modules/filter/filter.admin.inc',
7664  ))
7665  ->values(array(
7666    'path' => 'admin/settings/filters/%/order',
7667    'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
7668    'to_arg_functions' => '',
7669    'access_callback' => 'user_access',
7670    'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
7671    'page_callback' => 'filter_admin_order_page',
7672    'page_arguments' => 'a:1:{i:0;i:3;}',
7673    'fit' => '29',
7674    'number_parts' => '5',
7675    'tab_parent' => 'admin/settings/filters/%',
7676    'tab_root' => 'admin/settings/filters/%',
7677    'title' => 'Rearrange',
7678    'title_callback' => 't',
7679    'title_arguments' => '',
7680    'type' => '128',
7681    'block_callback' => '',
7682    'description' => '',
7683    'position' => '',
7684    'weight' => '2',
7685    'file' => 'modules/filter/filter.admin.inc',
7686  ))
7687  ->values(array(
7688    'path' => 'admin/settings/filters/add',
7689    'load_functions' => '',
7690    'to_arg_functions' => '',
7691    'access_callback' => 'user_access',
7692    'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
7693    'page_callback' => 'filter_admin_format_page',
7694    'page_arguments' => 'a:0:{}',
7695    'fit' => '15',
7696    'number_parts' => '4',
7697    'tab_parent' => 'admin/settings/filters',
7698    'tab_root' => 'admin/settings/filters',
7699    'title' => 'Add input format',
7700    'title_callback' => 't',
7701    'title_arguments' => '',
7702    'type' => '128',
7703    'block_callback' => '',
7704    'description' => '',
7705    'position' => '',
7706    'weight' => '1',
7707    'file' => 'modules/filter/filter.admin.inc',
7708  ))
7709  ->values(array(
7710    'path' => 'admin/settings/filters/delete',
7711    'load_functions' => '',
7712    'to_arg_functions' => '',
7713    'access_callback' => 'user_access',
7714    'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
7715    'page_callback' => 'drupal_get_form',
7716    'page_arguments' => 'a:1:{i:0;s:19:"filter_admin_delete";}',
7717    'fit' => '15',
7718    'number_parts' => '4',
7719    'tab_parent' => '',
7720    'tab_root' => 'admin/settings/filters/delete',
7721    'title' => 'Delete input format',
7722    'title_callback' => 't',
7723    'title_arguments' => '',
7724    'type' => '4',
7725    'block_callback' => '',
7726    'description' => '',
7727    'position' => '',
7728    'weight' => '0',
7729    'file' => 'modules/filter/filter.admin.inc',
7730  ))
7731  ->values(array(
7732    'path' => 'admin/settings/filters/list',
7733    'load_functions' => '',
7734    'to_arg_functions' => '',
7735    'access_callback' => 'user_access',
7736    'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
7737    'page_callback' => 'drupal_get_form',
7738    'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}',
7739    'fit' => '15',
7740    'number_parts' => '4',
7741    'tab_parent' => 'admin/settings/filters',
7742    'tab_root' => 'admin/settings/filters',
7743    'title' => 'List',
7744    'title_callback' => 't',
7745    'title_arguments' => '',
7746    'type' => '136',
7747    'block_callback' => '',
7748    'description' => '',
7749    'position' => '',
7750    'weight' => '0',
7751    'file' => 'modules/filter/filter.admin.inc',
7752  ))
7753  ->values(array(
7754    'path' => 'admin/settings/image-toolkit',
7755    'load_functions' => '',
7756    'to_arg_functions' => '',
7757    'access_callback' => 'user_access',
7758    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
7759    'page_callback' => 'drupal_get_form',
7760    'page_arguments' => 'a:1:{i:0;s:29:"system_image_toolkit_settings";}',
7761    'fit' => '7',
7762    'number_parts' => '3',
7763    'tab_parent' => '',
7764    'tab_root' => 'admin/settings/image-toolkit',
7765    'title' => 'Image toolkit',
7766    'title_callback' => 't',
7767    'title_arguments' => '',
7768    'type' => '6',
7769    'block_callback' => '',
7770    'description' => 'Choose which image toolkit to use if you have installed optional toolkits.',
7771    'position' => '',
7772    'weight' => '0',
7773    'file' => 'modules/system/system.admin.inc',
7774  ))
7775  ->values(array(
7776    'path' => 'admin/settings/logging',
7777    'load_functions' => '',
7778    'to_arg_functions' => '',
7779    'access_callback' => 'user_access',
7780    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
7781    'page_callback' => 'system_logging_overview',
7782    'page_arguments' => 'a:0:{}',
7783    'fit' => '7',
7784    'number_parts' => '3',
7785    'tab_parent' => '',
7786    'tab_root' => 'admin/settings/logging',
7787    'title' => 'Logging and alerts',
7788    'title_callback' => 't',
7789    'title_arguments' => '',
7790    'type' => '6',
7791    'block_callback' => '',
7792    'description' => "Settings for logging and alerts modules. Various modules can route Drupal's system events to different destination, such as syslog, database, email, ...etc.",
7793    'position' => '',
7794    'weight' => '0',
7795    'file' => 'modules/system/system.admin.inc',
7796  ))
7797  ->values(array(
7798    'path' => 'admin/settings/logging/dblog',
7799    'load_functions' => '',
7800    'to_arg_functions' => '',
7801    'access_callback' => 'user_access',
7802    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
7803    'page_callback' => 'drupal_get_form',
7804    'page_arguments' => 'a:1:{i:0;s:20:"dblog_admin_settings";}',
7805    'fit' => '15',
7806    'number_parts' => '4',
7807    'tab_parent' => '',
7808    'tab_root' => 'admin/settings/logging/dblog',
7809    'title' => 'Database logging',
7810    'title_callback' => 't',
7811    'title_arguments' => '',
7812    'type' => '6',
7813    'block_callback' => '',
7814    'description' => 'Settings for logging to the Drupal database logs. This is the most common method for small to medium sites on shared hosting. The logs are viewable from the admin pages.',
7815    'position' => '',
7816    'weight' => '0',
7817    'file' => 'modules/dblog/dblog.admin.inc',
7818  ))
7819  ->values(array(
7820    'path' => 'admin/settings/performance',
7821    'load_functions' => '',
7822    'to_arg_functions' => '',
7823    'access_callback' => 'user_access',
7824    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
7825    'page_callback' => 'drupal_get_form',
7826    'page_arguments' => 'a:1:{i:0;s:27:"system_performance_settings";}',
7827    'fit' => '7',
7828    'number_parts' => '3',
7829    'tab_parent' => '',
7830    'tab_root' => 'admin/settings/performance',
7831    'title' => 'Performance',
7832    'title_callback' => 't',
7833    'title_arguments' => '',
7834    'type' => '6',
7835    'block_callback' => '',
7836    'description' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.',
7837    'position' => '',
7838    'weight' => '0',
7839    'file' => 'modules/system/system.admin.inc',
7840  ))
7841  ->values(array(
7842    'path' => 'admin/settings/site-information',
7843    'load_functions' => '',
7844    'to_arg_functions' => '',
7845    'access_callback' => 'user_access',
7846    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
7847    'page_callback' => 'drupal_get_form',
7848    'page_arguments' => 'a:1:{i:0;s:32:"system_site_information_settings";}',
7849    'fit' => '7',
7850    'number_parts' => '3',
7851    'tab_parent' => '',
7852    'tab_root' => 'admin/settings/site-information',
7853    'title' => 'Site information',
7854    'title_callback' => 't',
7855    'title_arguments' => '',
7856    'type' => '6',
7857    'block_callback' => '',
7858    'description' => 'Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.',
7859    'position' => '',
7860    'weight' => '0',
7861    'file' => 'modules/system/system.admin.inc',
7862  ))
7863  ->values(array(
7864    'path' => 'admin/settings/site-maintenance',
7865    'load_functions' => '',
7866    'to_arg_functions' => '',
7867    'access_callback' => 'user_access',
7868    'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
7869    'page_callback' => 'drupal_get_form',
7870    'page_arguments' => 'a:1:{i:0;s:32:"system_site_maintenance_settings";}',
7871    'fit' => '7',
7872    'number_parts' => '3',
7873    'tab_parent' => '',
7874    'tab_root' => 'admin/settings/site-maintenance',
7875    'title' => 'Site maintenance',
7876    'title_callback' => 't',
7877    'title_arguments' => '',
7878    'type' => '6',
7879    'block_callback' => '',
7880    'description' => 'Take the site off-line for maintenance or bring it back online.',
7881    'position' => '',
7882    'weight' => '0',
7883    'file' => 'modules/system/system.admin.inc',
7884  ))
7885  ->values(array(
7886    'path' => 'admin/user',
7887    'load_functions' => '',
7888    'to_arg_functions' => '',
7889    'access_callback' => 'user_access',
7890    'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
7891    'page_callback' => 'system_admin_menu_block_page',
7892    'page_arguments' => 'a:0:{}',
7893    'fit' => '3',
7894    'number_parts' => '2',
7895    'tab_parent' => '',
7896    'tab_root' => 'admin/user',
7897    'title' => 'User management',
7898    'title_callback' => 't',
7899    'title_arguments' => '',
7900    'type' => '6',
7901    'block_callback' => '',
7902    'description' => "Manage your site's users, groups and access to site features.",
7903    'position' => 'left',
7904    'weight' => '0',
7905    'file' => 'modules/system/system.admin.inc',
7906  ))
7907  ->values(array(
7908    'path' => 'admin/user/permissions',
7909    'load_functions' => '',
7910    'to_arg_functions' => '',
7911    'access_callback' => 'user_access',
7912    'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
7913    'page_callback' => 'drupal_get_form',
7914    'page_arguments' => 'a:1:{i:0;s:15:"user_admin_perm";}',
7915    'fit' => '7',
7916    'number_parts' => '3',
7917    'tab_parent' => '',
7918    'tab_root' => 'admin/user/permissions',
7919    'title' => 'Permissions',
7920    'title_callback' => 't',
7921    'title_arguments' => '',
7922    'type' => '6',
7923    'block_callback' => '',
7924    'description' => 'Determine access to features by selecting permissions for roles.',
7925    'position' => '',
7926    'weight' => '0',
7927    'file' => 'modules/user/user.admin.inc',
7928  ))
7929  ->values(array(
7930    'path' => 'admin/user/roles',
7931    'load_functions' => '',
7932    'to_arg_functions' => '',
7933    'access_callback' => 'user_access',
7934    'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
7935    'page_callback' => 'drupal_get_form',
7936    'page_arguments' => 'a:1:{i:0;s:19:"user_admin_new_role";}',
7937    'fit' => '7',
7938    'number_parts' => '3',
7939    'tab_parent' => '',
7940    'tab_root' => 'admin/user/roles',
7941    'title' => 'Roles',
7942    'title_callback' => 't',
7943    'title_arguments' => '',
7944    'type' => '6',
7945    'block_callback' => '',
7946    'description' => 'List, edit, or add user roles.',
7947    'position' => '',
7948    'weight' => '0',
7949    'file' => 'modules/user/user.admin.inc',
7950  ))
7951  ->values(array(
7952    'path' => 'admin/user/roles/edit',
7953    'load_functions' => '',
7954    'to_arg_functions' => '',
7955    'access_callback' => 'user_access',
7956    'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
7957    'page_callback' => 'drupal_get_form',
7958    'page_arguments' => 'a:1:{i:0;s:15:"user_admin_role";}',
7959    'fit' => '15',
7960    'number_parts' => '4',
7961    'tab_parent' => '',
7962    'tab_root' => 'admin/user/roles/edit',
7963    'title' => 'Edit role',
7964    'title_callback' => 't',
7965    'title_arguments' => '',
7966    'type' => '4',
7967    'block_callback' => '',
7968    'description' => '',
7969    'position' => '',
7970    'weight' => '0',
7971    'file' => 'modules/user/user.admin.inc',
7972  ))
7973  ->values(array(
7974    'path' => 'admin/user/rules',
7975    'load_functions' => '',
7976    'to_arg_functions' => '',
7977    'access_callback' => 'user_access',
7978    'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
7979    'page_callback' => 'user_admin_access',
7980    'page_arguments' => 'a:0:{}',
7981    'fit' => '7',
7982    'number_parts' => '3',
7983    'tab_parent' => '',
7984    'tab_root' => 'admin/user/rules',
7985    'title' => 'Access rules',
7986    'title_callback' => 't',
7987    'title_arguments' => '',
7988    'type' => '6',
7989    'block_callback' => '',
7990    'description' => 'List and create rules to disallow usernames, e-mail addresses, and IP addresses.',
7991    'position' => '',
7992    'weight' => '0',
7993    'file' => 'modules/user/user.admin.inc',
7994  ))
7995  ->values(array(
7996    'path' => 'admin/user/rules/add',
7997    'load_functions' => '',
7998    'to_arg_functions' => '',
7999    'access_callback' => 'user_access',
8000    'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
8001    'page_callback' => 'user_admin_access_add',
8002    'page_arguments' => 'a:0:{}',
8003    'fit' => '15',
8004    'number_parts' => '4',
8005    'tab_parent' => 'admin/user/rules',
8006    'tab_root' => 'admin/user/rules',
8007    'title' => 'Add rule',
8008    'title_callback' => 't',
8009    'title_arguments' => '',
8010    'type' => '128',
8011    'block_callback' => '',
8012    'description' => '',
8013    'position' => '',
8014    'weight' => '0',
8015    'file' => 'modules/user/user.admin.inc',
8016  ))
8017  ->values(array(
8018    'path' => 'admin/user/rules/check',
8019    'load_functions' => '',
8020    'to_arg_functions' => '',
8021    'access_callback' => 'user_access',
8022    'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
8023    'page_callback' => 'user_admin_access_check',
8024    'page_arguments' => 'a:0:{}',
8025    'fit' => '15',
8026    'number_parts' => '4',
8027    'tab_parent' => 'admin/user/rules',
8028    'tab_root' => 'admin/user/rules',
8029    'title' => 'Check rules',
8030    'title_callback' => 't',
8031    'title_arguments' => '',
8032    'type' => '128',
8033    'block_callback' => '',
8034    'description' => '',
8035    'position' => '',
8036    'weight' => '0',
8037    'file' => 'modules/user/user.admin.inc',
8038  ))
8039  ->values(array(
8040    'path' => 'admin/user/rules/delete',
8041    'load_functions' => '',
8042    'to_arg_functions' => '',
8043    'access_callback' => 'user_access',
8044    'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
8045    'page_callback' => 'drupal_get_form',
8046    'page_arguments' => 'a:1:{i:0;s:32:"user_admin_access_delete_confirm";}',
8047    'fit' => '15',
8048    'number_parts' => '4',
8049    'tab_parent' => '',
8050    'tab_root' => 'admin/user/rules/delete',
8051    'title' => 'Delete rule',
8052    'title_callback' => 't',
8053    'title_arguments' => '',
8054    'type' => '4',
8055    'block_callback' => '',
8056    'description' => '',
8057    'position' => '',
8058    'weight' => '0',
8059    'file' => 'modules/user/user.admin.inc',
8060  ))
8061  ->values(array(
8062    'path' => 'admin/user/rules/edit',
8063    'load_functions' => '',
8064    'to_arg_functions' => '',
8065    'access_callback' => 'user_access',
8066    'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
8067    'page_callback' => 'user_admin_access_edit',
8068    'page_arguments' => 'a:0:{}',
8069    'fit' => '15',
8070    'number_parts' => '4',
8071    'tab_parent' => '',
8072    'tab_root' => 'admin/user/rules/edit',
8073    'title' => 'Edit rule',
8074    'title_callback' => 't',
8075    'title_arguments' => '',
8076    'type' => '4',
8077    'block_callback' => '',
8078    'description' => '',
8079    'position' => '',
8080    'weight' => '0',
8081    'file' => 'modules/user/user.admin.inc',
8082  ))
8083  ->values(array(
8084    'path' => 'admin/user/rules/list',
8085    'load_functions' => '',
8086    'to_arg_functions' => '',
8087    'access_callback' => 'user_access',
8088    'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
8089    'page_callback' => 'user_admin_access',
8090    'page_arguments' => 'a:0:{}',
8091    'fit' => '15',
8092    'number_parts' => '4',
8093    'tab_parent' => 'admin/user/rules',
8094    'tab_root' => 'admin/user/rules',
8095    'title' => 'List',
8096    'title_callback' => 't',
8097    'title_arguments' => '',
8098    'type' => '136',
8099    'block_callback' => '',
8100    'description' => '',
8101    'position' => '',
8102    'weight' => '-10',
8103    'file' => 'modules/user/user.admin.inc',
8104  ))
8105  ->values(array(
8106    'path' => 'admin/user/settings',
8107    'load_functions' => '',
8108    'to_arg_functions' => '',
8109    'access_callback' => 'user_access',
8110    'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
8111    'page_callback' => 'drupal_get_form',
8112    'page_arguments' => 'a:1:{i:0;s:19:"user_admin_settings";}',
8113    'fit' => '7',
8114    'number_parts' => '3',
8115    'tab_parent' => '',
8116    'tab_root' => 'admin/user/settings',
8117    'title' => 'User settings',
8118    'title_callback' => 't',
8119    'title_arguments' => '',
8120    'type' => '6',
8121    'block_callback' => '',
8122    'description' => 'Configure default behavior of users, including registration requirements, e-mails, and user pictures.',
8123    'position' => '',
8124    'weight' => '0',
8125    'file' => 'modules/user/user.admin.inc',
8126  ))
8127  ->values(array(
8128    'path' => 'admin/user/user',
8129    'load_functions' => '',
8130    'to_arg_functions' => '',
8131    'access_callback' => 'user_access',
8132    'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
8133    'page_callback' => 'user_admin',
8134    'page_arguments' => 'a:1:{i:0;s:4:"list";}',
8135    'fit' => '7',
8136    'number_parts' => '3',
8137    'tab_parent' => '',
8138    'tab_root' => 'admin/user/user',
8139    'title' => 'Users',
8140    'title_callback' => 't',
8141    'title_arguments' => '',
8142    'type' => '6',
8143    'block_callback' => '',
8144    'description' => 'List, add, and edit users.',
8145    'position' => '',
8146    'weight' => '0',
8147    'file' => 'modules/user/user.admin.inc',
8148  ))
8149  ->values(array(
8150    'path' => 'admin/user/user/create',
8151    'load_functions' => '',
8152    'to_arg_functions' => '',
8153    'access_callback' => 'user_access',
8154    'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
8155    'page_callback' => 'user_admin',
8156    'page_arguments' => 'a:1:{i:0;s:6:"create";}',
8157    'fit' => '15',
8158    'number_parts' => '4',
8159    'tab_parent' => 'admin/user/user',
8160    'tab_root' => 'admin/user/user',
8161    'title' => 'Add user',
8162    'title_callback' => 't',
8163    'title_arguments' => '',
8164    'type' => '128',
8165    'block_callback' => '',
8166    'description' => '',
8167    'position' => '',
8168    'weight' => '0',
8169    'file' => 'modules/user/user.admin.inc',
8170  ))
8171  ->values(array(
8172    'path' => 'admin/user/user/list',
8173    'load_functions' => '',
8174    'to_arg_functions' => '',
8175    'access_callback' => 'user_access',
8176    'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
8177    'page_callback' => 'user_admin',
8178    'page_arguments' => 'a:1:{i:0;s:4:"list";}',
8179    'fit' => '15',
8180    'number_parts' => '4',
8181    'tab_parent' => 'admin/user/user',
8182    'tab_root' => 'admin/user/user',
8183    'title' => 'List',
8184    'title_callback' => 't',
8185    'title_arguments' => '',
8186    'type' => '136',
8187    'block_callback' => '',
8188    'description' => '',
8189    'position' => '',
8190    'weight' => '-10',
8191    'file' => 'modules/user/user.admin.inc',
8192  ))
8193  ->values(array(
8194    'path' => 'batch',
8195    'load_functions' => '',
8196    'to_arg_functions' => '',
8197    'access_callback' => '1',
8198    'access_arguments' => 'a:0:{}',
8199    'page_callback' => 'system_batch_page',
8200    'page_arguments' => 'a:0:{}',
8201    'fit' => '1',
8202    'number_parts' => '1',
8203    'tab_parent' => '',
8204    'tab_root' => 'batch',
8205    'title' => '',
8206    'title_callback' => 't',
8207    'title_arguments' => '',
8208    'type' => '4',
8209    'block_callback' => '',
8210    'description' => '',
8211    'position' => '',
8212    'weight' => '0',
8213    'file' => 'modules/system/system.admin.inc',
8214  ))
8215  ->values(array(
8216    'path' => 'comment/delete',
8217    'load_functions' => '',
8218    'to_arg_functions' => '',
8219    'access_callback' => 'user_access',
8220    'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
8221    'page_callback' => 'comment_delete',
8222    'page_arguments' => 'a:0:{}',
8223    'fit' => '3',
8224    'number_parts' => '2',
8225    'tab_parent' => '',
8226    'tab_root' => 'comment/delete',
8227    'title' => 'Delete comment',
8228    'title_callback' => 't',
8229    'title_arguments' => '',
8230    'type' => '4',
8231    'block_callback' => '',
8232    'description' => '',
8233    'position' => '',
8234    'weight' => '0',
8235    'file' => 'modules/comment/comment.admin.inc',
8236  ))
8237  ->values(array(
8238    'path' => 'comment/edit',
8239    'load_functions' => '',
8240    'to_arg_functions' => '',
8241    'access_callback' => 'user_access',
8242    'access_arguments' => 'a:1:{i:0;s:13:"post comments";}',
8243    'page_callback' => 'comment_edit',
8244    'page_arguments' => 'a:0:{}',
8245    'fit' => '3',
8246    'number_parts' => '2',
8247    'tab_parent' => '',
8248    'tab_root' => 'comment/edit',
8249    'title' => 'Edit comment',
8250    'title_callback' => 't',
8251    'title_arguments' => '',
8252    'type' => '4',
8253    'block_callback' => '',
8254    'description' => '',
8255    'position' => '',
8256    'weight' => '0',
8257    'file' => 'modules/comment/comment.pages.inc',
8258  ))
8259  ->values(array(
8260    'path' => 'comment/reply/%',
8261    'load_functions' => 'a:1:{i:2;s:9:"node_load";}',
8262    'to_arg_functions' => '',
8263    'access_callback' => 'node_access',
8264    'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:2;}',
8265    'page_callback' => 'comment_reply',
8266    'page_arguments' => 'a:1:{i:0;i:2;}',
8267    'fit' => '6',
8268    'number_parts' => '3',
8269    'tab_parent' => '',
8270    'tab_root' => 'comment/reply/%',
8271    'title' => 'Reply to comment',
8272    'title_callback' => 't',
8273    'title_arguments' => '',
8274    'type' => '4',
8275    'block_callback' => '',
8276    'description' => '',
8277    'position' => '',
8278    'weight' => '0',
8279    'file' => 'modules/comment/comment.pages.inc',
8280  ))
8281  ->values(array(
8282    'path' => 'filter/tips',
8283    'load_functions' => '',
8284    'to_arg_functions' => '',
8285    'access_callback' => '1',
8286    'access_arguments' => 'a:0:{}',
8287    'page_callback' => 'filter_tips_long',
8288    'page_arguments' => 'a:0:{}',
8289    'fit' => '3',
8290    'number_parts' => '2',
8291    'tab_parent' => '',
8292    'tab_root' => 'filter/tips',
8293    'title' => 'Compose tips',
8294    'title_callback' => 't',
8295    'title_arguments' => '',
8296    'type' => '20',
8297    'block_callback' => '',
8298    'description' => '',
8299    'position' => '',
8300    'weight' => '0',
8301    'file' => 'modules/filter/filter.pages.inc',
8302  ))
8303  ->values(array(
8304    'path' => 'logout',
8305    'load_functions' => '',
8306    'to_arg_functions' => '',
8307    'access_callback' => 'user_is_logged_in',
8308    'access_arguments' => 'a:0:{}',
8309    'page_callback' => 'user_logout',
8310    'page_arguments' => 'a:0:{}',
8311    'fit' => '1',
8312    'number_parts' => '1',
8313    'tab_parent' => '',
8314    'tab_root' => 'logout',
8315    'title' => 'Log out',
8316    'title_callback' => 't',
8317    'title_arguments' => '',
8318    'type' => '6',
8319    'block_callback' => '',
8320    'description' => '',
8321    'position' => '',
8322    'weight' => '10',
8323    'file' => 'modules/user/user.pages.inc',
8324  ))
8325  ->values(array(
8326    'path' => 'node',
8327    'load_functions' => '',
8328    'to_arg_functions' => '',
8329    'access_callback' => 'user_access',
8330    'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
8331    'page_callback' => 'node_page_default',
8332    'page_arguments' => 'a:0:{}',
8333    'fit' => '1',
8334    'number_parts' => '1',
8335    'tab_parent' => '',
8336    'tab_root' => 'node',
8337    'title' => 'Content',
8338    'title_callback' => 't',
8339    'title_arguments' => '',
8340    'type' => '4',
8341    'block_callback' => '',
8342    'description' => '',
8343    'position' => '',
8344    'weight' => '0',
8345    'file' => '',
8346  ))
8347  ->values(array(
8348    'path' => 'node/%',
8349    'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
8350    'to_arg_functions' => '',
8351    'access_callback' => 'node_access',
8352    'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
8353    'page_callback' => 'node_page_view',
8354    'page_arguments' => 'a:1:{i:0;i:1;}',
8355    'fit' => '2',
8356    'number_parts' => '2',
8357    'tab_parent' => '',
8358    'tab_root' => 'node/%',
8359    'title' => '',
8360    'title_callback' => 'node_page_title',
8361    'title_arguments' => 'a:1:{i:0;i:1;}',
8362    'type' => '4',
8363    'block_callback' => '',
8364    'description' => '',
8365    'position' => '',
8366    'weight' => '0',
8367    'file' => '',
8368  ))
8369  ->values(array(
8370    'path' => 'node/%/delete',
8371    'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
8372    'to_arg_functions' => '',
8373    'access_callback' => 'node_access',
8374    'access_arguments' => 'a:2:{i:0;s:6:"delete";i:1;i:1;}',
8375    'page_callback' => 'drupal_get_form',
8376    'page_arguments' => 'a:2:{i:0;s:19:"node_delete_confirm";i:1;i:1;}',
8377    'fit' => '5',
8378    'number_parts' => '3',
8379    'tab_parent' => '',
8380    'tab_root' => 'node/%/delete',
8381    'title' => 'Delete',
8382    'title_callback' => 't',
8383    'title_arguments' => '',
8384    'type' => '4',
8385    'block_callback' => '',
8386    'description' => '',
8387    'position' => '',
8388    'weight' => '1',
8389    'file' => 'modules/node/node.pages.inc',
8390  ))
8391  ->values(array(
8392    'path' => 'node/%/edit',
8393    'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
8394    'to_arg_functions' => '',
8395    'access_callback' => 'node_access',
8396    'access_arguments' => 'a:2:{i:0;s:6:"update";i:1;i:1;}',
8397    'page_callback' => 'node_page_edit',
8398    'page_arguments' => 'a:1:{i:0;i:1;}',
8399    'fit' => '5',
8400    'number_parts' => '3',
8401    'tab_parent' => 'node/%',
8402    'tab_root' => 'node/%',
8403    'title' => 'Edit',
8404    'title_callback' => 't',
8405    'title_arguments' => '',
8406    'type' => '128',
8407    'block_callback' => '',
8408    'description' => '',
8409    'position' => '',
8410    'weight' => '1',
8411    'file' => 'modules/node/node.pages.inc',
8412  ))
8413  ->values(array(
8414    'path' => 'node/%/results',
8415    'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
8416    'to_arg_functions' => '',
8417    'access_callback' => '_poll_menu_access',
8418    'access_arguments' => 'a:3:{i:0;i:1;i:1;s:14:"access content";i:2;b:1;}',
8419    'page_callback' => 'poll_results',
8420    'page_arguments' => 'a:1:{i:0;i:1;}',
8421    'fit' => '5',
8422    'number_parts' => '3',
8423    'tab_parent' => 'node/%',
8424    'tab_root' => 'node/%',
8425    'title' => 'Results',
8426    'title_callback' => 't',
8427    'title_arguments' => '',
8428    'type' => '128',
8429    'block_callback' => '',
8430    'description' => '',
8431    'position' => '',
8432    'weight' => '3',
8433    'file' => 'modules/poll/poll.pages.inc',
8434  ))
8435  ->values(array(
8436    'path' => 'node/%/revisions',
8437    'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
8438    'to_arg_functions' => '',
8439    'access_callback' => '_node_revision_access',
8440    'access_arguments' => 'a:1:{i:0;i:1;}',
8441    'page_callback' => 'node_revision_overview',
8442    'page_arguments' => 'a:1:{i:0;i:1;}',
8443    'fit' => '5',
8444    'number_parts' => '3',
8445    'tab_parent' => 'node/%',
8446    'tab_root' => 'node/%',
8447    'title' => 'Revisions',
8448    'title_callback' => 't',
8449    'title_arguments' => '',
8450    'type' => '128',
8451    'block_callback' => '',
8452    'description' => '',
8453    'position' => '',
8454    'weight' => '2',
8455    'file' => 'modules/node/node.pages.inc',
8456  ))
8457  ->values(array(
8458    'path' => 'node/%/revisions/%/delete',
8459    'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
8460    'to_arg_functions' => '',
8461    'access_callback' => '_node_revision_access',
8462    'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"delete";}',
8463    'page_callback' => 'drupal_get_form',
8464    'page_arguments' => 'a:2:{i:0;s:28:"node_revision_delete_confirm";i:1;i:1;}',
8465    'fit' => '21',
8466    'number_parts' => '5',
8467    'tab_parent' => '',
8468    'tab_root' => 'node/%/revisions/%/delete',
8469    'title' => 'Delete earlier revision',
8470    'title_callback' => 't',
8471    'title_arguments' => '',
8472    'type' => '4',
8473    'block_callback' => '',
8474    'description' => '',
8475    'position' => '',
8476    'weight' => '0',
8477    'file' => 'modules/node/node.pages.inc',
8478  ))
8479  ->values(array(
8480    'path' => 'node/%/revisions/%/revert',
8481    'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
8482    'to_arg_functions' => '',
8483    'access_callback' => '_node_revision_access',
8484    'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"update";}',
8485    'page_callback' => 'drupal_get_form',
8486    'page_arguments' => 'a:2:{i:0;s:28:"node_revision_revert_confirm";i:1;i:1;}',
8487    'fit' => '21',
8488    'number_parts' => '5',
8489    'tab_parent' => '',
8490    'tab_root' => 'node/%/revisions/%/revert',
8491    'title' => 'Revert to earlier revision',
8492    'title_callback' => 't',
8493    'title_arguments' => '',
8494    'type' => '4',
8495    'block_callback' => '',
8496    'description' => '',
8497    'position' => '',
8498    'weight' => '0',
8499    'file' => 'modules/node/node.pages.inc',
8500  ))
8501  ->values(array(
8502    'path' => 'node/%/revisions/%/view',
8503    'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
8504    'to_arg_functions' => '',
8505    'access_callback' => '_node_revision_access',
8506    'access_arguments' => 'a:1:{i:0;i:1;}',
8507    'page_callback' => 'node_show',
8508    'page_arguments' => 'a:3:{i:0;i:1;i:1;N;i:2;b:1;}',
8509    'fit' => '21',
8510    'number_parts' => '5',
8511    'tab_parent' => '',
8512    'tab_root' => 'node/%/revisions/%/view',
8513    'title' => 'Revisions',
8514    'title_callback' => 't',
8515    'title_arguments' => '',
8516    'type' => '4',
8517    'block_callback' => '',
8518    'description' => '',
8519    'position' => '',
8520    'weight' => '0',
8521    'file' => '',
8522  ))
8523  ->values(array(
8524    'path' => 'node/%/view',
8525    'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
8526    'to_arg_functions' => '',
8527    'access_callback' => 'node_access',
8528    'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
8529    'page_callback' => 'node_page_view',
8530    'page_arguments' => 'a:1:{i:0;i:1;}',
8531    'fit' => '5',
8532    'number_parts' => '3',
8533    'tab_parent' => 'node/%',
8534    'tab_root' => 'node/%',
8535    'title' => 'View',
8536    'title_callback' => 't',
8537    'title_arguments' => '',
8538    'type' => '136',
8539    'block_callback' => '',
8540    'description' => '',
8541    'position' => '',
8542    'weight' => '-10',
8543    'file' => '',
8544  ))
8545  ->values(array(
8546    'path' => 'node/%/votes',
8547    'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
8548    'to_arg_functions' => '',
8549    'access_callback' => '_poll_menu_access',
8550    'access_arguments' => 'a:3:{i:0;i:1;i:1;s:17:"inspect all votes";i:2;b:0;}',
8551    'page_callback' => 'poll_votes',
8552    'page_arguments' => 'a:1:{i:0;i:1;}',
8553    'fit' => '5',
8554    'number_parts' => '3',
8555    'tab_parent' => 'node/%',
8556    'tab_root' => 'node/%',
8557    'title' => 'Votes',
8558    'title_callback' => 't',
8559    'title_arguments' => '',
8560    'type' => '128',
8561    'block_callback' => '',
8562    'description' => '',
8563    'position' => '',
8564    'weight' => '3',
8565    'file' => 'modules/poll/poll.pages.inc',
8566  ))
8567  ->values(array(
8568    'path' => 'node/add',
8569    'load_functions' => '',
8570    'to_arg_functions' => '',
8571    'access_callback' => '_node_add_access',
8572    'access_arguments' => 'a:0:{}',
8573    'page_callback' => 'node_add_page',
8574    'page_arguments' => 'a:0:{}',
8575    'fit' => '3',
8576    'number_parts' => '2',
8577    'tab_parent' => '',
8578    'tab_root' => 'node/add',
8579    'title' => 'Create content',
8580    'title_callback' => 't',
8581    'title_arguments' => '',
8582    'type' => '6',
8583    'block_callback' => '',
8584    'description' => '',
8585    'position' => '',
8586    'weight' => '1',
8587    'file' => 'modules/node/node.pages.inc',
8588  ))
8589  ->values(array(
8590    'path' => 'node/add/page',
8591    'load_functions' => '',
8592    'to_arg_functions' => '',
8593    'access_callback' => 'node_access',
8594    'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:4:"page";}',
8595    'page_callback' => 'node_add',
8596    'page_arguments' => 'a:1:{i:0;i:2;}',
8597    'fit' => '7',
8598    'number_parts' => '3',
8599    'tab_parent' => '',
8600    'tab_root' => 'node/add/page',
8601    'title' => 'Page',
8602    'title_callback' => 'check_plain',
8603    'title_arguments' => '',
8604    'type' => '6',
8605    'block_callback' => '',
8606    'description' => "A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.",
8607    'position' => '',
8608    'weight' => '0',
8609    'file' => 'modules/node/node.pages.inc',
8610  ))
8611  ->values(array(
8612    'path' => 'node/add/poll',
8613    'load_functions' => '',
8614    'to_arg_functions' => '',
8615    'access_callback' => 'node_access',
8616    'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:4:"poll";}',
8617    'page_callback' => 'node_add',
8618    'page_arguments' => 'a:1:{i:0;i:2;}',
8619    'fit' => '7',
8620    'number_parts' => '3',
8621    'tab_parent' => '',
8622    'tab_root' => 'node/add/poll',
8623    'title' => 'Poll',
8624    'title_callback' => 'check_plain',
8625    'title_arguments' => '',
8626    'type' => '6',
8627    'block_callback' => '',
8628    'description' => 'A <em>poll</em> is a question with a set of possible responses. A <em>poll</em>, once created, automatically provides a simple running count of the number of votes received for each response.',
8629    'position' => '',
8630    'weight' => '0',
8631    'file' => 'modules/node/node.pages.inc',
8632  ))
8633  ->values(array(
8634    'path' => 'node/add/story',
8635    'load_functions' => '',
8636    'to_arg_functions' => '',
8637    'access_callback' => 'node_access',
8638    'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:5:"story";}',
8639    'page_callback' => 'node_add',
8640    'page_arguments' => 'a:1:{i:0;i:2;}',
8641    'fit' => '7',
8642    'number_parts' => '3',
8643    'tab_parent' => '',
8644    'tab_root' => 'node/add/story',
8645    'title' => 'Story',
8646    'title_callback' => 'check_plain',
8647    'title_arguments' => '',
8648    'type' => '6',
8649    'block_callback' => '',
8650    'description' => "A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.",
8651    'position' => '',
8652    'weight' => '0',
8653    'file' => 'modules/node/node.pages.inc',
8654  ))
8655  ->values(array(
8656    'path' => 'poll',
8657    'load_functions' => '',
8658    'to_arg_functions' => '',
8659    'access_callback' => 'user_access',
8660    'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
8661    'page_callback' => 'poll_page',
8662    'page_arguments' => 'a:0:{}',
8663    'fit' => '1',
8664    'number_parts' => '1',
8665    'tab_parent' => '',
8666    'tab_root' => 'poll',
8667    'title' => 'Polls',
8668    'title_callback' => 't',
8669    'title_arguments' => '',
8670    'type' => '20',
8671    'block_callback' => '',
8672    'description' => '',
8673    'position' => '',
8674    'weight' => '0',
8675    'file' => 'modules/poll/poll.pages.inc',
8676  ))
8677  ->values(array(
8678    'path' => 'poll/js',
8679    'load_functions' => '',
8680    'to_arg_functions' => '',
8681    'access_callback' => 'user_access',
8682    'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
8683    'page_callback' => 'poll_choice_js',
8684    'page_arguments' => 'a:0:{}',
8685    'fit' => '3',
8686    'number_parts' => '2',
8687    'tab_parent' => '',
8688    'tab_root' => 'poll/js',
8689    'title' => 'Javascript Choice Form',
8690    'title_callback' => 't',
8691    'title_arguments' => '',
8692    'type' => '4',
8693    'block_callback' => '',
8694    'description' => '',
8695    'position' => '',
8696    'weight' => '0',
8697    'file' => '',
8698  ))
8699  ->values(array(
8700    'path' => 'rss.xml',
8701    'load_functions' => '',
8702    'to_arg_functions' => '',
8703    'access_callback' => 'user_access',
8704    'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
8705    'page_callback' => 'node_feed',
8706    'page_arguments' => 'a:0:{}',
8707    'fit' => '1',
8708    'number_parts' => '1',
8709    'tab_parent' => '',
8710    'tab_root' => 'rss.xml',
8711    'title' => 'RSS feed',
8712    'title_callback' => 't',
8713    'title_arguments' => '',
8714    'type' => '4',
8715    'block_callback' => '',
8716    'description' => '',
8717    'position' => '',
8718    'weight' => '0',
8719    'file' => '',
8720  ))
8721  ->values(array(
8722    'path' => 'system/files',
8723    'load_functions' => '',
8724    'to_arg_functions' => '',
8725    'access_callback' => '1',
8726    'access_arguments' => 'a:0:{}',
8727    'page_callback' => 'file_download',
8728    'page_arguments' => 'a:0:{}',
8729    'fit' => '3',
8730    'number_parts' => '2',
8731    'tab_parent' => '',
8732    'tab_root' => 'system/files',
8733    'title' => 'File download',
8734    'title_callback' => 't',
8735    'title_arguments' => '',
8736    'type' => '4',
8737    'block_callback' => '',
8738    'description' => '',
8739    'position' => '',
8740    'weight' => '0',
8741    'file' => '',
8742  ))
8743  ->values(array(
8744    'path' => 'taxonomy/autocomplete',
8745    'load_functions' => '',
8746    'to_arg_functions' => '',
8747    'access_callback' => 'user_access',
8748    'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
8749    'page_callback' => 'taxonomy_autocomplete',
8750    'page_arguments' => 'a:0:{}',
8751    'fit' => '3',
8752    'number_parts' => '2',
8753    'tab_parent' => '',
8754    'tab_root' => 'taxonomy/autocomplete',
8755    'title' => 'Autocomplete taxonomy',
8756    'title_callback' => 't',
8757    'title_arguments' => '',
8758    'type' => '4',
8759    'block_callback' => '',
8760    'description' => '',
8761    'position' => '',
8762    'weight' => '0',
8763    'file' => 'modules/taxonomy/taxonomy.pages.inc',
8764  ))
8765  ->values(array(
8766    'path' => 'taxonomy/term/%',
8767    'load_functions' => 'a:1:{i:2;N;}',
8768    'to_arg_functions' => '',
8769    'access_callback' => 'user_access',
8770    'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
8771    'page_callback' => 'taxonomy_term_page',
8772    'page_arguments' => 'a:1:{i:0;i:2;}',
8773    'fit' => '6',
8774    'number_parts' => '3',
8775    'tab_parent' => '',
8776    'tab_root' => 'taxonomy/term/%',
8777    'title' => 'Taxonomy term',
8778    'title_callback' => 't',
8779    'title_arguments' => '',
8780    'type' => '4',
8781    'block_callback' => '',
8782    'description' => '',
8783    'position' => '',
8784    'weight' => '0',
8785    'file' => 'modules/taxonomy/taxonomy.pages.inc',
8786  ))
8787  ->values(array(
8788    'path' => 'user',
8789    'load_functions' => '',
8790    'to_arg_functions' => '',
8791    'access_callback' => '1',
8792    'access_arguments' => 'a:0:{}',
8793    'page_callback' => 'user_page',
8794    'page_arguments' => 'a:0:{}',
8795    'fit' => '1',
8796    'number_parts' => '1',
8797    'tab_parent' => '',
8798    'tab_root' => 'user',
8799    'title' => 'User account',
8800    'title_callback' => 't',
8801    'title_arguments' => '',
8802    'type' => '4',
8803    'block_callback' => '',
8804    'description' => '',
8805    'position' => '',
8806    'weight' => '0',
8807    'file' => 'modules/user/user.pages.inc',
8808  ))
8809  ->values(array(
8810    'path' => 'user/%',
8811    'load_functions' => 'a:1:{i:1;s:22:"user_uid_optional_load";}',
8812    'to_arg_functions' => 'a:1:{i:1;s:24:"user_uid_optional_to_arg";}',
8813    'access_callback' => 'user_view_access',
8814    'access_arguments' => 'a:1:{i:0;i:1;}',
8815    'page_callback' => 'user_view',
8816    'page_arguments' => 'a:1:{i:0;i:1;}',
8817    'fit' => '2',
8818    'number_parts' => '2',
8819    'tab_parent' => '',
8820    'tab_root' => 'user/%',
8821    'title' => 'My account',
8822    'title_callback' => 'user_page_title',
8823    'title_arguments' => 'a:1:{i:0;i:1;}',
8824    'type' => '6',
8825    'block_callback' => '',
8826    'description' => '',
8827    'position' => '',
8828    'weight' => '0',
8829    'file' => 'modules/user/user.pages.inc',
8830  ))
8831  ->values(array(
8832    'path' => 'user/%/delete',
8833    'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
8834    'to_arg_functions' => '',
8835    'access_callback' => 'user_access',
8836    'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
8837    'page_callback' => 'drupal_get_form',
8838    'page_arguments' => 'a:2:{i:0;s:19:"user_confirm_delete";i:1;i:1;}',
8839    'fit' => '5',
8840    'number_parts' => '3',
8841    'tab_parent' => '',
8842    'tab_root' => 'user/%/delete',
8843    'title' => 'Delete',
8844    'title_callback' => 't',
8845    'title_arguments' => '',
8846    'type' => '4',
8847    'block_callback' => '',
8848    'description' => '',
8849    'position' => '',
8850    'weight' => '0',
8851    'file' => 'modules/user/user.pages.inc',
8852  ))
8853  ->values(array(
8854    'path' => 'user/%/edit',
8855    'load_functions' => 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
8856    'to_arg_functions' => '',
8857    'access_callback' => 'user_edit_access',
8858    'access_arguments' => 'a:1:{i:0;i:1;}',
8859    'page_callback' => 'user_edit',
8860    'page_arguments' => 'a:1:{i:0;i:1;}',
8861    'fit' => '5',
8862    'number_parts' => '3',
8863    'tab_parent' => 'user/%',
8864    'tab_root' => 'user/%',
8865    'title' => 'Edit',
8866    'title_callback' => 't',
8867    'title_arguments' => '',
8868    'type' => '128',
8869    'block_callback' => '',
8870    'description' => '',
8871    'position' => '',
8872    'weight' => '0',
8873    'file' => 'modules/user/user.pages.inc',
8874  ))
8875  ->values(array(
8876    'path' => 'user/%/edit/account',
8877    'load_functions' => 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
8878    'to_arg_functions' => '',
8879    'access_callback' => 'user_edit_access',
8880    'access_arguments' => 'a:1:{i:0;i:1;}',
8881    'page_callback' => 'user_edit',
8882    'page_arguments' => 'a:1:{i:0;i:1;}',
8883    'fit' => '11',
8884    'number_parts' => '4',
8885    'tab_parent' => 'user/%/edit',
8886    'tab_root' => 'user/%',
8887    'title' => 'Account',
8888    'title_callback' => 't',
8889    'title_arguments' => '',
8890    'type' => '136',
8891    'block_callback' => '',
8892    'description' => '',
8893    'position' => '',
8894    'weight' => '0',
8895    'file' => 'modules/user/user.pages.inc',
8896  ))
8897  ->values(array(
8898    'path' => 'user/%/view',
8899    'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
8900    'to_arg_functions' => '',
8901    'access_callback' => 'user_view_access',
8902    'access_arguments' => 'a:1:{i:0;i:1;}',
8903    'page_callback' => 'user_view',
8904    'page_arguments' => 'a:1:{i:0;i:1;}',
8905    'fit' => '5',
8906    'number_parts' => '3',
8907    'tab_parent' => 'user/%',
8908    'tab_root' => 'user/%',
8909    'title' => 'View',
8910    'title_callback' => 't',
8911    'title_arguments' => '',
8912    'type' => '136',
8913    'block_callback' => '',
8914    'description' => '',
8915    'position' => '',
8916    'weight' => '-10',
8917    'file' => 'modules/user/user.pages.inc',
8918  ))
8919  ->values(array(
8920    'path' => 'user/autocomplete',
8921    'load_functions' => '',
8922    'to_arg_functions' => '',
8923    'access_callback' => 'user_access',
8924    'access_arguments' => 'a:1:{i:0;s:20:"access user profiles";}',
8925    'page_callback' => 'user_autocomplete',
8926    'page_arguments' => 'a:0:{}',
8927    'fit' => '3',
8928    'number_parts' => '2',
8929    'tab_parent' => '',
8930    'tab_root' => 'user/autocomplete',
8931    'title' => 'User autocomplete',
8932    'title_callback' => 't',
8933    'title_arguments' => '',
8934    'type' => '4',
8935    'block_callback' => '',
8936    'description' => '',
8937    'position' => '',
8938    'weight' => '0',
8939    'file' => 'modules/user/user.pages.inc',
8940  ))
8941  ->values(array(
8942    'path' => 'user/login',
8943    'load_functions' => '',
8944    'to_arg_functions' => '',
8945    'access_callback' => 'user_is_anonymous',
8946    'access_arguments' => 'a:0:{}',
8947    'page_callback' => 'user_page',
8948    'page_arguments' => 'a:0:{}',
8949    'fit' => '3',
8950    'number_parts' => '2',
8951    'tab_parent' => 'user',
8952    'tab_root' => 'user',
8953    'title' => 'Log in',
8954    'title_callback' => 't',
8955    'title_arguments' => '',
8956    'type' => '136',
8957    'block_callback' => '',
8958    'description' => '',
8959    'position' => '',
8960    'weight' => '0',
8961    'file' => 'modules/user/user.pages.inc',
8962  ))
8963  ->values(array(
8964    'path' => 'user/password',
8965    'load_functions' => '',
8966    'to_arg_functions' => '',
8967    'access_callback' => 'user_is_anonymous',
8968    'access_arguments' => 'a:0:{}',
8969    'page_callback' => 'drupal_get_form',
8970    'page_arguments' => 'a:1:{i:0;s:9:"user_pass";}',
8971    'fit' => '3',
8972    'number_parts' => '2',
8973    'tab_parent' => 'user',
8974    'tab_root' => 'user',
8975    'title' => 'Request new password',
8976    'title_callback' => 't',
8977    'title_arguments' => '',
8978    'type' => '128',
8979    'block_callback' => '',
8980    'description' => '',
8981    'position' => '',
8982    'weight' => '0',
8983    'file' => 'modules/user/user.pages.inc',
8984  ))
8985  ->values(array(
8986    'path' => 'user/register',
8987    'load_functions' => '',
8988    'to_arg_functions' => '',
8989    'access_callback' => 'user_register_access',
8990    'access_arguments' => 'a:0:{}',
8991    'page_callback' => 'drupal_get_form',
8992    'page_arguments' => 'a:1:{i:0;s:13:"user_register";}',
8993    'fit' => '3',
8994    'number_parts' => '2',
8995    'tab_parent' => 'user',
8996    'tab_root' => 'user',
8997    'title' => 'Create new account',
8998    'title_callback' => 't',
8999    'title_arguments' => '',
9000    'type' => '128',
9001    'block_callback' => '',
9002    'description' => '',
9003    'position' => '',
9004    'weight' => '0',
9005    'file' => 'modules/user/user.pages.inc',
9006  ))
9007  ->values(array(
9008    'path' => 'user/reset/%/%/%',
9009    'load_functions' => 'a:3:{i:2;N;i:3;N;i:4;N;}',
9010    'to_arg_functions' => '',
9011    'access_callback' => '1',
9012    'access_arguments' => 'a:0:{}',
9013    'page_callback' => 'drupal_get_form',
9014    'page_arguments' => 'a:4:{i:0;s:15:"user_pass_reset";i:1;i:2;i:2;i:3;i:3;i:4;}',
9015    'fit' => '24',
9016    'number_parts' => '5',
9017    'tab_parent' => '',
9018    'tab_root' => 'user/reset/%/%/%',
9019    'title' => 'Reset password',
9020    'title_callback' => 't',
9021    'title_arguments' => '',
9022    'type' => '4',
9023    'block_callback' => '',
9024    'description' => '',
9025    'position' => '',
9026    'weight' => '0',
9027    'file' => 'modules/user/user.pages.inc',
9028  ))
9029  ->execute();
9030  
9031  db_create_table('node', array(
9032    'fields' => array(
9033      'nid' => array(
9034        'type' => 'serial',
9035        'unsigned' => TRUE,
9036        'not null' => TRUE,
9037      ),
9038      'vid' => array(
9039        'type' => 'int',
9040        'unsigned' => TRUE,
9041        'not null' => TRUE,
9042        'default' => 0,
9043      ),
9044      'type' => array(
9045        'type' => 'varchar',
9046        'length' => 32,
9047        'not null' => TRUE,
9048        'default' => '',
9049      ),
9050      'language' => array(
9051        'type' => 'varchar',
9052        'length' => 12,
9053        'not null' => TRUE,
9054        'default' => '',
9055      ),
9056      'title' => array(
9057        'type' => 'varchar',
9058        'length' => 255,
9059        'not null' => TRUE,
9060        'default' => '',
9061      ),
9062      'uid' => array(
9063        'type' => 'int',
9064        'not null' => TRUE,
9065        'default' => 0,
9066      ),
9067      'status' => array(
9068        'type' => 'int',
9069        'not null' => TRUE,
9070        'default' => 1,
9071      ),
9072      'created' => array(
9073        'type' => 'int',
9074        'not null' => TRUE,
9075        'default' => 0,
9076      ),
9077      'changed' => array(
9078        'type' => 'int',
9079        'not null' => TRUE,
9080        'default' => 0,
9081      ),
9082      'comment' => array(
9083        'type' => 'int',
9084        'not null' => TRUE,
9085        'default' => 0,
9086      ),
9087      'promote' => array(
9088        'type' => 'int',
9089        'not null' => TRUE,
9090        'default' => 0,
9091      ),
9092      'moderate' => array(
9093        'type' => 'int',
9094        'not null' => TRUE,
9095        'default' => 0,
9096      ),
9097      'sticky' => array(
9098        'type' => 'int',
9099        'not null' => TRUE,
9100        'default' => 0,
9101      ),
9102      'tnid' => array(
9103        'type' => 'int',
9104        'unsigned' => TRUE,
9105        'not null' => TRUE,
9106        'default' => 0,
9107      ),
9108      'translate' => array(
9109        'type' => 'int',
9110        'not null' => TRUE,
9111        'default' => 0,
9112      ),
9113    ),
9114    'indexes' => array(
9115      'node_changed' => array(
9116        'changed',
9117      ),
9118      'node_created' => array(
9119        'created',
9120      ),
9121      'node_moderate' => array(
9122        'moderate',
9123      ),
9124      'node_promote_status' => array(
9125        'promote',
9126        'status',
9127      ),
9128      'node_status_type' => array(
9129        'status',
9130        'type',
9131        'nid',
9132      ),
9133      'node_title_type' => array(
9134        'title',
9135        array(
9136          'type',
9137          4,
9138        ),
9139      ),
9140      'node_type' => array(
9141        array(
9142          'type',
9143          4,
9144        ),
9145      ),
9146      'uid' => array(
9147        'uid',
9148      ),
9149      'tnid' => array(
9150        'tnid',
9151      ),
9152      'translate' => array(
9153        'translate',
9154      ),
9155    ),
9156    'unique keys' => array(
9157      'vid' => array(
9158        'vid',
9159      ),
9160    ),
9161    'primary key' => array(
9162      'nid',
9163    ),
9164    'module' => 'node',
9165    'name' => 'node',
9166  ));
9167  db_insert('node')->fields(array(
9168    'nid',
9169    'vid',
9170    'type',
9171    'language',
9172    'title',
9173    'uid',
9174    'status',
9175    'created',
9176    'changed',
9177    'comment',
9178    'promote',
9179    'moderate',
9180    'sticky',
9181    'tnid',
9182    'translate',
9183  ))
9184  ->values(array(
9185    'nid' => '1',
9186    'vid' => '2',
9187    'type' => 'page',
9188    'language' => '',
9189    'title' => 'node title 1 rev 1 (i=0) rev2 2',
9190    'uid' => '3',
9191    'status' => '0',
9192    'created' => '1262732400',
9193    'changed' => '1282936266',
9194    'comment' => '0',
9195    'promote' => '0',
9196    'moderate' => '0',
9197    'sticky' => '0',
9198    'tnid' => '0',
9199    'translate' => '0',
9200  ))
9201  ->values(array(
9202    'nid' => '2',
9203    'vid' => '4',
9204    'type' => 'page',
9205    'language' => '',
9206    'title' => 'node title 2 rev 3 (i=1) rev2 4',
9207    'uid' => '3',
9208    'status' => '0',
9209    'created' => '1262818800',
9210    'changed' => '1282936266',
9211    'comment' => '0',
9212    'promote' => '1',
9213    'moderate' => '0',
9214    'sticky' => '0',
9215    'tnid' => '0',
9216    'translate' => '0',
9217  ))
9218  ->values(array(
9219    'nid' => '3',
9220    'vid' => '6',
9221    'type' => 'page',
9222    'language' => '',
9223    'title' => 'node title 3 rev 5 (i=2) rev2 6',
9224    'uid' => '3',
9225    'status' => '0',
9226    'created' => '1262905200',
9227    'changed' => '1282936266',
9228    'comment' => '0',
9229    'promote' => '0',
9230    'moderate' => '0',
9231    'sticky' => '0',
9232    'tnid' => '0',
9233    'translate' => '0',
9234  ))
9235  ->values(array(
9236    'nid' => '4',
9237    'vid' => '8',
9238    'type' => 'page',
9239    'language' => '',
9240    'title' => 'node title 4 rev 7 (i=3) rev2 8',
9241    'uid' => '3',
9242    'status' => '0',
9243    'created' => '1262991600',
9244    'changed' => '1282936266',
9245    'comment' => '0',
9246    'promote' => '1',
9247    'moderate' => '0',
9248    'sticky' => '0',
9249    'tnid' => '0',
9250    'translate' => '0',
9251  ))
9252  ->values(array(
9253    'nid' => '5',
9254    'vid' => '10',
9255    'type' => 'page',
9256    'language' => '',
9257    'title' => 'node title 5 rev 9 (i=4) rev2 10',
9258    'uid' => '3',
9259    'status' => '1',
9260    'created' => '1263078000',
9261    'changed' => '1282936266',
9262    'comment' => '0',
9263    'promote' => '0',
9264    'moderate' => '0',
9265    'sticky' => '0',
9266    'tnid' => '0',
9267    'translate' => '0',
9268  ))
9269  ->values(array(
9270    'nid' => '6',
9271    'vid' => '12',
9272    'type' => 'page',
9273    'language' => '',
9274    'title' => 'node title 6 rev 11 (i=5) rev2 12',
9275    'uid' => '3',
9276    'status' => '1',
9277    'created' => '1263164400',
9278    'changed' => '1282936266',
9279    'comment' => '0',
9280    'promote' => '1',
9281    'moderate' => '0',
9282    'sticky' => '0',
9283    'tnid' => '0',
9284    'translate' => '0',
9285  ))
9286  ->values(array(
9287    'nid' => '7',
9288    'vid' => '14',
9289    'type' => 'page',
9290    'language' => '',
9291    'title' => 'node title 7 rev 13 (i=6) rev2 14',
9292    'uid' => '3',
9293    'status' => '1',
9294    'created' => '1263250800',
9295    'changed' => '1282936266',
9296    'comment' => '0',
9297    'promote' => '0',
9298    'moderate' => '0',
9299    'sticky' => '0',
9300    'tnid' => '0',
9301    'translate' => '0',
9302  ))
9303  ->values(array(
9304    'nid' => '8',
9305    'vid' => '16',
9306    'type' => 'page',
9307    'language' => '',
9308    'title' => 'node title 8 rev 15 (i=7) rev2 16',
9309    'uid' => '3',
9310    'status' => '1',
9311    'created' => '1263337200',
9312    'changed' => '1282936266',
9313    'comment' => '0',
9314    'promote' => '1',
9315    'moderate' => '0',
9316    'sticky' => '0',
9317    'tnid' => '0',
9318    'translate' => '0',
9319  ))
9320  ->values(array(
9321    'nid' => '9',
9322    'vid' => '18',
9323    'type' => 'page',
9324    'language' => '',
9325    'title' => 'node title 9 rev 17 (i=8) rev2 18',
9326    'uid' => '4',
9327    'status' => '0',
9328    'created' => '1263423600',
9329    'changed' => '1282936266',
9330    'comment' => '0',
9331    'promote' => '0',
9332    'moderate' => '0',
9333    'sticky' => '0',
9334    'tnid' => '0',
9335    'translate' => '0',
9336  ))
9337  ->values(array(
9338    'nid' => '10',
9339    'vid' => '20',
9340    'type' => 'page',
9341    'language' => '',
9342    'title' => 'node title 10 rev 19 (i=9) rev2 20',
9343    'uid' => '4',
9344    'status' => '0',
9345    'created' => '1263510000',
9346    'changed' => '1282936266',
9347    'comment' => '0',
9348    'promote' => '1',
9349    'moderate' => '0',
9350    'sticky' => '0',
9351    'tnid' => '0',
9352    'translate' => '0',
9353  ))
9354  ->values(array(
9355    'nid' => '11',
9356    'vid' => '22',
9357    'type' => 'page',
9358    'language' => '',
9359    'title' => 'node title 11 rev 21 (i=10) rev2 22',
9360    'uid' => '4',
9361    'status' => '0',
9362    'created' => '1263596400',
9363    'changed' => '1282936267',
9364    'comment' => '0',
9365    'promote' => '0',
9366    'moderate' => '0',
9367    'sticky' => '0',
9368    'tnid' => '0',
9369    'translate' => '0',
9370  ))
9371  ->values(array(
9372    'nid' => '12',
9373    'vid' => '24',
9374    'type' => 'page',
9375    'language' => '',
9376    'title' => 'node title 12 rev 23 (i=11) rev2 24',
9377    'uid' => '4',
9378    'status' => '0',
9379    'created' => '1263682800',
9380    'changed' => '1282936267',
9381    'comment' => '0',
9382    'promote' => '1',
9383    'moderate' => '0',
9384    'sticky' => '0',
9385    'tnid' => '0',
9386    'translate' => '0',
9387  ))
9388  ->values(array(
9389    'nid' => '13',
9390    'vid' => '25',
9391    'type' => 'story',
9392    'language' => '',
9393    'title' => 'node title 13 rev 25 (i=12)',
9394    'uid' => '4',
9395    'status' => '1',
9396    'created' => '1263769200',
9397    'changed' => '1282936267',
9398    'comment' => '0',
9399    'promote' => '0',
9400    'moderate' => '0',
9401    'sticky' => '0',
9402    'tnid' => '0',
9403    'translate' => '0',
9404  ))
9405  ->values(array(
9406    'nid' => '14',
9407    'vid' => '26',
9408    'type' => 'story',
9409    'language' => '',
9410    'title' => 'node title 14 rev 26 (i=13)',
9411    'uid' => '4',
9412    'status' => '1',
9413    'created' => '1263855600',
9414    'changed' => '1282936267',
9415    'comment' => '0',
9416    'promote' => '1',
9417    'moderate' => '0',
9418    'sticky' => '0',
9419    'tnid' => '0',
9420    'translate' => '0',
9421  ))
9422  ->values(array(
9423    'nid' => '15',
9424    'vid' => '27',
9425    'type' => 'story',
9426    'language' => '',
9427    'title' => 'node title 15 rev 27 (i=14)',
9428    'uid' => '4',
9429    'status' => '1',
9430    'created' => '1263942000',
9431    'changed' => '1282936267',
9432    'comment' => '0',
9433    'promote' => '0',
9434    'moderate' => '0',
9435    'sticky' => '0',
9436    'tnid' => '0',
9437    'translate' => '0',
9438  ))
9439  ->values(array(
9440    'nid' => '16',
9441    'vid' => '28',
9442    'type' => 'story',
9443    'language' => '',
9444    'title' => 'node title 16 rev 28 (i=15)',
9445    'uid' => '4',
9446    'status' => '1',
9447    'created' => '1264028400',
9448    'changed' => '1282936267',
9449    'comment' => '0',
9450    'promote' => '1',
9451    'moderate' => '0',
9452    'sticky' => '0',
9453    'tnid' => '0',
9454    'translate' => '0',
9455  ))
9456  ->values(array(
9457    'nid' => '17',
9458    'vid' => '29',
9459    'type' => 'story',
9460    'language' => '',
9461    'title' => 'node title 17 rev 29 (i=16)',
9462    'uid' => '5',
9463    'status' => '0',
9464    'created' => '1264114800',
9465    'changed' => '1282936267',
9466    'comment' => '0',
9467    'promote' => '0',
9468    'moderate' => '0',
9469    'sticky' => '0',
9470    'tnid' => '0',
9471    'translate' => '0',
9472  ))
9473  ->values(array(
9474    'nid' => '18',
9475    'vid' => '30',
9476    'type' => 'story',
9477    'language' => '',
9478    'title' => 'node title 18 rev 30 (i=17)',
9479    'uid' => '5',
9480    'status' => '0',
9481    'created' => '1264201200',
9482    'changed' => '1282936267',
9483    'comment' => '0',
9484    'promote' => '1',
9485    'moderate' => '0',
9486    'sticky' => '0',
9487    'tnid' => '0',
9488    'translate' => '0',
9489  ))
9490  ->values(array(
9491    'nid' => '19',
9492    'vid' => '31',
9493    'type' => 'story',
9494    'language' => '',
9495    'title' => 'node title 19 rev 31 (i=18)',
9496    'uid' => '5',
9497    'status' => '0',
9498    'created' => '1264287600',
9499    'changed' => '1282936267',
9500    'comment' => '0',
9501    'promote' => '0',
9502    'moderate' => '0',
9503    'sticky' => '0',
9504    'tnid' => '0',
9505    'translate' => '0',
9506  ))
9507  ->values(array(
9508    'nid' => '20',
9509    'vid' => '32',
9510    'type' => 'story',
9511    'language' => '',
9512    'title' => 'node title 20 rev 32 (i=19)',
9513    'uid' => '5',
9514    'status' => '0',
9515    'created' => '1264374000',
9516    'changed' => '1282936267',
9517    'comment' => '0',
9518    'promote' => '1',
9519    'moderate' => '0',
9520    'sticky' => '0',
9521    'tnid' => '0',
9522    'translate' => '0',
9523  ))
9524  ->values(array(
9525    'nid' => '21',
9526    'vid' => '33',
9527    'type' => 'story',
9528    'language' => '',
9529    'title' => 'node title 21 rev 33 (i=20)',
9530    'uid' => '5',
9531    'status' => '1',
9532    'created' => '1264460400',
9533    'changed' => '1282936267',
9534    'comment' => '0',
9535    'promote' => '0',
9536    'moderate' => '0',
9537    'sticky' => '0',
9538    'tnid' => '0',
9539    'translate' => '0',
9540  ))
9541  ->values(array(
9542    'nid' => '22',
9543    'vid' => '34',
9544    'type' => 'story',
9545    'language' => '',
9546    'title' => 'node title 22 rev 34 (i=21)',
9547    'uid' => '5',
9548    'status' => '1',
9549    'created' => '1264546800',
9550    'changed' => '1282936267',
9551    'comment' => '0',
9552    'promote' => '1',
9553    'moderate' => '0',
9554    'sticky' => '0',
9555    'tnid' => '0',
9556    'translate' => '0',
9557  ))
9558  ->values(array(
9559    'nid' => '23',
9560    'vid' => '35',
9561    'type' => 'story',
9562    'language' => '',
9563    'title' => 'node title 23 rev 35 (i=22)',
9564    'uid' => '5',
9565    'status' => '1',
9566    'created' => '1264633200',
9567    'changed' => '1282936267',
9568    'comment' => '0',
9569    'promote' => '0',
9570    'moderate' => '0',
9571    'sticky' => '0',
9572    'tnid' => '0',
9573    'translate' => '0',
9574  ))
9575  ->values(array(
9576    'nid' => '24',
9577    'vid' => '36',
9578    'type' => 'story',
9579    'language' => '',
9580    'title' => 'node title 24 rev 36 (i=23)',
9581    'uid' => '5',
9582    'status' => '1',
9583    'created' => '1264719600',
9584    'changed' => '1282936267',
9585    'comment' => '0',
9586    'promote' => '1',
9587    'moderate' => '0',
9588    'sticky' => '0',
9589    'tnid' => '0',
9590    'translate' => '0',
9591  ))
9592  ->values(array(
9593    'nid' => '25',
9594    'vid' => '37',
9595    'type' => 'poll',
9596    'language' => '',
9597    'title' => 'poll title 0',
9598    'uid' => '3',
9599    'status' => '0',
9600    'created' => '1262732400',
9601    'changed' => '1282936268',
9602    'comment' => '0',
9603    'promote' => '0',
9604    'moderate' => '0',
9605    'sticky' => '0',
9606    'tnid' => '0',
9607    'translate' => '0',
9608  ))
9609  ->values(array(
9610    'nid' => '26',
9611    'vid' => '38',
9612    'type' => 'poll',
9613    'language' => '',
9614    'title' => 'poll title 1',
9615    'uid' => '3',
9616    'status' => '0',
9617    'created' => '1262775600',
9618    'changed' => '1282936268',
9619    'comment' => '0',
9620    'promote' => '1',
9621    'moderate' => '0',
9622    'sticky' => '0',
9623    'tnid' => '0',
9624    'translate' => '0',
9625  ))
9626  ->values(array(
9627    'nid' => '27',
9628    'vid' => '39',
9629    'type' => 'poll',
9630    'language' => '',
9631    'title' => 'poll title 2',
9632    'uid' => '3',
9633    'status' => '1',
9634    'created' => '1262818800',
9635    'changed' => '1282936268',
9636    'comment' => '0',
9637    'promote' => '0',
9638    'moderate' => '0',
9639    'sticky' => '0',
9640    'tnid' => '0',
9641    'translate' => '0',
9642  ))
9643  ->values(array(
9644    'nid' => '28',
9645    'vid' => '40',
9646    'type' => 'poll',
9647    'language' => '',
9648    'title' => 'poll title 3',
9649    'uid' => '3',
9650    'status' => '1',
9651    'created' => '1262862000',
9652    'changed' => '1282936268',
9653    'comment' => '0',
9654    'promote' => '1',
9655    'moderate' => '0',
9656    'sticky' => '0',
9657    'tnid' => '0',
9658    'translate' => '0',
9659  ))
9660  ->values(array(
9661    'nid' => '29',
9662    'vid' => '41',
9663    'type' => 'poll',
9664    'language' => '',
9665    'title' => 'poll title 4',
9666    'uid' => '4',
9667    'status' => '0',
9668    'created' => '1262905200',
9669    'changed' => '1282936268',
9670    'comment' => '0',
9671    'promote' => '0',
9672    'moderate' => '0',
9673    'sticky' => '0',
9674    'tnid' => '0',
9675    'translate' => '0',
9676  ))
9677  ->values(array(
9678    'nid' => '30',
9679    'vid' => '42',
9680    'type' => 'poll',
9681    'language' => '',
9682    'title' => 'poll title 5',
9683    'uid' => '4',
9684    'status' => '0',
9685    'created' => '1262948400',
9686    'changed' => '1282936268',
9687    'comment' => '0',
9688    'promote' => '1',
9689    'moderate' => '0',
9690    'sticky' => '0',
9691    'tnid' => '0',
9692    'translate' => '0',
9693  ))
9694  ->values(array(
9695    'nid' => '31',
9696    'vid' => '43',
9697    'type' => 'poll',
9698    'language' => '',
9699    'title' => 'poll title 6',
9700    'uid' => '4',
9701    'status' => '1',
9702    'created' => '1262991600',
9703    'changed' => '1282936268',
9704    'comment' => '0',
9705    'promote' => '0',
9706    'moderate' => '0',
9707    'sticky' => '0',
9708    'tnid' => '0',
9709    'translate' => '0',
9710  ))
9711  ->values(array(
9712    'nid' => '32',
9713    'vid' => '44',
9714    'type' => 'poll',
9715    'language' => '',
9716    'title' => 'poll title 7',
9717    'uid' => '4',
9718    'status' => '1',
9719    'created' => '1263034800',
9720    'changed' => '1282936268',
9721    'comment' => '0',
9722    'promote' => '1',
9723    'moderate' => '0',
9724    'sticky' => '0',
9725    'tnid' => '0',
9726    'translate' => '0',
9727  ))
9728  ->values(array(
9729    'nid' => '33',
9730    'vid' => '45',
9731    'type' => 'poll',
9732    'language' => '',
9733    'title' => 'poll title 8',
9734    'uid' => '5',
9735    'status' => '0',
9736    'created' => '1263078000',
9737    'changed' => '1282936268',
9738    'comment' => '0',
9739    'promote' => '0',
9740    'moderate' => '0',
9741    'sticky' => '0',
9742    'tnid' => '0',
9743    'translate' => '0',
9744  ))
9745  ->values(array(
9746    'nid' => '34',
9747    'vid' => '46',
9748    'type' => 'poll',
9749    'language' => '',
9750    'title' => 'poll title 9',
9751    'uid' => '5',
9752    'status' => '0',
9753    'created' => '1263121200',
9754    'changed' => '1282936268',
9755    'comment' => '0',
9756    'promote' => '1',
9757    'moderate' => '0',
9758    'sticky' => '0',
9759    'tnid' => '0',
9760    'translate' => '0',
9761  ))
9762  ->values(array(
9763    'nid' => '35',
9764    'vid' => '47',
9765    'type' => 'poll',
9766    'language' => '',
9767    'title' => 'poll title 10',
9768    'uid' => '5',
9769    'status' => '1',
9770    'created' => '1263164400',
9771    'changed' => '1282936268',
9772    'comment' => '0',
9773    'promote' => '0',
9774    'moderate' => '0',
9775    'sticky' => '0',
9776    'tnid' => '0',
9777    'translate' => '0',
9778  ))
9779  ->values(array(
9780    'nid' => '36',
9781    'vid' => '48',
9782    'type' => 'poll',
9783    'language' => '',
9784    'title' => 'poll title 11',
9785    'uid' => '5',
9786    'status' => '1',
9787    'created' => '1263207600',
9788    'changed' => '1282936268',
9789    'comment' => '0',
9790    'promote' => '1',
9791    'moderate' => '0',
9792    'sticky' => '0',
9793    'tnid' => '0',
9794    'translate' => '0',
9795  ))
9796  ->values(array(
9797    'nid' => '37',
9798    'vid' => '49',
9799    'type' => 'broken',
9800    'language' => '',
9801    'title' => 'node title 24',
9802    'uid' => '6',
9803    'status' => '1',
9804    'created' => '1263769200',
9805    'changed' => '1279310614',
9806    'comment' => '0',
9807    'promote' => '0',
9808    'moderate' => '0',
9809    'sticky' => '0',
9810    'tnid' => '0',
9811    'translate' => '0',
9812  ))
9813  ->execute();
9814  
9815  db_create_table('node_access', array(
9816    'fields' => array(
9817      'nid' => array(
9818        'type' => 'int',
9819        'unsigned' => TRUE,
9820        'not null' => TRUE,
9821        'default' => 0,
9822      ),
9823      'gid' => array(
9824        'type' => 'int',
9825        'unsigned' => TRUE,
9826        'not null' => TRUE,
9827        'default' => 0,
9828      ),
9829      'realm' => array(
9830        'type' => 'varchar',
9831        'length' => 255,
9832        'not null' => TRUE,
9833        'default' => '',
9834      ),
9835      'grant_view' => array(
9836        'type' => 'int',
9837        'unsigned' => TRUE,
9838        'not null' => TRUE,
9839        'default' => 0,
9840        'size' => 'tiny',
9841      ),
9842      'grant_update' => array(
9843        'type' => 'int',
9844        'unsigned' => TRUE,
9845        'not null' => TRUE,
9846        'default' => 0,
9847        'size' => 'tiny',
9848      ),
9849      'grant_delete' => array(
9850        'type' => 'int',
9851        'unsigned' => TRUE,
9852        'not null' => TRUE,
9853        'default' => 0,
9854        'size' => 'tiny',
9855      ),
9856    ),
9857    'primary key' => array(
9858      'nid',
9859      'gid',
9860      'realm',
9861    ),
9862    'module' => 'node',
9863    'name' => 'node_access',
9864  ));
9865  db_insert('node_access')->fields(array(
9866    'nid',
9867    'gid',
9868    'realm',
9869    'grant_view',
9870    'grant_update',
9871    'grant_delete',
9872  ))
9873  ->values(array(
9874    'nid' => '0',
9875    'gid' => '0',
9876    'realm' => 'all',
9877    'grant_view' => '1',
9878    'grant_update' => '0',
9879    'grant_delete' => '0',
9880  ))
9881  ->execute();
9882  
9883  db_create_table('node_comment_statistics', array(
9884    'fields' => array(
9885      'nid' => array(
9886        'type' => 'int',
9887        'unsigned' => TRUE,
9888        'not null' => TRUE,
9889        'default' => 0,
9890      ),
9891      'last_comment_timestamp' => array(
9892        'type' => 'int',
9893        'not null' => TRUE,
9894        'default' => 0,
9895      ),
9896      'last_comment_name' => array(
9897        'type' => 'varchar',
9898        'length' => 60,
9899        'not null' => FALSE,
9900      ),
9901      'last_comment_uid' => array(
9902        'type' => 'int',
9903        'not null' => TRUE,
9904        'default' => 0,
9905      ),
9906      'comment_count' => array(
9907        'type' => 'int',
9908        'unsigned' => TRUE,
9909        'not null' => TRUE,
9910        'default' => 0,
9911      ),
9912    ),
9913    'primary key' => array(
9914      'nid',
9915    ),
9916    'indexes' => array(
9917      'node_comment_timestamp' => array(
9918        'last_comment_timestamp',
9919      ),
9920    ),
9921    'module' => 'comment',
9922    'name' => 'node_comment_statistics',
9923  ));
9924  db_insert('node_comment_statistics')->fields(array(
9925    'nid',
9926    'last_comment_timestamp',
9927    'last_comment_name',
9928    'last_comment_uid',
9929    'comment_count',
9930  ))
9931  ->values(array(
9932    'nid' => '1',
9933    'last_comment_timestamp' => '1282936266',
9934    'last_comment_name' => NULL,
9935    'last_comment_uid' => '3',
9936    'comment_count' => '0',
9937  ))
9938  ->values(array(
9939    'nid' => '2',
9940    'last_comment_timestamp' => '1282936266',
9941    'last_comment_name' => NULL,
9942    'last_comment_uid' => '3',
9943    'comment_count' => '0',
9944  ))
9945  ->values(array(
9946    'nid' => '3',
9947    'last_comment_timestamp' => '1282936266',
9948    'last_comment_name' => NULL,
9949    'last_comment_uid' => '3',
9950    'comment_count' => '0',
9951  ))
9952  ->values(array(
9953    'nid' => '4',
9954    'last_comment_timestamp' => '1282936266',
9955    'last_comment_name' => NULL,
9956    'last_comment_uid' => '3',
9957    'comment_count' => '0',
9958  ))
9959  ->values(array(
9960    'nid' => '5',
9961    'last_comment_timestamp' => '1282936266',
9962    'last_comment_name' => NULL,
9963    'last_comment_uid' => '3',
9964    'comment_count' => '0',
9965  ))
9966  ->values(array(
9967    'nid' => '6',
9968    'last_comment_timestamp' => '1282936266',
9969    'last_comment_name' => NULL,
9970    'last_comment_uid' => '3',
9971    'comment_count' => '0',
9972  ))
9973  ->values(array(
9974    'nid' => '7',
9975    'last_comment_timestamp' => '1282936266',
9976    'last_comment_name' => NULL,
9977    'last_comment_uid' => '3',
9978    'comment_count' => '0',
9979  ))
9980  ->values(array(
9981    'nid' => '8',
9982    'last_comment_timestamp' => '1282936266',
9983    'last_comment_name' => NULL,
9984    'last_comment_uid' => '3',
9985    'comment_count' => '0',
9986  ))
9987  ->values(array(
9988    'nid' => '9',
9989    'last_comment_timestamp' => '1282936266',
9990    'last_comment_name' => NULL,
9991    'last_comment_uid' => '4',
9992    'comment_count' => '0',
9993  ))
9994  ->values(array(
9995    'nid' => '10',
9996    'last_comment_timestamp' => '1282936266',
9997    'last_comment_name' => NULL,
9998    'last_comment_uid' => '4',
9999    'comment_count' => '0',
10000  ))
10001  ->values(array(
10002    'nid' => '11',
10003    'last_comment_timestamp' => '1282936267',
10004    'last_comment_name' => NULL,
10005    'last_comment_uid' => '4',
10006    'comment_count' => '0',
10007  ))
10008  ->values(array(
10009    'nid' => '12',
10010    'last_comment_timestamp' => '1282936267',
10011    'last_comment_name' => NULL,
10012    'last_comment_uid' => '4',
10013    'comment_count' => '0',
10014  ))
10015  ->values(array(
10016    'nid' => '13',
10017    'last_comment_timestamp' => '1282936267',
10018    'last_comment_name' => NULL,
10019    'last_comment_uid' => '4',
10020    'comment_count' => '0',
10021  ))
10022  ->values(array(
10023    'nid' => '14',
10024    'last_comment_timestamp' => '1282936267',
10025    'last_comment_name' => NULL,
10026    'last_comment_uid' => '4',
10027    'comment_count' => '0',
10028  ))
10029  ->values(array(
10030    'nid' => '15',
10031    'last_comment_timestamp' => '1282936267',
10032    'last_comment_name' => NULL,
10033    'last_comment_uid' => '4',
10034    'comment_count' => '0',
10035  ))
10036  ->values(array(
10037    'nid' => '16',
10038    'last_comment_timestamp' => '1282936267',
10039    'last_comment_name' => NULL,
10040    'last_comment_uid' => '4',
10041    'comment_count' => '0',
10042  ))
10043  ->values(array(
10044    'nid' => '17',
10045    'last_comment_timestamp' => '1282936267',
10046    'last_comment_name' => NULL,
10047    'last_comment_uid' => '5',
10048    'comment_count' => '0',
10049  ))
10050  ->values(array(
10051    'nid' => '18',
10052    'last_comment_timestamp' => '1282936267',
10053    'last_comment_name' => NULL,
10054    'last_comment_uid' => '5',
10055    'comment_count' => '0',
10056  ))
10057  ->values(array(
10058    'nid' => '19',
10059    'last_comment_timestamp' => '1282936267',
10060    'last_comment_name' => NULL,
10061    'last_comment_uid' => '5',
10062    'comment_count' => '0',
10063  ))
10064  ->values(array(
10065    'nid' => '20',
10066    'last_comment_timestamp' => '1282936267',
10067    'last_comment_name' => NULL,
10068    'last_comment_uid' => '5',
10069    'comment_count' => '0',
10070  ))
10071  ->values(array(
10072    'nid' => '21',
10073    'last_comment_timestamp' => '1282936267',
10074    'last_comment_name' => NULL,
10075    'last_comment_uid' => '5',
10076    'comment_count' => '0',
10077  ))
10078  ->values(array(
10079    'nid' => '22',
10080    'last_comment_timestamp' => '1282936267',
10081    'last_comment_name' => NULL,
10082    'last_comment_uid' => '5',
10083    'comment_count' => '0',
10084  ))
10085  ->values(array(
10086    'nid' => '23',
10087    'last_comment_timestamp' => '1282936267',
10088    'last_comment_name' => NULL,
10089    'last_comment_uid' => '5',
10090    'comment_count' => '0',
10091  ))
10092  ->values(array(
10093    'nid' => '24',
10094    'last_comment_timestamp' => '1282936267',
10095    'last_comment_name' => NULL,
10096    'last_comment_uid' => '5',
10097    'comment_count' => '0',
10098  ))
10099  ->values(array(
10100    'nid' => '25',
10101    'last_comment_timestamp' => '1282936268',
10102    'last_comment_name' => NULL,
10103    'last_comment_uid' => '3',
10104    'comment_count' => '0',
10105  ))
10106  ->values(array(
10107    'nid' => '26',
10108    'last_comment_timestamp' => '1282936268',
10109    'last_comment_name' => NULL,
10110    'last_comment_uid' => '3',
10111    'comment_count' => '0',
10112  ))
10113  ->values(array(
10114    'nid' => '27',
10115    'last_comment_timestamp' => '1282936268',
10116    'last_comment_name' => NULL,
10117    'last_comment_uid' => '3',
10118    'comment_count' => '0',
10119  ))
10120  ->values(array(
10121    'nid' => '28',
10122    'last_comment_timestamp' => '1282936268',
10123    'last_comment_name' => NULL,
10124    'last_comment_uid' => '3',
10125    'comment_count' => '0',
10126  ))
10127  ->values(array(
10128    'nid' => '29',
10129    'last_comment_timestamp' => '1282936268',
10130    'last_comment_name' => NULL,
10131    'last_comment_uid' => '4',
10132    'comment_count' => '0',
10133  ))
10134  ->values(array(
10135    'nid' => '30',
10136    'last_comment_timestamp' => '1282936268',
10137    'last_comment_name' => NULL,
10138    'last_comment_uid' => '4',
10139    'comment_count' => '0',
10140  ))
10141  ->values(array(
10142    'nid' => '31',
10143    'last_comment_timestamp' => '1282936268',
10144    'last_comment_name' => NULL,
10145    'last_comment_uid' => '4',
10146    'comment_count' => '0',
10147  ))
10148  ->values(array(
10149    'nid' => '32',
10150    'last_comment_timestamp' => '1282936268',
10151    'last_comment_name' => NULL,
10152    'last_comment_uid' => '4',
10153    'comment_count' => '0',
10154  ))
10155  ->values(array(
10156    'nid' => '33',
10157    'last_comment_timestamp' => '1282936268',
10158    'last_comment_name' => NULL,
10159    'last_comment_uid' => '5',
10160    'comment_count' => '0',
10161  ))
10162  ->values(array(
10163    'nid' => '34',
10164    'last_comment_timestamp' => '1282936268',
10165    'last_comment_name' => NULL,
10166    'last_comment_uid' => '5',
10167    'comment_count' => '0',
10168  ))
10169  ->values(array(
10170    'nid' => '35',
10171    'last_comment_timestamp' => '1282936268',
10172    'last_comment_name' => NULL,
10173    'last_comment_uid' => '5',
10174    'comment_count' => '0',
10175  ))
10176  ->values(array(
10177    'nid' => '36',
10178    'last_comment_timestamp' => '1282936268',
10179    'last_comment_name' => NULL,
10180    'last_comment_uid' => '5',
10181    'comment_count' => '0',
10182  ))
10183  ->values(array(
10184    'nid' => '37',
10185    'last_comment_timestamp' => '1279310615',
10186    'last_comment_name' => NULL,
10187    'last_comment_uid' => '6',
10188    'comment_count' => '0',
10189  ))
10190  ->execute();
10191  
10192  db_create_table('node_counter', array(
10193    'fields' => array(
10194      'nid' => array(
10195        'type' => 'int',
10196        'not null' => TRUE,
10197        'default' => 0,
10198      ),
10199      'totalcount' => array(
10200        'type' => 'int',
10201        'unsigned' => TRUE,
10202        'not null' => TRUE,
10203        'default' => 0,
10204        'size' => 'big',
10205      ),
10206      'daycount' => array(
10207        'type' => 'int',
10208        'unsigned' => TRUE,
10209        'not null' => TRUE,
10210        'default' => 0,
10211        'size' => 'medium',
10212      ),
10213      'timestamp' => array(
10214        'type' => 'int',
10215        'unsigned' => TRUE,
10216        'not null' => TRUE,
10217        'default' => 0,
10218      ),
10219    ),
10220    'primary key' => array(
10221      'nid',
10222    ),
10223    'module' => 'node',
10224    'name' => 'node_counter',
10225  ));
10226  
10227  db_create_table('node_revisions', array(
10228    'fields' => array(
10229      'nid' => array(
10230        'type' => 'int',
10231        'unsigned' => TRUE,
10232        'not null' => TRUE,
10233        'default' => 0,
10234      ),
10235      'vid' => array(
10236        'type' => 'serial',
10237        'unsigned' => TRUE,
10238        'not null' => TRUE,
10239      ),
10240      'uid' => array(
10241        'type' => 'int',
10242        'not null' => TRUE,
10243        'default' => 0,
10244      ),
10245      'title' => array(
10246        'type' => 'varchar',
10247        'length' => 255,
10248        'not null' => TRUE,
10249        'default' => '',
10250      ),
10251      'body' => array(
10252        'type' => 'text',
10253        'not null' => TRUE,
10254        'size' => 'big',
10255      ),
10256      'teaser' => array(
10257        'type' => 'text',
10258        'not null' => TRUE,
10259        'size' => 'big',
10260      ),
10261      'log' => array(
10262        'type' => 'text',
10263        'not null' => TRUE,
10264        'size' => 'big',
10265      ),
10266      'timestamp' => array(
10267        'type' => 'int',
10268        'not null' => TRUE,
10269        'default' => 0,
10270      ),
10271      'format' => array(
10272        'type' => 'int',
10273        'not null' => TRUE,
10274        'default' => 0,
10275      ),
10276    ),
10277    'indexes' => array(
10278      'nid' => array(
10279        'nid',
10280      ),
10281      'uid' => array(
10282        'uid',
10283      ),
10284    ),
10285    'primary key' => array(
10286      'vid',
10287    ),
10288    'module' => 'node',
10289    'name' => 'node_revisions',
10290  ));
10291  db_insert('node_revisions')->fields(array(
10292    'nid',
10293    'vid',
10294    'uid',
10295    'title',
10296    'body',
10297    'teaser',
10298    'log',
10299    'timestamp',
10300    'format',
10301  ))
10302  ->values(array(
10303    'nid' => '1',
10304    'vid' => '1',
10305    'uid' => '3',
10306    'title' => 'node title 1 rev 1 (i=0)',
10307    'body' => 'node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0',
10308    'teaser' => 'node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0',
10309    'log' => 'added 0 node',
10310    'timestamp' => '1282936266',
10311    'format' => '0',
10312  ))
10313  ->values(array(
10314    'nid' => '1',
10315    'vid' => '2',
10316    'uid' => '6',
10317    'title' => 'node title 1 rev 1 (i=0) rev2 2',
10318    'body' => 'node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0',
10319    'teaser' => 'node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0',
10320    'log' => 'added 0 revision',
10321    'timestamp' => '1282936266',
10322    'format' => '0',
10323  ))
10324  ->values(array(
10325    'nid' => '2',
10326    'vid' => '3',
10327    'uid' => '3',
10328    'title' => 'node title 2 rev 3 (i=1)',
10329    'body' => 'node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1',
10330    'teaser' => 'node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1',
10331    'log' => 'added 1 node',
10332    'timestamp' => '1282936266',
10333    'format' => '0',
10334  ))
10335  ->values(array(
10336    'nid' => '2',
10337    'vid' => '4',
10338    'uid' => '6',
10339    'title' => 'node title 2 rev 3 (i=1) rev2 4',
10340    'body' => 'node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1',
10341    'teaser' => 'node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1',
10342    'log' => 'added 1 revision',
10343    'timestamp' => '1282936266',
10344    'format' => '0',
10345  ))
10346  ->values(array(
10347    'nid' => '3',
10348    'vid' => '5',
10349    'uid' => '3',
10350    'title' => 'node title 3 rev 5 (i=2)',
10351    'body' => 'node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2',
10352    'teaser' => 'node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2',
10353    'log' => 'added 2 node',
10354    'timestamp' => '1282936266',
10355    'format' => '0',
10356  ))
10357  ->values(array(
10358    'nid' => '3',
10359    'vid' => '6',
10360    'uid' => '6',
10361    'title' => 'node title 3 rev 5 (i=2) rev2 6',
10362    'body' => 'node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2',
10363    'teaser' => 'node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2',
10364    'log' => 'added 2 revision',
10365    'timestamp' => '1282936266',
10366    'format' => '0',
10367  ))
10368  ->values(array(
10369    'nid' => '4',
10370    'vid' => '7',
10371    'uid' => '3',
10372    'title' => 'node title 4 rev 7 (i=3)',
10373    'body' => 'node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3',
10374    'teaser' => 'node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3',
10375    'log' => 'added 3 node',
10376    'timestamp' => '1282936266',
10377    'format' => '0',
10378  ))
10379  ->values(array(
10380    'nid' => '4',
10381    'vid' => '8',
10382    'uid' => '6',
10383    'title' => 'node title 4 rev 7 (i=3) rev2 8',
10384    'body' => 'node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3',
10385    'teaser' => 'node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3',
10386    'log' => 'added 3 revision',
10387    'timestamp' => '1282936266',
10388    'format' => '0',
10389  ))
10390  ->values(array(
10391    'nid' => '5',
10392    'vid' => '9',
10393    'uid' => '3',
10394    'title' => 'node title 5 rev 9 (i=4)',
10395    'body' => 'node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4',
10396    'teaser' => 'node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4',
10397    'log' => 'added 4 node',
10398    'timestamp' => '1282936266',
10399    'format' => '0',
10400  ))
10401  ->values(array(
10402    'nid' => '5',
10403    'vid' => '10',
10404    'uid' => '6',
10405    'title' => 'node title 5 rev 9 (i=4) rev2 10',
10406    'body' => 'node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4',
10407    'teaser' => 'node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4',
10408    'log' => 'added 4 revision',
10409    'timestamp' => '1282936266',
10410    'format' => '0',
10411  ))
10412  ->values(array(
10413    'nid' => '6',
10414    'vid' => '11',
10415    'uid' => '3',
10416    'title' => 'node title 6 rev 11 (i=5)',
10417    'body' => 'node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5',
10418    'teaser' => 'node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5',
10419    'log' => 'added 5 node',
10420    'timestamp' => '1282936266',
10421    'format' => '0',
10422  ))
10423  ->values(array(
10424    'nid' => '6',
10425    'vid' => '12',
10426    'uid' => '6',
10427    'title' => 'node title 6 rev 11 (i=5) rev2 12',
10428    'body' => 'node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5',
10429    'teaser' => 'node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5',
10430    'log' => 'added 5 revision',
10431    'timestamp' => '1282936266',
10432    'format' => '0',
10433  ))
10434  ->values(array(
10435    'nid' => '7',
10436    'vid' => '13',
10437    'uid' => '3',
10438    'title' => 'node title 7 rev 13 (i=6)',
10439    'body' => 'node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6',
10440    'teaser' => 'node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6',
10441    'log' => 'added 6 node',
10442    'timestamp' => '1282936266',
10443    'format' => '0',
10444  ))
10445  ->values(array(
10446    'nid' => '7',
10447    'vid' => '14',
10448    'uid' => '6',
10449    'title' => 'node title 7 rev 13 (i=6) rev2 14',
10450    'body' => 'node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6',
10451    'teaser' => 'node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6',
10452    'log' => 'added 6 revision',
10453    'timestamp' => '1282936266',
10454    'format' => '0',
10455  ))
10456  ->values(array(
10457    'nid' => '8',
10458    'vid' => '15',
10459    'uid' => '3',
10460    'title' => 'node title 8 rev 15 (i=7)',
10461    'body' => 'node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7',
10462    'teaser' => 'node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7',
10463    'log' => 'added 7 node',
10464    'timestamp' => '1282936266',
10465    'format' => '0',
10466  ))
10467  ->values(array(
10468    'nid' => '8',
10469    'vid' => '16',
10470    'uid' => '6',
10471    'title' => 'node title 8 rev 15 (i=7) rev2 16',
10472    'body' => 'node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7',
10473    'teaser' => 'node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7',
10474    'log' => 'added 7 revision',
10475    'timestamp' => '1282936266',
10476    'format' => '0',
10477  ))
10478  ->values(array(
10479    'nid' => '9',
10480    'vid' => '17',
10481    'uid' => '4',
10482    'title' => 'node title 9 rev 17 (i=8)',
10483    'body' => 'node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8',
10484    'teaser' => 'node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8',
10485    'log' => 'added 8 node',
10486    'timestamp' => '1282936266',
10487    'format' => '0',
10488  ))
10489  ->values(array(
10490    'nid' => '9',
10491    'vid' => '18',
10492    'uid' => '7',
10493    'title' => 'node title 9 rev 17 (i=8) rev2 18',
10494    'body' => 'node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8',
10495    'teaser' => 'node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8',
10496    'log' => 'added 8 revision',
10497    'timestamp' => '1282936266',
10498    'format' => '0',
10499  ))
10500  ->values(array(
10501    'nid' => '10',
10502    'vid' => '19',
10503    'uid' => '4',
10504    'title' => 'node title 10 rev 19 (i=9)',
10505    'body' => 'node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9',
10506    'teaser' => 'node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node