media_migration-8.x-1.x-dev/tests/fixtures/drupal7_nomedia/menu_links.php
tests/fixtures/drupal7_nomedia/menu_links.php
<?php
// phpcs:ignoreFile
/**
* @file
* A database agnostic dump for testing purposes.
*
* This file was generated by the Drupal 9.2.10 db-tools.php script.
*/
use Drupal\Core\Database\Database;
$connection = Database::getConnection();
$connection->schema()->createTable('menu_links', array(
'fields' => array(
'menu_name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '32',
'default' => '',
),
'mlid' => array(
'type' => 'serial',
'not null' => TRUE,
'size' => 'normal',
'unsigned' => TRUE,
),
'plid' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
'unsigned' => TRUE,
),
'link_path' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'router_path' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'link_title' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'options' => array(
'type' => 'blob',
'not null' => FALSE,
'size' => 'normal',
),
'module' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => 'system',
),
'hidden' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'small',
'default' => '0',
),
'external' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'small',
'default' => '0',
),
'has_children' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'small',
'default' => '0',
),
'expanded' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'small',
'default' => '0',
),
'weight' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
),
'depth' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'small',
'default' => '0',
),
'customized' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'small',
'default' => '0',
),
'p1' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
'unsigned' => TRUE,
),
'p2' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
'unsigned' => TRUE,
),
'p3' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
'unsigned' => TRUE,
),
'p4' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
'unsigned' => TRUE,
),
'p5' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
'unsigned' => TRUE,
),
'p6' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
'unsigned' => TRUE,
),
'p7' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
'unsigned' => TRUE,
),
'p8' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
'unsigned' => TRUE,
),
'p9' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
'unsigned' => TRUE,
),
'updated' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'small',
'default' => '0',
),
),
'primary key' => array(
'mlid',
),
'indexes' => array(
'path_menu' => array(
array(
'link_path',
'128',
),
'menu_name',
),
'menu_plid_expand_child' => array(
'menu_name',
'plid',
'expanded',
'has_children',
),
'menu_parents' => array(
'menu_name',
'p1',
'p2',
'p3',
'p4',
'p5',
'p6',
'p7',
'p8',
'p9',
),
'router_path' => array(
array(
'router_path',
'128',
),
),
),
'mysql_character_set' => 'utf8',
));
$connection->insert('menu_links')
->fields(array(
'menu_name',
'mlid',
'plid',
'link_path',
'router_path',
'link_title',
'options',
'module',
'hidden',
'external',
'has_children',
'expanded',
'weight',
'depth',
'customized',
'p1',
'p2',
'p3',
'p4',
'p5',
'p6',
'p7',
'p8',
'p9',
'updated',
))
->values(array(
'menu_name' => 'management',
'mlid' => '1',
'plid' => '0',
'link_path' => 'admin',
'router_path' => 'admin',
'link_title' => 'Administration',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '9',
'depth' => '1',
'customized' => '0',
'p1' => '1',
'p2' => '0',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'user-menu',
'mlid' => '2',
'plid' => '0',
'link_path' => 'user',
'router_path' => 'user',
'link_title' => 'User account',
'options' => 'a:1:{s:5:"alter";b:1;}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-10',
'depth' => '1',
'customized' => '0',
'p1' => '2',
'p2' => '0',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'navigation',
'mlid' => '4',
'plid' => '0',
'link_path' => 'filter/tips',
'router_path' => 'filter/tips',
'link_title' => 'Compose tips',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '1',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '0',
'depth' => '1',
'customized' => '0',
'p1' => '4',
'p2' => '0',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'navigation',
'mlid' => '5',
'plid' => '0',
'link_path' => 'node/%',
'router_path' => 'node/%',
'link_title' => '',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '1',
'customized' => '0',
'p1' => '5',
'p2' => '0',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'navigation',
'mlid' => '6',
'plid' => '0',
'link_path' => 'node/add',
'router_path' => 'node/add',
'link_title' => 'Add content',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '0',
'depth' => '1',
'customized' => '0',
'p1' => '6',
'p2' => '0',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '7',
'plid' => '1',
'link_path' => 'admin/appearance',
'router_path' => 'admin/appearance',
'link_title' => 'Appearance',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:33:"Select and configure your themes.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-6',
'depth' => '2',
'customized' => '0',
'p1' => '1',
'p2' => '7',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '8',
'plid' => '1',
'link_path' => 'admin/config',
'router_path' => 'admin/config',
'link_title' => 'Configuration',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:20:"Administer settings.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '0',
'depth' => '2',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '9',
'plid' => '1',
'link_path' => 'admin/content',
'router_path' => 'admin/content',
'link_title' => 'Content',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:24:"Find and manage content.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-10',
'depth' => '2',
'customized' => '0',
'p1' => '1',
'p2' => '9',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'user-menu',
'mlid' => '10',
'plid' => '2',
'link_path' => 'user/register',
'router_path' => 'user/register',
'link_title' => 'Create new account',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '2',
'customized' => '0',
'p1' => '2',
'p2' => '10',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '13',
'plid' => '1',
'link_path' => 'admin/index',
'router_path' => 'admin/index',
'link_title' => 'Index',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-18',
'depth' => '2',
'customized' => '0',
'p1' => '1',
'p2' => '13',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'user-menu',
'mlid' => '14',
'plid' => '2',
'link_path' => 'user/login',
'router_path' => 'user/login',
'link_title' => 'Log in',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '2',
'customized' => '0',
'p1' => '2',
'p2' => '14',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'user-menu',
'mlid' => '15',
'plid' => '0',
'link_path' => 'user/logout',
'router_path' => 'user/logout',
'link_title' => 'Log out',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '10',
'depth' => '1',
'customized' => '0',
'p1' => '15',
'p2' => '0',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '16',
'plid' => '1',
'link_path' => 'admin/modules',
'router_path' => 'admin/modules',
'link_title' => 'Modules',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:26:"Extend site functionality.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-2',
'depth' => '2',
'customized' => '0',
'p1' => '1',
'p2' => '16',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'navigation',
'mlid' => '17',
'plid' => '0',
'link_path' => 'user/%',
'router_path' => 'user/%',
'link_title' => 'My account',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '0',
'depth' => '1',
'customized' => '0',
'p1' => '17',
'p2' => '0',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '18',
'plid' => '1',
'link_path' => 'admin/people',
'router_path' => 'admin/people',
'link_title' => 'People',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:45:"Manage user accounts, roles, and permissions.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-4',
'depth' => '2',
'customized' => '0',
'p1' => '1',
'p2' => '18',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '19',
'plid' => '1',
'link_path' => 'admin/reports',
'router_path' => 'admin/reports',
'link_title' => 'Reports',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:34:"View reports, updates, and errors.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '5',
'depth' => '2',
'customized' => '0',
'p1' => '1',
'p2' => '19',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'user-menu',
'mlid' => '20',
'plid' => '2',
'link_path' => 'user/password',
'router_path' => 'user/password',
'link_title' => 'Request new password',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '2',
'customized' => '0',
'p1' => '2',
'p2' => '20',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '21',
'plid' => '1',
'link_path' => 'admin/structure',
'router_path' => 'admin/structure',
'link_title' => 'Structure',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:45:"Administer blocks, content types, menus, etc.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '-8',
'depth' => '2',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '22',
'plid' => '1',
'link_path' => 'admin/tasks',
'router_path' => 'admin/tasks',
'link_title' => 'Tasks',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-20',
'depth' => '2',
'customized' => '0',
'p1' => '1',
'p2' => '22',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'navigation',
'mlid' => '25',
'plid' => '4',
'link_path' => 'filter/tips/%',
'router_path' => 'filter/tips/%',
'link_title' => 'Compose tips',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '2',
'customized' => '0',
'p1' => '4',
'p2' => '25',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '30',
'plid' => '18',
'link_path' => 'admin/people/create',
'router_path' => 'admin/people/create',
'link_title' => 'Add user',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '3',
'customized' => '0',
'p1' => '1',
'p2' => '18',
'p3' => '30',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '31',
'plid' => '21',
'link_path' => 'admin/structure/block',
'router_path' => 'admin/structure/block',
'link_title' => 'Blocks',
'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.\";}}",
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '0',
'depth' => '3',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '31',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'navigation',
'mlid' => '32',
'plid' => '17',
'link_path' => 'user/%/cancel',
'router_path' => 'user/%/cancel',
'link_title' => 'Cancel account',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '0',
'depth' => '2',
'customized' => '0',
'p1' => '17',
'p2' => '32',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '35',
'plid' => '9',
'link_path' => 'admin/content/node',
'router_path' => 'admin/content/node',
'link_title' => 'Content',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-10',
'depth' => '3',
'customized' => '0',
'p1' => '1',
'p2' => '9',
'p3' => '35',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '36',
'plid' => '8',
'link_path' => 'admin/config/content',
'router_path' => 'admin/config/content',
'link_title' => 'Content authoring',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:53:"Settings related to formatting and authoring content.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '-15',
'depth' => '3',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '36',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '37',
'plid' => '21',
'link_path' => 'admin/structure/types',
'router_path' => 'admin/structure/types',
'link_title' => 'Content types',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:92:"Manage content types, including default status, front page promotion, comment settings, etc.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '0',
'depth' => '3',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '37',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'navigation',
'mlid' => '39',
'plid' => '5',
'link_path' => 'node/%/delete',
'router_path' => 'node/%/delete',
'link_title' => 'Delete',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '1',
'depth' => '2',
'customized' => '0',
'p1' => '5',
'p2' => '39',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '40',
'plid' => '8',
'link_path' => 'admin/config/development',
'router_path' => 'admin/config/development',
'link_title' => 'Development',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:18:"Development tools.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '-10',
'depth' => '3',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '40',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'navigation',
'mlid' => '41',
'plid' => '17',
'link_path' => 'user/%/edit',
'router_path' => 'user/%/edit',
'link_title' => 'Edit',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '2',
'customized' => '0',
'p1' => '17',
'p2' => '41',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'navigation',
'mlid' => '42',
'plid' => '5',
'link_path' => 'node/%/edit',
'router_path' => 'node/%/edit',
'link_title' => 'Edit',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '2',
'customized' => '0',
'p1' => '5',
'p2' => '42',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '43',
'plid' => '19',
'link_path' => 'admin/reports/fields',
'router_path' => 'admin/reports/fields',
'link_title' => 'Field list',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:39:"Overview of fields on all entity types.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '3',
'customized' => '0',
'p1' => '1',
'p2' => '19',
'p3' => '43',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '44',
'plid' => '16',
'link_path' => 'admin/modules/list',
'router_path' => 'admin/modules/list',
'link_title' => 'List',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '3',
'customized' => '0',
'p1' => '1',
'p2' => '16',
'p3' => '44',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '45',
'plid' => '18',
'link_path' => 'admin/people/people',
'router_path' => 'admin/people/people',
'link_title' => 'List',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:50:"Find and manage people interacting with your site.";}}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-10',
'depth' => '3',
'customized' => '0',
'p1' => '1',
'p2' => '18',
'p3' => '45',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '46',
'plid' => '7',
'link_path' => 'admin/appearance/list',
'router_path' => 'admin/appearance/list',
'link_title' => 'List',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:31:"Select and configure your theme";}}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-1',
'depth' => '3',
'customized' => '0',
'p1' => '1',
'p2' => '7',
'p3' => '46',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '47',
'plid' => '8',
'link_path' => 'admin/config/media',
'router_path' => 'admin/config/media',
'link_title' => 'Media',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:12:"Media tools.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '-10',
'depth' => '3',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '47',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '48',
'plid' => '21',
'link_path' => 'admin/structure/menu',
'router_path' => 'admin/structure/menu',
'link_title' => 'Menus',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:86:"Add new menus to your site, edit existing menus, and rename and reorganize menu links.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '0',
'depth' => '3',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '48',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '49',
'plid' => '8',
'link_path' => 'admin/config/people',
'router_path' => 'admin/config/people',
'link_title' => 'People',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:24:"Configure user accounts.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '-20',
'depth' => '3',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '49',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '50',
'plid' => '18',
'link_path' => 'admin/people/permissions',
'router_path' => 'admin/people/permissions',
'link_title' => 'Permissions',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:64:"Determine access to features by selecting permissions for roles.";}}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '3',
'customized' => '0',
'p1' => '1',
'p2' => '18',
'p3' => '50',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '52',
'plid' => '8',
'link_path' => 'admin/config/regional',
'router_path' => 'admin/config/regional',
'link_title' => 'Regional and language',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:48:"Regional settings, localization and translation.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '-5',
'depth' => '3',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '52',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'navigation',
'mlid' => '53',
'plid' => '5',
'link_path' => 'node/%/revisions',
'router_path' => 'node/%/revisions',
'link_title' => 'Revisions',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '2',
'depth' => '2',
'customized' => '0',
'p1' => '5',
'p2' => '53',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '54',
'plid' => '8',
'link_path' => 'admin/config/search',
'router_path' => 'admin/config/search',
'link_title' => 'Search and metadata',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:36:"Local site search, metadata and SEO.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '-10',
'depth' => '3',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '54',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '55',
'plid' => '7',
'link_path' => 'admin/appearance/settings',
'router_path' => 'admin/appearance/settings',
'link_title' => 'Settings',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:46:"Configure default and theme specific settings.";}}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '20',
'depth' => '3',
'customized' => '0',
'p1' => '1',
'p2' => '7',
'p3' => '55',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '56',
'plid' => '19',
'link_path' => 'admin/reports/status',
'router_path' => 'admin/reports/status',
'link_title' => 'Status report',
'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.\";}}",
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-60',
'depth' => '3',
'customized' => '0',
'p1' => '1',
'p2' => '19',
'p3' => '56',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '57',
'plid' => '8',
'link_path' => 'admin/config/system',
'router_path' => 'admin/config/system',
'link_title' => 'System',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:37:"General system related configuration.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '-20',
'depth' => '3',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '57',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '61',
'plid' => '16',
'link_path' => 'admin/modules/uninstall',
'router_path' => 'admin/modules/uninstall',
'link_title' => 'Uninstall',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '20',
'depth' => '3',
'customized' => '0',
'p1' => '1',
'p2' => '16',
'p3' => '61',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '62',
'plid' => '8',
'link_path' => 'admin/config/user-interface',
'router_path' => 'admin/config/user-interface',
'link_title' => 'User interface',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:38:"Tools that enhance the user interface.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-15',
'depth' => '3',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '62',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'navigation',
'mlid' => '63',
'plid' => '5',
'link_path' => 'node/%/view',
'router_path' => 'node/%/view',
'link_title' => 'View',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-10',
'depth' => '2',
'customized' => '0',
'p1' => '5',
'p2' => '63',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'navigation',
'mlid' => '64',
'plid' => '17',
'link_path' => 'user/%/view',
'router_path' => 'user/%/view',
'link_title' => 'View',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-10',
'depth' => '2',
'customized' => '0',
'p1' => '17',
'p2' => '64',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '65',
'plid' => '8',
'link_path' => 'admin/config/services',
'router_path' => 'admin/config/services',
'link_title' => 'Web services',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:30:"Tools related to web services.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '0',
'depth' => '3',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '65',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '66',
'plid' => '8',
'link_path' => 'admin/config/workflow',
'router_path' => 'admin/config/workflow',
'link_title' => 'Workflow',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"Content workflow, editorial workflow tools.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '5',
'depth' => '3',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '66',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '91',
'plid' => '49',
'link_path' => 'admin/config/people/accounts',
'router_path' => 'admin/config/people/accounts',
'link_title' => 'Account settings',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:109:"Configure default behavior of users, including registration requirements, e-mails, fields, and user pictures.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-10',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '49',
'p4' => '91',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '92',
'plid' => '57',
'link_path' => 'admin/config/system/actions',
'router_path' => 'admin/config/system/actions',
'link_title' => 'Actions',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:41:"Manage the actions defined for your site.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '57',
'p4' => '92',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '93',
'plid' => '31',
'link_path' => 'admin/structure/block/add',
'router_path' => 'admin/structure/block/add',
'link_title' => 'Add block',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '31',
'p4' => '93',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '94',
'plid' => '37',
'link_path' => 'admin/structure/types/add',
'router_path' => 'admin/structure/types/add',
'link_title' => 'Add content type',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '37',
'p4' => '94',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '95',
'plid' => '48',
'link_path' => 'admin/structure/menu/add',
'router_path' => 'admin/structure/menu/add',
'link_title' => 'Add menu',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '48',
'p4' => '95',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '97',
'plid' => '55',
'link_path' => 'admin/appearance/settings/bartik',
'router_path' => 'admin/appearance/settings/bartik',
'link_title' => 'Bartik',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '7',
'p3' => '55',
'p4' => '97',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '98',
'plid' => '54',
'link_path' => 'admin/config/search/clean-urls',
'router_path' => 'admin/config/search/clean-urls',
'link_title' => 'Clean URLs',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"Enable or disable clean URLs for your site.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '5',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '54',
'p4' => '98',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '99',
'plid' => '57',
'link_path' => 'admin/config/system/cron',
'router_path' => 'admin/config/system/cron',
'link_title' => 'Cron',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:40:"Manage automatic site maintenance tasks.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '20',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '57',
'p4' => '99',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '100',
'plid' => '52',
'link_path' => 'admin/config/regional/date-time',
'router_path' => 'admin/config/regional/date-time',
'link_title' => 'Date and time',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:44:"Configure display formats for date and time.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-15',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '52',
'p4' => '100',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '102',
'plid' => '47',
'link_path' => 'admin/config/media/file-system',
'router_path' => 'admin/config/media/file-system',
'link_title' => 'File system',
'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.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-10',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '47',
'p4' => '102',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '103',
'plid' => '55',
'link_path' => 'admin/appearance/settings/garland',
'router_path' => 'admin/appearance/settings/garland',
'link_title' => 'Garland',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '7',
'p3' => '55',
'p4' => '103',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '104',
'plid' => '55',
'link_path' => 'admin/appearance/settings/global',
'router_path' => 'admin/appearance/settings/global',
'link_title' => 'Global settings',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-1',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '7',
'p3' => '55',
'p4' => '104',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '105',
'plid' => '49',
'link_path' => 'admin/config/people/ip-blocking',
'router_path' => 'admin/config/people/ip-blocking',
'link_title' => 'IP address blocking',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:28:"Manage blocked IP addresses.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '10',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '49',
'p4' => '105',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '106',
'plid' => '47',
'link_path' => 'admin/config/media/image-styles',
'router_path' => 'admin/config/media/image-styles',
'link_title' => 'Image styles',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:78:"Configure styles that can be used for resizing or adjusting images on display.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '47',
'p4' => '106',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '107',
'plid' => '47',
'link_path' => 'admin/config/media/image-toolkit',
'router_path' => 'admin/config/media/image-toolkit',
'link_title' => 'Image toolkit',
'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.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '20',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '47',
'p4' => '107',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '108',
'plid' => '44',
'link_path' => 'admin/modules/list/confirm',
'router_path' => 'admin/modules/list/confirm',
'link_title' => 'List',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '16',
'p3' => '44',
'p4' => '108',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '109',
'plid' => '37',
'link_path' => 'admin/structure/types/list',
'router_path' => 'admin/structure/types/list',
'link_title' => 'List',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-10',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '37',
'p4' => '109',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '111',
'plid' => '48',
'link_path' => 'admin/structure/menu/list',
'router_path' => 'admin/structure/menu/list',
'link_title' => 'List menus',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-10',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '48',
'p4' => '111',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '112',
'plid' => '40',
'link_path' => 'admin/config/development/logging',
'router_path' => 'admin/config/development/logging',
'link_title' => 'Logging and errors',
'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:154:\"Settings for logging and alerts modules. Various modules can route Drupal's system events to different destinations, such as syslog, database, email, etc.\";}}",
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-15',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '40',
'p4' => '112',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '113',
'plid' => '40',
'link_path' => 'admin/config/development/maintenance',
'router_path' => 'admin/config/development/maintenance',
'link_title' => 'Maintenance mode',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:62:"Take the site offline for maintenance or bring it back online.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-10',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '40',
'p4' => '113',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '114',
'plid' => '40',
'link_path' => 'admin/config/development/performance',
'router_path' => 'admin/config/development/performance',
'link_title' => 'Performance',
'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.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-20',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '40',
'p4' => '114',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '115',
'plid' => '50',
'link_path' => 'admin/people/permissions/list',
'router_path' => 'admin/people/permissions/list',
'link_title' => 'Permissions',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:64:"Determine access to features by selecting permissions for roles.";}}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-8',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '18',
'p3' => '50',
'p4' => '115',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '117',
'plid' => '65',
'link_path' => 'admin/config/services/rss-publishing',
'router_path' => 'admin/config/services/rss-publishing',
'link_title' => 'RSS publishing',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:114:"Configure the site description, the number of items per feed and whether feeds should be titles/teasers/full-text.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '65',
'p4' => '117',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '118',
'plid' => '52',
'link_path' => 'admin/config/regional/settings',
'router_path' => 'admin/config/regional/settings',
'link_title' => 'Regional settings',
'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:54:\"Settings for the site's default time zone and country.\";}}",
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-20',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '52',
'p4' => '118',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '119',
'plid' => '50',
'link_path' => 'admin/people/permissions/roles',
'router_path' => 'admin/people/permissions/roles',
'link_title' => 'Roles',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:30:"List, edit, or add user roles.";}}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '-5',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '18',
'p3' => '50',
'p4' => '119',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '120',
'plid' => '48',
'link_path' => 'admin/structure/menu/settings',
'router_path' => 'admin/structure/menu/settings',
'link_title' => 'Settings',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '5',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '48',
'p4' => '120',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '121',
'plid' => '55',
'link_path' => 'admin/appearance/settings/seven',
'router_path' => 'admin/appearance/settings/seven',
'link_title' => 'Seven',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '7',
'p3' => '55',
'p4' => '121',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '122',
'plid' => '57',
'link_path' => 'admin/config/system/site-information',
'router_path' => 'admin/config/system/site-information',
'link_title' => 'Site information',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:104:"Change site name, e-mail address, slogan, default front page, and number of posts per page, error pages.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-20',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '57',
'p4' => '122',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '123',
'plid' => '55',
'link_path' => 'admin/appearance/settings/stark',
'router_path' => 'admin/appearance/settings/stark',
'link_title' => 'Stark',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '7',
'p3' => '55',
'p4' => '123',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '124',
'plid' => '36',
'link_path' => 'admin/config/content/formats',
'router_path' => 'admin/config/content/formats',
'link_title' => 'Text formats',
'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.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '36',
'p4' => '124',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '126',
'plid' => '61',
'link_path' => 'admin/modules/uninstall/confirm',
'router_path' => 'admin/modules/uninstall/confirm',
'link_title' => 'Uninstall',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '16',
'p3' => '61',
'p4' => '126',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'navigation',
'mlid' => '127',
'plid' => '41',
'link_path' => 'user/%/edit/account',
'router_path' => 'user/%/edit/account',
'link_title' => 'Account',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '3',
'customized' => '0',
'p1' => '17',
'p2' => '41',
'p3' => '127',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '128',
'plid' => '124',
'link_path' => 'admin/config/content/formats/%',
'router_path' => 'admin/config/content/formats/%',
'link_title' => '',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '36',
'p4' => '124',
'p5' => '128',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '129',
'plid' => '106',
'link_path' => 'admin/config/media/image-styles/add',
'router_path' => 'admin/config/media/image-styles/add',
'link_title' => 'Add style',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:22:"Add a new image style.";}}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '2',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '47',
'p4' => '106',
'p5' => '129',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '131',
'plid' => '124',
'link_path' => 'admin/config/content/formats/add',
'router_path' => 'admin/config/content/formats/add',
'link_title' => 'Add text format',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '1',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '36',
'p4' => '124',
'p5' => '131',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '132',
'plid' => '31',
'link_path' => 'admin/structure/block/list/bartik',
'router_path' => 'admin/structure/block/list/bartik',
'link_title' => 'Bartik',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-10',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '31',
'p4' => '132',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '133',
'plid' => '92',
'link_path' => 'admin/config/system/actions/configure',
'router_path' => 'admin/config/system/actions/configure',
'link_title' => 'Configure an advanced action',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '57',
'p4' => '92',
'p5' => '133',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '134',
'plid' => '48',
'link_path' => 'admin/structure/menu/manage/%',
'router_path' => 'admin/structure/menu/manage/%',
'link_title' => 'Customize menu',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '48',
'p4' => '134',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '136',
'plid' => '37',
'link_path' => 'admin/structure/types/manage/%',
'router_path' => 'admin/structure/types/manage/%',
'link_title' => 'Edit content type',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '37',
'p4' => '136',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '137',
'plid' => '100',
'link_path' => 'admin/config/regional/date-time/formats',
'router_path' => 'admin/config/regional/date-time/formats',
'link_title' => 'Formats',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:51:"Configure display format strings for date and time.";}}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '-9',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '52',
'p4' => '100',
'p5' => '137',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '138',
'plid' => '31',
'link_path' => 'admin/structure/block/list/garland',
'router_path' => 'admin/structure/block/list/garland',
'link_title' => 'Garland',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '31',
'p4' => '138',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '139',
'plid' => '124',
'link_path' => 'admin/config/content/formats/list',
'router_path' => 'admin/config/content/formats/list',
'link_title' => 'List',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '36',
'p4' => '124',
'p5' => '139',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '141',
'plid' => '106',
'link_path' => 'admin/config/media/image-styles/list',
'router_path' => 'admin/config/media/image-styles/list',
'link_title' => 'List',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:42:"List the current image styles on the site.";}}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '1',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '47',
'p4' => '106',
'p5' => '141',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '142',
'plid' => '92',
'link_path' => 'admin/config/system/actions/manage',
'router_path' => 'admin/config/system/actions/manage',
'link_title' => 'Manage actions',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:41:"Manage the actions defined for your site.";}}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-2',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '57',
'p4' => '92',
'p5' => '142',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '143',
'plid' => '91',
'link_path' => 'admin/config/people/accounts/settings',
'router_path' => 'admin/config/people/accounts/settings',
'link_title' => 'Settings',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-10',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '49',
'p4' => '91',
'p5' => '143',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '144',
'plid' => '31',
'link_path' => 'admin/structure/block/list/seven',
'router_path' => 'admin/structure/block/list/seven',
'link_title' => 'Seven',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '31',
'p4' => '144',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '145',
'plid' => '31',
'link_path' => 'admin/structure/block/list/stark',
'router_path' => 'admin/structure/block/list/stark',
'link_title' => 'Stark',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '31',
'p4' => '145',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '146',
'plid' => '100',
'link_path' => 'admin/config/regional/date-time/types',
'router_path' => 'admin/config/regional/date-time/types',
'link_title' => 'Types',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:44:"Configure display formats for date and time.";}}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '-10',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '52',
'p4' => '100',
'p5' => '146',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'navigation',
'mlid' => '147',
'plid' => '53',
'link_path' => 'node/%/revisions/%/delete',
'router_path' => 'node/%/revisions/%/delete',
'link_title' => 'Delete earlier revision',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '3',
'customized' => '0',
'p1' => '5',
'p2' => '53',
'p3' => '147',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'navigation',
'mlid' => '148',
'plid' => '53',
'link_path' => 'node/%/revisions/%/revert',
'router_path' => 'node/%/revisions/%/revert',
'link_title' => 'Revert to earlier revision',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '3',
'customized' => '0',
'p1' => '5',
'p2' => '53',
'p3' => '148',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'navigation',
'mlid' => '149',
'plid' => '53',
'link_path' => 'node/%/revisions/%/view',
'router_path' => 'node/%/revisions/%/view',
'link_title' => 'Revisions',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '3',
'customized' => '0',
'p1' => '5',
'p2' => '53',
'p3' => '149',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '150',
'plid' => '138',
'link_path' => 'admin/structure/block/list/garland/add',
'router_path' => 'admin/structure/block/list/garland/add',
'link_title' => 'Add block',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '31',
'p4' => '138',
'p5' => '150',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '151',
'plid' => '144',
'link_path' => 'admin/structure/block/list/seven/add',
'router_path' => 'admin/structure/block/list/seven/add',
'link_title' => 'Add block',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '31',
'p4' => '144',
'p5' => '151',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '152',
'plid' => '145',
'link_path' => 'admin/structure/block/list/stark/add',
'router_path' => 'admin/structure/block/list/stark/add',
'link_title' => 'Add block',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '31',
'p4' => '145',
'p5' => '152',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '153',
'plid' => '146',
'link_path' => 'admin/config/regional/date-time/types/add',
'router_path' => 'admin/config/regional/date-time/types/add',
'link_title' => 'Add date type',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:18:"Add new date type.";}}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-10',
'depth' => '6',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '52',
'p4' => '100',
'p5' => '146',
'p6' => '153',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '154',
'plid' => '137',
'link_path' => 'admin/config/regional/date-time/formats/add',
'router_path' => 'admin/config/regional/date-time/formats/add',
'link_title' => 'Add format',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"Allow users to add additional date formats.";}}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-10',
'depth' => '6',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '52',
'p4' => '100',
'p5' => '137',
'p6' => '154',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '155',
'plid' => '134',
'link_path' => 'admin/structure/menu/manage/%/add',
'router_path' => 'admin/structure/menu/manage/%/add',
'link_title' => 'Add link',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '48',
'p4' => '134',
'p5' => '155',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '156',
'plid' => '31',
'link_path' => 'admin/structure/block/manage/%/%',
'router_path' => 'admin/structure/block/manage/%/%',
'link_title' => 'Configure block',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '31',
'p4' => '156',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'navigation',
'mlid' => '157',
'plid' => '32',
'link_path' => 'user/%/cancel/confirm/%/%',
'router_path' => 'user/%/cancel/confirm/%/%',
'link_title' => 'Confirm account cancellation',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '3',
'customized' => '0',
'p1' => '17',
'p2' => '32',
'p3' => '157',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '158',
'plid' => '136',
'link_path' => 'admin/structure/types/manage/%/delete',
'router_path' => 'admin/structure/types/manage/%/delete',
'link_title' => 'Delete',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '37',
'p4' => '136',
'p5' => '158',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '159',
'plid' => '105',
'link_path' => 'admin/config/people/ip-blocking/delete/%',
'router_path' => 'admin/config/people/ip-blocking/delete/%',
'link_title' => 'Delete IP address',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '49',
'p4' => '105',
'p5' => '159',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '160',
'plid' => '92',
'link_path' => 'admin/config/system/actions/delete/%',
'router_path' => 'admin/config/system/actions/delete/%',
'link_title' => 'Delete action',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:17:"Delete an action.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '57',
'p4' => '92',
'p5' => '160',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '161',
'plid' => '134',
'link_path' => 'admin/structure/menu/manage/%/delete',
'router_path' => 'admin/structure/menu/manage/%/delete',
'link_title' => 'Delete menu',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '48',
'p4' => '134',
'p5' => '161',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '162',
'plid' => '48',
'link_path' => 'admin/structure/menu/item/%/delete',
'router_path' => 'admin/structure/menu/item/%/delete',
'link_title' => 'Delete menu link',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '48',
'p4' => '162',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '163',
'plid' => '119',
'link_path' => 'admin/people/permissions/roles/delete/%',
'router_path' => 'admin/people/permissions/roles/delete/%',
'link_title' => 'Delete role',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '18',
'p3' => '50',
'p4' => '119',
'p5' => '163',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '164',
'plid' => '128',
'link_path' => 'admin/config/content/formats/%/disable',
'router_path' => 'admin/config/content/formats/%/disable',
'link_title' => 'Disable text format',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '6',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '36',
'p4' => '124',
'p5' => '128',
'p6' => '164',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '165',
'plid' => '136',
'link_path' => 'admin/structure/types/manage/%/edit',
'router_path' => 'admin/structure/types/manage/%/edit',
'link_title' => 'Edit',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '37',
'p4' => '136',
'p5' => '165',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '166',
'plid' => '134',
'link_path' => 'admin/structure/menu/manage/%/edit',
'router_path' => 'admin/structure/menu/manage/%/edit',
'link_title' => 'Edit menu',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '48',
'p4' => '134',
'p5' => '166',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '167',
'plid' => '48',
'link_path' => 'admin/structure/menu/item/%/edit',
'router_path' => 'admin/structure/menu/item/%/edit',
'link_title' => 'Edit menu link',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '48',
'p4' => '167',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '168',
'plid' => '119',
'link_path' => 'admin/people/permissions/roles/edit/%',
'router_path' => 'admin/people/permissions/roles/edit/%',
'link_title' => 'Edit role',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '18',
'p3' => '50',
'p4' => '119',
'p5' => '168',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '169',
'plid' => '106',
'link_path' => 'admin/config/media/image-styles/edit/%',
'router_path' => 'admin/config/media/image-styles/edit/%',
'link_title' => 'Edit style',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:25:"Configure an image style.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '47',
'p4' => '106',
'p5' => '169',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '170',
'plid' => '134',
'link_path' => 'admin/structure/menu/manage/%/list',
'router_path' => 'admin/structure/menu/manage/%/list',
'link_title' => 'List links',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-10',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '48',
'p4' => '134',
'p5' => '170',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '171',
'plid' => '48',
'link_path' => 'admin/structure/menu/item/%/reset',
'router_path' => 'admin/structure/menu/item/%/reset',
'link_title' => 'Reset menu link',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '48',
'p4' => '171',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '172',
'plid' => '106',
'link_path' => 'admin/config/media/image-styles/delete/%',
'router_path' => 'admin/config/media/image-styles/delete/%',
'link_title' => 'Delete style',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:22:"Delete an image style.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '47',
'p4' => '106',
'p5' => '172',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '173',
'plid' => '106',
'link_path' => 'admin/config/media/image-styles/revert/%',
'router_path' => 'admin/config/media/image-styles/revert/%',
'link_title' => 'Revert style',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:22:"Revert an image style.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '47',
'p4' => '106',
'p5' => '173',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '176',
'plid' => '156',
'link_path' => 'admin/structure/block/manage/%/%/configure',
'router_path' => 'admin/structure/block/manage/%/%/configure',
'link_title' => 'Configure block',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '31',
'p4' => '156',
'p5' => '176',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '177',
'plid' => '156',
'link_path' => 'admin/structure/block/manage/%/%/delete',
'router_path' => 'admin/structure/block/manage/%/%/delete',
'link_title' => 'Delete block',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '31',
'p4' => '156',
'p5' => '177',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '178',
'plid' => '137',
'link_path' => 'admin/config/regional/date-time/formats/%/delete',
'router_path' => 'admin/config/regional/date-time/formats/%/delete',
'link_title' => 'Delete date format',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:47:"Allow users to delete a configured date format.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '6',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '52',
'p4' => '100',
'p5' => '137',
'p6' => '178',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '179',
'plid' => '146',
'link_path' => 'admin/config/regional/date-time/types/%/delete',
'router_path' => 'admin/config/regional/date-time/types/%/delete',
'link_title' => 'Delete date type',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:45:"Allow users to delete a configured date type.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '6',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '52',
'p4' => '100',
'p5' => '146',
'p6' => '179',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '180',
'plid' => '137',
'link_path' => 'admin/config/regional/date-time/formats/%/edit',
'router_path' => 'admin/config/regional/date-time/formats/%/edit',
'link_title' => 'Edit date format',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:45:"Allow users to edit a configured date format.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '6',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '52',
'p4' => '100',
'p5' => '137',
'p6' => '180',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '181',
'plid' => '169',
'link_path' => 'admin/config/media/image-styles/edit/%/add/%',
'router_path' => 'admin/config/media/image-styles/edit/%/add/%',
'link_title' => 'Add image effect',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:28:"Add a new effect to a style.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '6',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '47',
'p4' => '106',
'p5' => '169',
'p6' => '181',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '182',
'plid' => '169',
'link_path' => 'admin/config/media/image-styles/edit/%/effects/%',
'router_path' => 'admin/config/media/image-styles/edit/%/effects/%',
'link_title' => 'Edit image effect',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:39:"Edit an existing effect within a style.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '0',
'depth' => '6',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '47',
'p4' => '106',
'p5' => '169',
'p6' => '182',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '183',
'plid' => '182',
'link_path' => 'admin/config/media/image-styles/edit/%/effects/%/delete',
'router_path' => 'admin/config/media/image-styles/edit/%/effects/%/delete',
'link_title' => 'Delete image effect',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:39:"Delete an existing effect from a style.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '7',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '47',
'p4' => '106',
'p5' => '169',
'p6' => '182',
'p7' => '183',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '184',
'plid' => '48',
'link_path' => 'admin/structure/menu/manage/main-menu',
'router_path' => 'admin/structure/menu/manage/%',
'link_title' => 'Main menu',
'options' => 'a:0:{}',
'module' => 'menu',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '48',
'p4' => '184',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '185',
'plid' => '48',
'link_path' => 'admin/structure/menu/manage/management',
'router_path' => 'admin/structure/menu/manage/%',
'link_title' => 'Management',
'options' => 'a:0:{}',
'module' => 'menu',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '48',
'p4' => '185',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '186',
'plid' => '48',
'link_path' => 'admin/structure/menu/manage/navigation',
'router_path' => 'admin/structure/menu/manage/%',
'link_title' => 'Navigation',
'options' => 'a:0:{}',
'module' => 'menu',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '48',
'p4' => '186',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '187',
'plid' => '48',
'link_path' => 'admin/structure/menu/manage/user-menu',
'router_path' => 'admin/structure/menu/manage/%',
'link_title' => 'User menu',
'options' => 'a:0:{}',
'module' => 'menu',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '48',
'p4' => '187',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '203',
'plid' => '54',
'link_path' => 'admin/config/search/path',
'router_path' => 'admin/config/search/path',
'link_title' => 'URL aliases',
'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:46:\"Change your site's URL paths by aliasing them.\";}}",
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '-5',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '54',
'p4' => '203',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '204',
'plid' => '203',
'link_path' => 'admin/config/search/path/add',
'router_path' => 'admin/config/search/path/add',
'link_title' => 'Add alias',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '54',
'p4' => '203',
'p5' => '204',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '208',
'plid' => '203',
'link_path' => 'admin/config/search/path/list',
'router_path' => 'admin/config/search/path/list',
'link_title' => 'List',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-10',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '54',
'p4' => '203',
'p5' => '208',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '210',
'plid' => '203',
'link_path' => 'admin/config/search/path/delete/%',
'router_path' => 'admin/config/search/path/delete/%',
'link_title' => 'Delete alias',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '54',
'p4' => '203',
'p5' => '210',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '212',
'plid' => '203',
'link_path' => 'admin/config/search/path/edit/%',
'router_path' => 'admin/config/search/path/edit/%',
'link_title' => 'Edit alias',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '54',
'p4' => '203',
'p5' => '212',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'main-menu',
'mlid' => '219',
'plid' => '0',
'link_path' => '<front>',
'router_path' => '',
'link_title' => 'Home',
'options' => 'a:0:{}',
'module' => 'menu',
'hidden' => '0',
'external' => '1',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '1',
'customized' => '0',
'p1' => '219',
'p2' => '0',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'navigation',
'mlid' => '220',
'plid' => '6',
'link_path' => 'node/add/article',
'router_path' => 'node/add/article',
'link_title' => 'Article',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:89:"Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '2',
'customized' => '0',
'p1' => '6',
'p2' => '220',
'p3' => '0',
'p4' => '0',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '262',
'plid' => '91',
'link_path' => 'admin/config/people/accounts/display',
'router_path' => 'admin/config/people/accounts/display',
'link_title' => 'Manage display',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '2',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '49',
'p4' => '91',
'p5' => '262',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '264',
'plid' => '91',
'link_path' => 'admin/config/people/accounts/fields',
'router_path' => 'admin/config/people/accounts/fields',
'link_title' => 'Manage fields',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '1',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '49',
'p4' => '91',
'p5' => '264',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '266',
'plid' => '262',
'link_path' => 'admin/config/people/accounts/display/default',
'router_path' => 'admin/config/people/accounts/display/default',
'link_title' => 'Default',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-10',
'depth' => '6',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '49',
'p4' => '91',
'p5' => '262',
'p6' => '266',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '267',
'plid' => '136',
'link_path' => 'admin/structure/types/manage/%/display',
'router_path' => 'admin/structure/types/manage/%/display',
'link_title' => 'Manage display',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '2',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '37',
'p4' => '136',
'p5' => '267',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '268',
'plid' => '136',
'link_path' => 'admin/structure/types/manage/%/fields',
'router_path' => 'admin/structure/types/manage/%/fields',
'link_title' => 'Manage fields',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '1',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '37',
'p4' => '136',
'p5' => '268',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '270',
'plid' => '262',
'link_path' => 'admin/config/people/accounts/display/full',
'router_path' => 'admin/config/people/accounts/display/full',
'link_title' => 'User account',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '6',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '49',
'p4' => '91',
'p5' => '262',
'p6' => '270',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '272',
'plid' => '264',
'link_path' => 'admin/config/people/accounts/fields/%',
'router_path' => 'admin/config/people/accounts/fields/%',
'link_title' => '',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '6',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '49',
'p4' => '91',
'p5' => '264',
'p6' => '272',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '273',
'plid' => '267',
'link_path' => 'admin/structure/types/manage/%/display/default',
'router_path' => 'admin/structure/types/manage/%/display/default',
'link_title' => 'Default',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-10',
'depth' => '6',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '37',
'p4' => '136',
'p5' => '267',
'p6' => '273',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '274',
'plid' => '267',
'link_path' => 'admin/structure/types/manage/%/display/full',
'router_path' => 'admin/structure/types/manage/%/display/full',
'link_title' => 'Full content',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '6',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '37',
'p4' => '136',
'p5' => '267',
'p6' => '274',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '275',
'plid' => '267',
'link_path' => 'admin/structure/types/manage/%/display/rss',
'router_path' => 'admin/structure/types/manage/%/display/rss',
'link_title' => 'RSS',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '2',
'depth' => '6',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '37',
'p4' => '136',
'p5' => '267',
'p6' => '275',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '278',
'plid' => '267',
'link_path' => 'admin/structure/types/manage/%/display/teaser',
'router_path' => 'admin/structure/types/manage/%/display/teaser',
'link_title' => 'Teaser',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '1',
'depth' => '6',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '37',
'p4' => '136',
'p5' => '267',
'p6' => '278',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '279',
'plid' => '268',
'link_path' => 'admin/structure/types/manage/%/fields/%',
'router_path' => 'admin/structure/types/manage/%/fields/%',
'link_title' => '',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '6',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '37',
'p4' => '136',
'p5' => '268',
'p6' => '279',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '284',
'plid' => '272',
'link_path' => 'admin/config/people/accounts/fields/%/delete',
'router_path' => 'admin/config/people/accounts/fields/%/delete',
'link_title' => 'Delete',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '10',
'depth' => '7',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '49',
'p4' => '91',
'p5' => '264',
'p6' => '272',
'p7' => '284',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '285',
'plid' => '272',
'link_path' => 'admin/config/people/accounts/fields/%/edit',
'router_path' => 'admin/config/people/accounts/fields/%/edit',
'link_title' => 'Edit',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '7',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '49',
'p4' => '91',
'p5' => '264',
'p6' => '272',
'p7' => '285',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '286',
'plid' => '272',
'link_path' => 'admin/config/people/accounts/fields/%/field-settings',
'router_path' => 'admin/config/people/accounts/fields/%/field-settings',
'link_title' => 'Field settings',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '7',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '49',
'p4' => '91',
'p5' => '264',
'p6' => '272',
'p7' => '286',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '287',
'plid' => '272',
'link_path' => 'admin/config/people/accounts/fields/%/widget-type',
'router_path' => 'admin/config/people/accounts/fields/%/widget-type',
'link_title' => 'Widget type',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '7',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '49',
'p4' => '91',
'p5' => '264',
'p6' => '272',
'p7' => '287',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '291',
'plid' => '279',
'link_path' => 'admin/structure/types/manage/%/fields/%/delete',
'router_path' => 'admin/structure/types/manage/%/fields/%/delete',
'link_title' => 'Delete',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '10',
'depth' => '7',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '37',
'p4' => '136',
'p5' => '268',
'p6' => '279',
'p7' => '291',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '292',
'plid' => '279',
'link_path' => 'admin/structure/types/manage/%/fields/%/edit',
'router_path' => 'admin/structure/types/manage/%/fields/%/edit',
'link_title' => 'Edit',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '7',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '37',
'p4' => '136',
'p5' => '268',
'p6' => '279',
'p7' => '292',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '293',
'plid' => '279',
'link_path' => 'admin/structure/types/manage/%/fields/%/field-settings',
'router_path' => 'admin/structure/types/manage/%/fields/%/field-settings',
'link_title' => 'Field settings',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '7',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '37',
'p4' => '136',
'p5' => '268',
'p6' => '279',
'p7' => '293',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '294',
'plid' => '279',
'link_path' => 'admin/structure/types/manage/%/fields/%/widget-type',
'router_path' => 'admin/structure/types/manage/%/fields/%/widget-type',
'link_title' => 'Widget type',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '7',
'customized' => '0',
'p1' => '1',
'p2' => '21',
'p3' => '37',
'p4' => '136',
'p5' => '268',
'p6' => '279',
'p7' => '294',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '299',
'plid' => '36',
'link_path' => 'admin/config/content/wysiwyg',
'router_path' => 'admin/config/content/wysiwyg',
'link_title' => 'Wysiwyg profiles',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:30:"Configure client-side editors.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '1',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '36',
'p4' => '299',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '300',
'plid' => '299',
'link_path' => 'admin/config/content/wysiwyg/list',
'router_path' => 'admin/config/content/wysiwyg/list',
'link_title' => 'List',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-10',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '36',
'p4' => '299',
'p5' => '300',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '301',
'plid' => '299',
'link_path' => 'admin/config/content/wysiwyg/profile/%',
'router_path' => 'admin/config/content/wysiwyg/profile/%',
'link_title' => '',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '36',
'p4' => '299',
'p5' => '301',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '302',
'plid' => '301',
'link_path' => 'admin/config/content/wysiwyg/profile/%/break-lock',
'router_path' => 'admin/config/content/wysiwyg/profile/%/break-lock',
'link_title' => 'Break lock',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '6',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '36',
'p4' => '299',
'p5' => '301',
'p6' => '302',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '303',
'plid' => '301',
'link_path' => 'admin/config/content/wysiwyg/profile/%/edit',
'router_path' => 'admin/config/content/wysiwyg/profile/%/edit',
'link_title' => 'Edit',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '6',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '36',
'p4' => '299',
'p5' => '301',
'p6' => '303',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '304',
'plid' => '301',
'link_path' => 'admin/config/content/wysiwyg/profile/%/delete',
'router_path' => 'admin/config/content/wysiwyg/profile/%/delete',
'link_title' => 'Remove',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '10',
'depth' => '6',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '36',
'p4' => '299',
'p5' => '301',
'p6' => '304',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '305',
'plid' => '36',
'link_path' => 'admin/config/content/linkit',
'router_path' => 'admin/config/content/linkit',
'link_title' => 'Linkit Profiles',
'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:23:"Manage Linkit profiles.";}}',
'module' => 'system',
'hidden' => '0',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '4',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '36',
'p4' => '305',
'p5' => '0',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '306',
'plid' => '305',
'link_path' => 'admin/config/content/linkit/add',
'router_path' => 'admin/config/content/linkit/add',
'link_title' => 'Add new profile',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '36',
'p4' => '305',
'p5' => '306',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '307',
'plid' => '305',
'link_path' => 'admin/config/content/linkit/import',
'router_path' => 'admin/config/content/linkit/import',
'link_title' => 'Import profiles',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '36',
'p4' => '305',
'p5' => '307',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '308',
'plid' => '305',
'link_path' => 'admin/config/content/linkit/list',
'router_path' => 'admin/config/content/linkit/list',
'link_title' => 'List',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-10',
'depth' => '5',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '36',
'p4' => '305',
'p5' => '308',
'p6' => '0',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '309',
'plid' => '308',
'link_path' => 'admin/config/content/linkit/list/%/edit',
'router_path' => 'admin/config/content/linkit/list/%/edit',
'link_title' => 'Edit',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '-10',
'depth' => '6',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '36',
'p4' => '305',
'p5' => '308',
'p6' => '309',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->values(array(
'menu_name' => 'management',
'mlid' => '310',
'plid' => '308',
'link_path' => 'admin/config/content/linkit/list/%/export',
'router_path' => 'admin/config/content/linkit/list/%/export',
'link_title' => 'Export',
'options' => 'a:0:{}',
'module' => 'system',
'hidden' => '-1',
'external' => '0',
'has_children' => '0',
'expanded' => '0',
'weight' => '0',
'depth' => '6',
'customized' => '0',
'p1' => '1',
'p2' => '8',
'p3' => '36',
'p4' => '305',
'p5' => '308',
'p6' => '310',
'p7' => '0',
'p8' => '0',
'p9' => '0',
'updated' => '0',
))
->execute();
