diff --git a/migrations/d7_field_collection.yml b/migrations/d7_field_collection.yml new file mode 100644 index 0000000..ff4d0b8 --- /dev/null +++ b/migrations/d7_field_collection.yml @@ -0,0 +1,19 @@ +id: d7_field_collection +label: Field Collections +migration_tags: + - Drupal 7 +deriver: Drupal\paragraphs\Plugin\migrate\D7FieldCollectionItemDeriver +prefix: field_ +source: + prefix: field_ + plugin: d7_field_collection_item +process: + type: bundle + +destination: + plugin: entity_reference_revisions:paragraph +migration_dependencies: + required: + - d7_field_collection_type + optional: + - d7_field_instance diff --git a/migrations/d7_field_collection_revisions.yml b/migrations/d7_field_collection_revisions.yml new file mode 100644 index 0000000..349e15b --- /dev/null +++ b/migrations/d7_field_collection_revisions.yml @@ -0,0 +1,26 @@ +id: d7_field_collection_revisions +label: Field Collection Revisions +migration_tags: + - Drupal 7 +deriver: Drupal\paragraphs\Plugin\migrate\D7FieldCollectionItemDeriver +prefix: field_ +source: + prefix: field_ + plugin: d7_field_collection_item_revision +process: + id: + - + plugin: migration_lookup + migration: d7_field_collection + source: item_id + - + plugin: extract + index: + - + 0 + type: bundle +destination: + plugin: entity_revision:paragraph +migration_dependencies: + required: + - d7_field_collection \ No newline at end of file diff --git a/migrations/d7_paragraphs.yml b/migrations/d7_paragraphs.yml new file mode 100644 index 0000000..b566484 --- /dev/null +++ b/migrations/d7_paragraphs.yml @@ -0,0 +1,16 @@ +id: d7_paragraphs +label: Paragraphs +migration_tags: + - Drupal 7 +deriver: Drupal\paragraphs\Plugin\migrate\D7ParagraphsItemDeriver +source: + plugin: d7_paragraphs_item +process: + type: bundle +destination: + plugin: entity_reference_revisions:paragraph +migration_dependencies: + required: + - d7_paragraphs_type + optional: + - d7_field_instance diff --git a/migrations/d7_paragraphs_revisions.yml b/migrations/d7_paragraphs_revisions.yml new file mode 100644 index 0000000..d8613a8 --- /dev/null +++ b/migrations/d7_paragraphs_revisions.yml @@ -0,0 +1,24 @@ +id: d7_paragraphs_revisions +label: Paragraphs Revisions +migration_tags: + - Drupal 7 +deriver: Drupal\paragraphs\Plugin\migrate\D7ParagraphsItemDeriver +source: + plugin: d7_paragraphs_item_revision +process: + id: + - + plugin: migration_lookup + migration: d7_paragraphs + source: item_id + - + plugin: extract + index: + - + 0 + type: bundle +destination: + plugin: entity_revision:paragraph +migration_dependencies: + required: + - d7_paragraphs diff --git a/migrations/d7_paragraph_type.yml b/migrations/d7_paragraphs_type.yml similarity index 100% rename from migrations/d7_paragraph_type.yml rename to migrations/d7_paragraphs_type.yml diff --git a/paragraphs.module b/paragraphs.module index 037f924..457e66c 100644 --- a/paragraphs.module +++ b/paragraphs.module @@ -5,10 +5,15 @@ * Contains paragraphs.module */ -use Drupal\Core\Field\FieldConfigInterface; use Drupal\Core\Url; use Drupal\Core\Routing\RouteMatchInterface; use Drupal\field\FieldStorageConfigInterface; +use Drupal\field\Plugin\migrate\source\d7\Field; +use Drupal\field\Plugin\migrate\source\d7\FieldInstance; +use Drupal\field\Plugin\migrate\source\d7\FieldInstancePerViewMode; +use Drupal\field\Plugin\migrate\source\d7\FieldInstancePerFormDisplay; +use Drupal\field\Plugin\migrate\source\d7\ViewMode; +use Drupal\migrate_drupal\Plugin\migrate\FieldMigration; use Drupal\paragraphs\Entity\ParagraphsType; use Drupal\Core\Render\Element; @@ -441,3 +446,107 @@ function paragraphs_library_info_alter(&$libraries, $extension) { return $libraries; } + +/** + * Implements hook_migration_plugins_alter(). + * + * @todo refactor/rethink this when + * https://www.drupal.org/project/drupal/issues/2904765 is resolved + */ +function paragraphs_migration_plugins_alter(array &$migrations) { + foreach ($migrations as $key => &$migration) { + /** @var \Drupal\migrate\Plugin\MigrationPluginManager $migration_plugin_manager */ + $migration_plugin_manager = \Drupal::service('plugin.manager.migration'); + $migration_stub = $migration_plugin_manager->createStubMigration($migration); + /** @var \Drupal\migrate\Plugin\MigrateSourcePluginManager $source_plugin_manager */ + $source_plugin_manager = \Drupal::service('plugin.manager.migrate.source'); + $source = NULL; + $configuration = $migration['source']; + $source = $source_plugin_manager->createInstance($migration['source']['plugin'], $configuration, $migration_stub); + if ($source) { + if ((is_a($migration['class'], FieldMigration::class, TRUE))) { + + // Field storage. + if (is_a($source, Field::class)) { + _paragraphs_migration_entity_type_adjust($migration); + } + + // Field instance. + if (is_a($source, FieldInstance::class)) { + _paragraphs_migration_entity_type_adjust($migration); + _paragraphs_migration_bundle_adjust($migration); + $migration['migration_dependencies']['optional'][] = 'd7_field_collection_type'; + $migration['migration_dependencies']['optional'][] = 'd7_paragraphs_type'; + } + } + + // View Modes. + if (is_a($source, ViewMode::class)) { + _paragraphs_migration_entity_type_adjust($migration, 'targetEntityType'); + } + } + } +} + +/** + * Remove 'field_' prefix from field collection bundles. + * + * @param array $migration + * The migration configuration to process. + */ +function _paragraphs_migration_bundle_adjust(array &$migration) { + + if (!isset($migration['process']['bundle'])) { + $migration['process']['bundle'] = []; + } + + $bundle_process = $migration['process']['bundle']; + + // Try to play nice with other modules altering this, and don't replace + // it outright unless it's unchanged. + if (array_key_exists('plugin', $bundle_process)) { + $bundle_process = [$bundle_process]; + } + $bundle_process[] = [ + 'plugin' => 'paragraphs_process_on_value', + 'source_value' => 'entity_type', + 'expected_value' => 'field_collection_item', + 'process' => [ + 'plugin' => 'paragraphs_strip_prefix', + 'prefix' => 'field_', + ], + ]; + $migration['process']['bundle'] = $bundle_process; +} + +/** + * Map field_collection_item and 'paragraphs_item' fields to 'paragraph'. + * + * @param array $migration + * Thei migration to process. + * @param string $destination + * The process destination. + */ +function _paragraphs_migration_entity_type_adjust(array &$migration, $destination = 'entity_type') { + $entity_type_process = $migration['process'][$destination]; + + // Try to play with other modules altering this, and don't replace it + // outright unless it's unchanged. + if (!is_array($entity_type_process)) { + $entity_type_process = [ + [ + 'plugin' => 'get', + 'source' => 'entity_type', + ], + ]; + } + $entity_type_process[] = [ + 'plugin' => 'static_map', + 'map' => [ + 'field_collection_item' => 'paragraph', + 'paragraphs_item' => 'paragraph', + ], + 'bypass' => TRUE, + ]; + $migration['process'][$destination] = $entity_type_process; +} diff --git a/src/Plugin/migrate/D7FieldCollectionItemDeriver.php b/src/Plugin/migrate/D7FieldCollectionItemDeriver.php new file mode 100644 index 0000000..7c3bf97 --- /dev/null +++ b/src/Plugin/migrate/D7FieldCollectionItemDeriver.php @@ -0,0 +1,178 @@ +basePluginId = $base_plugin_id; + $this->cckPluginManager = $cck_manager; + $this->fieldPluginManager = $field_manager; + } + + /** + * {@inheritdoc} + */ + public static function create(ContainerInterface $container, $base_plugin_id) { + return new static( + $base_plugin_id, + $container->get('plugin.manager.migrate.cckfield'), + $container->get('plugin.manager.migrate.field') + ); + } + + /** + * {@inheritdoc} + */ + public function getDerivativeDefinitions($base_plugin_definition) { + $definition = [ + 'source' => [ + 'ignore_map' => TRUE, + 'plugin' => 'd7_field_collection_type', + 'prefix' => 'field_', + ], + 'destination' => [ + 'plugin' => 'null', + ], + ]; + + /** @var \Drupal\migrate\Plugin\MigrateSourceInterface|\Drupal\migrate\Plugin\RequirementsInterface $types */ + $types = \Drupal::service('plugin.manager.migration')->createStubMigration($definition)->getSourcePlugin(); + + try { + $types->checkRequirements(); + } + catch (RequirementsException $e) { + return $this->derivatives; + } + + $fields = []; + try { + $source_plugin = static::getSourcePlugin('d7_field_instance'); + $source_plugin->checkRequirements(); + + foreach ($source_plugin as $row) { + if ($row->getSourceProperty('entity_type') == 'field_collection_item') { + $fields[$row->getSourceProperty('bundle')][$row->getSourceProperty('field_name')] = $row->getSource(); + } + } + } + catch (RequirementsException $e) { + + } + + try { + foreach ($types as $row) { + /** @var \Drupal\migrate\Row $row */ + $values = $base_plugin_definition; + $fc_bundle = $row->getSourceProperty('field_name'); + $p_bundle = $row->getSourceProperty('bundle'); + $values['label'] = t('@label (@type)', [ + '@label' => $values['label'], + '@type' => $row->getSourceProperty('name'), + ]); + $values['source']['field_name'] = $fc_bundle; + $values['destination']['default_bundle'] = $p_bundle; + + /** @var \Drupal\migrate\Plugin\Migration $migration */ + $migration = \Drupal::service('plugin.manager.migration') + ->createStubMigration($values); + if (isset($fields[$fc_bundle])) { + + foreach ($fields[$fc_bundle] as $field_name => $info) { + $field_type = $info['type']; + try { + $plugin_id = $this->fieldPluginManager->getPluginIdFromFieldType($field_type, ['core' => 7], $migration); + if (!isset($this->fieldPluginCache[$field_type])) { + $this->fieldPluginCache[$field_type] = $this->fieldPluginManager->createInstance($plugin_id, ['core' => 7], $migration); + } + $this->fieldPluginCache[$field_type] + ->processFieldValues($migration, $field_name, $info); + } + catch (PluginNotFoundException $ex) { + try { + $plugin_id = $this->cckPluginManager->getPluginIdFromFieldType($field_type, ['core' => 7], $migration); + if (!isset($this->cckPluginCache[$field_type])) { + $this->cckPluginCache[$field_type] = $this->cckPluginManager->createInstance($plugin_id, ['core' => 7], $migration); + } + $this->cckPluginCache[$field_type] + ->processCckFieldValues($migration, $field_name, $info); + } + catch (PluginNotFoundException $ex) { + $migration->setProcessOfProperty($field_name, $field_name); + } + } + } + } + $this->derivatives[$p_bundle] = $migration->getPluginDefinition(); + } + } + catch (DatabaseExceptionWrapper $e) { + // Once we begin iterating the source plugin it is possible that the + // source tables will not exist. This can happen when the + // MigrationPluginManager gathers up the migration definitions but we do + // not actually have a Drupal 7 source database. + } + return $this->derivatives; + } + +} diff --git a/src/Plugin/migrate/D7ParagraphsItemDeriver.php b/src/Plugin/migrate/D7ParagraphsItemDeriver.php new file mode 100644 index 0000000..62da913 --- /dev/null +++ b/src/Plugin/migrate/D7ParagraphsItemDeriver.php @@ -0,0 +1,164 @@ +basePluginId = $base_plugin_id; + $this->cckPluginManager = $cck_manager; + $this->fieldPluginManager = $field_manager; + } + + /** + * {@inheritdoc} + */ + public static function create(ContainerInterface $container, $base_plugin_id) { + return new static( + $base_plugin_id, + $container->get('plugin.manager.migrate.cckfield'), + $container->get('plugin.manager.migrate.field') + ); + } + + /** + * {@inheritdoc} + */ + public function getDerivativeDefinitions($base_plugin_definition) { + + $types = static::getSourcePlugin('d7_paragraphs_type'); + try { + $types->checkRequirements(); + } + catch (RequirementsException $e) { + return $this->derivatives; + } + + $fields = []; + try { + $source_plugin = static::getSourcePlugin('d7_field_instance'); + $source_plugin->checkRequirements(); + + foreach ($source_plugin as $row) { + if ($row->getSourceProperty('entity_type') == 'paragraphs_item') { + $fields[$row->getSourceProperty('bundle')][$row->getSourceProperty('field_name')] = $row->getSource(); + } + } + } + catch (RequirementsException $e) { + + } + + try { + foreach ($types as $row) { + $values = $base_plugin_definition; + $bundle = $row->getSourceProperty('bundle'); + $values['label'] = t('@label (@type)', [ + '@label' => $values['label'], + '@type' => $row->getSourceProperty('name'), + ]); + $values['source']['bundle'] = $bundle; + $values['destination']['default_bundle'] = $bundle; + + /** @var \Drupal\migrate\Plugin\Migration $migration */ + $migration = \Drupal::service('plugin.manager.migration') + ->createStubMigration($values); + if (isset($fields[$bundle])) { + + foreach ($fields[$bundle] as $field_name => $info) { + $field_type = $info['type']; + try { + $plugin_id = $this->fieldPluginManager->getPluginIdFromFieldType($field_type, ['core' => 7], $migration); + if (!isset($this->fieldPluginCache[$field_type])) { + $this->fieldPluginCache[$field_type] = $this->fieldPluginManager->createInstance($plugin_id, ['core' => 7], $migration); + } + $this->fieldPluginCache[$field_type] + ->processFieldValues($migration, $field_name, $info); + } + catch (PluginNotFoundException $ex) { + try { + $plugin_id = $this->cckPluginManager->getPluginIdFromFieldType($field_type, ['core' => 7], $migration); + if (!isset($this->cckPluginCache[$field_type])) { + $this->cckPluginCache[$field_type] = $this->cckPluginManager->createInstance($plugin_id, ['core' => 7], $migration); + } + $this->cckPluginCache[$field_type] + ->processCckFieldValues($migration, $field_name, $info); + } + catch (PluginNotFoundException $ex) { + $migration->setProcessOfProperty($field_name, $field_name); + } + } + } + } + $this->derivatives[$bundle] = $migration->getPluginDefinition(); + } + } + catch (DatabaseExceptionWrapper $e) { + // Once we begin iterating the source plugin it is possible that the + // source tables will not exist. This can happen when the + // MigrationPluginManager gathers up the migration definitions but we do + // not actually have a Drupal 7 source database. + } + return $this->derivatives; + } + +} diff --git a/src/Plugin/migrate/field/FieldCollection.php b/src/Plugin/migrate/field/FieldCollection.php new file mode 100644 index 0000000..6c46b3b --- /dev/null +++ b/src/Plugin/migrate/field/FieldCollection.php @@ -0,0 +1,120 @@ + 'sub_process', + 'source' => $field_name, + 'process' => [ + 'target_id' => [ + [ + 'plugin' => 'migration_lookup', + 'migration' => 'd7_field_collection', + 'source' => 'value', + ], + [ + 'plugin' => 'extract', + 'index' => [0], + ], + ], + 'target_revision_id' => [ + [ + 'plugin' => 'migration_lookup', + 'migration' => [ + 'd7_field_collection_revisions', + 'd7_field_collection', + ], + 'source_ids' => [ + 'd7_field_collection_revisions' => ['revision_id'], + 'd7_field_collection' => ['value'], + ], + // D8.4 Does not like an empty source value, Even when using ids. + 'source' => 'value', + ], + [ + 'plugin' => 'paragraphs_process_revision_id', + ], + ], + ], + ]; + $migration->setProcessOfProperty($field_name, $process); + } + + /** + * {@inheritdoc} + */ + public function processFieldFormatter(MigrationInterface $migration) { + $options_type[0]['map']['field_collection_view'] = 'entity_reference_revisions_entity_view'; + + $view_mode = [ + 'paragraphs' => [ + 'plugin' => 'paragraphs_process_on_value', + 'source_value' => 'type', + 'expected_value' => 'field_collection', + 'process' => [ + 'plugin' => 'get', + 'source' => 'formatter/settings/view_mode', + ], + ], + ]; + + $migration->mergeProcessOfProperty('options/type', $options_type); + $migration->mergeProcessOfProperty('options/settings/view_mode', $view_mode); + } + + /** + * {@inheritdoc} + */ + public function getFieldWidgetMap() { + return ['field_collection_embed' => 'entity_reference_paragraphs'] + + parent::getFieldWidgetMap(); + } + + /** + * {@inheritdoc} + */ + public function processField(MigrationInterface $migration) { + $settings = [ + 'field_collection' => [ + 'plugin' => 'field_collection_field_settings', + ], + ]; + $migration->mergeProcessOfProperty('settings', $settings); + } + + /** + * {@inheritdoc} + */ + public function processFieldInstance(MigrationInterface $migration) { + $settings = [ + 'field_collection' => [ + 'plugin' => 'field_collection_field_instance_settings', + 'prefix' => 'field_', + ], + ]; + $migration->mergeProcessOfProperty('settings', $settings); + } + +} diff --git a/src/Plugin/migrate/field/Paragraphs.php b/src/Plugin/migrate/field/Paragraphs.php new file mode 100644 index 0000000..8866dcd --- /dev/null +++ b/src/Plugin/migrate/field/Paragraphs.php @@ -0,0 +1,175 @@ + 'sub_process', + 'source' => $field_name, + 'process' => [ + 'target_id' => [ + [ + 'plugin' => 'migration_lookup', + 'migration' => 'd7_paragraphs', + 'source' => 'value', + ], + [ + 'plugin' => 'extract', + 'index' => [0], + ], + ], + 'target_revision_id' => [ + [ + 'plugin' => 'migration_lookup', + 'migration' => [ + 'd7_paragraphs_revisions', + 'd7_paragraphs', + ], + 'source_ids' => [ + 'd7_paragraphs_revisions' => ['revision_id'], + 'd7_paragraphs' => ['value'], + ], + // D8.4 Does not like an empty source value, Even when using ids. + 'source' => 'value', + ], + [ + 'plugin' => 'paragraphs_process_revision_id', + ], + ], + ], + ]; + $migration->setProcessOfProperty($field_name, $process); + } + + /** + * {@inheritdoc} + */ + public function processFieldWidget(MigrationInterface $migration) { + parent::processFieldWidget($migration); + $title = [ + 'paragraphs' => [ + 'plugin' => 'paragraphs_process_on_value', + 'source_value' => 'type', + 'expected_value' => 'paragraphs', + 'process' => [ + 'plugin' => 'get', + 'source' => 'settings/title', + ], + ], + ]; + $title_plural = [ + 'paragraphs' => [ + 'plugin' => 'paragraphs_process_on_value', + 'source_value' => 'type', + 'expected_value' => 'paragraphs', + 'process' => [ + 'plugin' => 'get', + 'source' => 'settings/title_multiple', + ], + ], + ]; + $edit_mode = [ + 'paragraphs' => [ + 'plugin' => 'paragraphs_process_on_value', + 'source_value' => 'type', + 'expected_value' => 'paragraphs', + 'process' => [ + 'plugin' => 'get', + 'source' => 'settings/default_edit_mode', + ], + ], + ]; + $add_mode = [ + 'paragraphs' => [ + 'plugin' => 'paragraphs_process_on_value', + 'source_value' => 'type', + 'expected_value' => 'paragraphs', + 'process' => [ + 'plugin' => 'get', + 'source' => 'settings/add_mode', + ], + ], + ]; + + $migration->mergeProcessOfProperty('options/settings/title', $title); + $migration->mergeProcessOfProperty('options/settings/title_plural', $title_plural); + $migration->mergeProcessOfProperty('options/settings/edit_mode', $edit_mode); + $migration->mergeProcessOfProperty('options/settings/add_mode', $add_mode); + } + + /** + * {@inheritdoc} + */ + public function processFieldFormatter(MigrationInterface $migration) { + $options_type[0]['map']['paragraphs_view'] = 'entity_reference_revisions_entity_view'; + $view_mode = [ + 'paragraphs' => [ + 'plugin' => 'paragraphs_process_on_value', + 'source_value' => 'type', + 'expected_value' => 'paragraphs', + 'process' => [ + 'plugin' => 'get', + 'source' => 'formatter/settings/view_mode', + ], + ], + ]; + $migration->mergeProcessOfProperty('options/type', $options_type); + $migration->mergeProcessOfProperty('options/settings/view_mode', $view_mode); + } + + /** + * {@inheritdoc} + */ + public function getFieldWidgetMap() { + return ['paragraphs_embed' => 'entity_reference_paragraphs'] + + parent::getFieldWidgetMap(); + } + + /** + * {@inheritdoc} + */ + public function processField(MigrationInterface $migration) { + + $settings = [ + 'paragraphs' => [ + 'plugin' => 'paragraphs_field_settings', + ], + ]; + $migration->mergeProcessOfProperty('settings', $settings); + } + + /** + * {@inheritdoc} + */ + public function processFieldInstance(MigrationInterface $migration) { + + $settings = [ + 'paragraphs' => [ + 'plugin' => 'paragraphs_field_instance_settings', + ], + ]; + $migration->mergeProcessOfProperty('settings', $settings); + } + +} diff --git a/src/Plugin/migrate/process/FieldCollectionFieldInstanceSettings.php b/src/Plugin/migrate/process/FieldCollectionFieldInstanceSettings.php new file mode 100644 index 0000000..a87f148 --- /dev/null +++ b/src/Plugin/migrate/process/FieldCollectionFieldInstanceSettings.php @@ -0,0 +1,86 @@ +migration = $migration; + $this->entityTypeBundleInfo = $entity_type_bundle_info; + } + + /** + * {@inheritdoc} + */ + public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition, MigrationInterface $migration = NULL) { + return new static( + $configuration, + $plugin_id, + $plugin_definition, + $migration, + $container->get('entity_type.bundle.info') + ); + } + + /** + * {@inheritdoc} + */ + public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) { + + $type = $row->getSourceProperty('type'); + + if ($type == 'field_collection') { + $bundles = $this->entityTypeBundleInfo->getBundleInfo('paragraph'); + + $target_bundle = $row->getSourceProperty('field_name'); + $prefix = $this->configuration['prefix']; + if (!empty($prefix) && strpos($target_bundle, $prefix) === 0) { + $target_bundle = substr($target_bundle, strlen($prefix)); + } + + // Enable only this paragraph type for this field. + $value['handler_settings']['negate'] = 0; + $value['handler_settings']['target_bundles'] = [$target_bundle => $target_bundle]; + $value['handler_settings']['target_bundles_drag_drop'][$target_bundle] = [ + 'enabled' => TRUE, + 'weight' => -count($bundles), + ]; + unset($bundles[$target_bundle]); + foreach ($bundles as $bundle_name => $bundle) { + $value['handler_settings']['target_bundles_drag_drop'][$bundle_name] = [ + 'enabled' => FALSE, + 'weight' => -count($bundles), + ]; + unset($bundles[$bundle_name]); + } + } + return $value; + } + +} diff --git a/src/Plugin/migrate/process/FieldCollectionFieldSettings.php b/src/Plugin/migrate/process/FieldCollectionFieldSettings.php new file mode 100644 index 0000000..d51e7ec --- /dev/null +++ b/src/Plugin/migrate/process/FieldCollectionFieldSettings.php @@ -0,0 +1,28 @@ +getSourceProperty('type') == 'field_collection') { + $value['target_type'] = 'paragraph'; + } + return $value; + } + +} diff --git a/src/Plugin/migrate/process/ParagraphsFieldInstanceSettings.php b/src/Plugin/migrate/process/ParagraphsFieldInstanceSettings.php new file mode 100644 index 0000000..20fc190 --- /dev/null +++ b/src/Plugin/migrate/process/ParagraphsFieldInstanceSettings.php @@ -0,0 +1,119 @@ +migration = $migration; + $this->entityTypeBundleInfo = $entity_type_bundle_info; + } + + /** + * {@inheritdoc} + */ + public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition, MigrationInterface $migration = NULL) { + return new static( + $configuration, + $plugin_id, + $plugin_definition, + $migration, + $container->get('entity_type.bundle.info') + ); + } + + /** + * {@inheritdoc} + */ + public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) { + + $type = $row->getSourceProperty('type'); + + if ($type == 'paragraphs') { + $bundles = $this->entityTypeBundleInfo->getBundleInfo('paragraph'); + + if (!empty($value['allowed_bundles'])) { + + $target_bundles = array_filter($value['allowed_bundles'], function ($a) { + return $a != -1; + }); + if (!count($target_bundles)) { + + // No bundles are selected and therefore this field was set to allow + // all bundles in d7, but maybe we now have additional bundles + // from a field collection migration or pre-existing that shouldn't be + // included. + if (count($value['allowed_bundles']) == count($bundles)) { + + // We don't, so configure this one to allow all as well. + $value['handler_settings']['negate'] = 0; + $value['handler_settings']['target_bundles'] = []; + } + else { + + // Yes, new bundles. Don't allow the new ones to be selected + // in this field instance. + $value['handler_settings']['negate'] = 1; + $other_bundles = array_keys(array_diff_key($bundles, $value['allowed_bundles'])); + $value['handler_settings']['target_bundles'] = array_combine($other_bundles, $other_bundles); + } + } + else { + $value['handler_settings']['negate'] = 0; + $value['handler_settings']['target_bundles'] = $target_bundles; + } + unset($value['allowed_bundles']); + } + + if (!empty($value['bundle_weights'])) { + + // Copy the existing weights, and add any new bundles (either from + // a field collection migration happening now, or pre-existing on the + // site at the bottom. + foreach ($value['bundle_weights'] as $bundle_name => $weight) { + $value['handler_settings']['target_bundles_drag_drop'][$bundle_name] = [ + 'enabled' => array_key_exists($bundle_name, $value['handler_settings']['target_bundles']), + 'weight' => $weight, + ]; + } + $other_bundles = array_keys(array_diff_key($bundles, $value['bundle_weights'])); + $weight = max($value['bundle_weights']) + 1; + foreach ($other_bundles as $bundle_name) { + $value['handler_settings']['target_bundles_drag_drop'][$bundle_name] = [ + 'enabled' => array_key_exists($bundle_name, $value['handler_settings']['target_bundles']), + 'weight' => $weight, + ]; + } + unset($value['bundle_weights']); + } + } + return $value; + } + +} diff --git a/src/Plugin/migrate/process/ParagraphsFieldSettings.php b/src/Plugin/migrate/process/ParagraphsFieldSettings.php new file mode 100644 index 0000000..1569a13 --- /dev/null +++ b/src/Plugin/migrate/process/ParagraphsFieldSettings.php @@ -0,0 +1,28 @@ +getSourceProperty('type') == 'paragraphs') { + $value['target_type'] = 'paragraph'; + } + return $value; + } + +} diff --git a/src/Plugin/migrate/process/ParagraphsProcessOnValue.php b/src/Plugin/migrate/process/ParagraphsProcessOnValue.php new file mode 100644 index 0000000..689ef3d --- /dev/null +++ b/src/Plugin/migrate/process/ParagraphsProcessOnValue.php @@ -0,0 +1,64 @@ +configuration['source_value'])) { + throw new \InvalidArgumentException("Required argument 'source_value' not set for paragraphs_process_on_value plugin"); + } + if (empty($this->configuration['expected_value'])) { + throw new \InvalidArgumentException("Required argument 'expected_value' not set for paragraphs_process_on_value plugin"); + } + if (empty($this->configuration['process']) || !is_array($this->configuration['process'])) { + throw new \InvalidArgumentException("Required argument 'process' not set or invalid for paragraphs_process_on_value plugin"); + } + $source_value = $row->getSourceProperty($this->configuration['source_value']); + if (is_null($source_value)) { + throw new MigrateSkipRowException('Argument source_value is not valid for ProcessOnValue plugin'); + } + if ($source_value == $this->configuration['expected_value']) { + $process = $this->configuration['process']; + + if (array_key_exists('plugin', $process)) { + if (empty($process['source'])) { + $process['source'] = $destination_property; + } + } + else { + if (empty($process[0]['source'])) { + $process[0]['source'] = $destination_property; + } + } + $source = $row->getSource(); + $source[$destination_property] = $value; + $new_row = new Row($source, []); + $migrate_executable->processRow($new_row, [$destination_property => $process]); + return $new_row->getDestinationProperty($destination_property); + } + else { + return $value; + } + } + +} diff --git a/src/Plugin/migrate/process/ParagraphsProcessRevisionId.php b/src/Plugin/migrate/process/ParagraphsProcessRevisionId.php new file mode 100644 index 0000000..f169d3e --- /dev/null +++ b/src/Plugin/migrate/process/ParagraphsProcessRevisionId.php @@ -0,0 +1,38 @@ + id, 1 => revision_id. + if (is_array($value)) { + if (isset($value[1])) { + return $value[1]; + } + throw new MigrateSkipProcessException(); + } + return $value; + } + +} diff --git a/src/Plugin/migrate/process/ParagraphsStripPrefix.php b/src/Plugin/migrate/process/ParagraphsStripPrefix.php new file mode 100644 index 0000000..0d77382 --- /dev/null +++ b/src/Plugin/migrate/process/ParagraphsStripPrefix.php @@ -0,0 +1,35 @@ +configuration['prefix']) && !array_key_exists('prefix', $this->configuration)) { + throw new MigrateException("StripPrefix plugin missing prefix to strip"); + } + $prefix = $this->configuration['prefix']; + if (strpos($value, $prefix) === 0) { + $value = substr($value, strlen($prefix)); + } + return $value; + } + +} diff --git a/src/Plugin/migrate/source/d7/FieldCollectionItem.php b/src/Plugin/migrate/source/d7/FieldCollectionItem.php new file mode 100644 index 0000000..80b1071 --- /dev/null +++ b/src/Plugin/migrate/source/d7/FieldCollectionItem.php @@ -0,0 +1,91 @@ +select('field_collection_item', 'f') + ->fields('f', [ + 'item_id', + 'field_name', + 'archived', + ]) + ->fields('fr', ['revision_id']); + $query->innerJoin('field_collection_item_revision', 'fr', static::JOIN); + if (isset($this->configuration['field_name'])) { + $query->condition('f.field_name', $this->configuration['field_name']); + } + return $query; + } + + /** + * {@inheritdoc} + */ + public function prepareRow(Row $row) { + parent::prepareRow($row); + + // Get Field API field values. + $bundle = $row->getSourceProperty('field_name'); + + // Remove prefix if it is set in configs. + $prefix = $this->configuration['prefix']; + if (isset($prefix) && strpos($bundle, $prefix) === 0) { + $bundle = substr($bundle, strlen($prefix)); + } + $row->setSourceProperty('bundle', $bundle); + $field_names = array_keys($this->getFields('field_collection_item', $row->getSourceProperty('field_name'))); + $item_id = $row->getSourceProperty('item_id'); + $revision_id = $row->getSourceProperty('revision_id'); + foreach ($field_names as $field_name) { + + $value = $this->getFieldValues('field_collection_item', $field_name, $item_id, $revision_id); + $row->setSourceProperty($field_name, $value); + } + } + + /** + * {@inheritdoc} + */ + public function fields() { + $fields = [ + 'item_id' => $this->t('The field_collection_item id'), + 'revision_id' => $this->t('The field_collection_item revision id'), + 'bundle' => $this->t('The field_collection bundle'), + 'field_name' => $this - t('The field_collection field_name'), + ]; + return $fields; + } + + /** + * {@inheritdoc} + */ + public function getIds() { + $ids = [ + 'item_id' => [ + 'type' => 'integer', + 'alias' => 'f', + ], + ]; + + return $ids; + } + +} diff --git a/src/Plugin/migrate/source/d7/FieldCollectionItemRevision.php b/src/Plugin/migrate/source/d7/FieldCollectionItemRevision.php new file mode 100644 index 0000000..7e32ecb --- /dev/null +++ b/src/Plugin/migrate/source/d7/FieldCollectionItemRevision.php @@ -0,0 +1,26 @@ + fr.revision_id"; + + /** + * {@inheritdoc} + */ + public function getIds() { + $ids['revision_id']['type'] = 'integer'; + $ids['revision_id']['alias'] = 'fr'; + return $ids; + } + +} diff --git a/src/Plugin/migrate/source/d7/FieldCollectionType.php b/src/Plugin/migrate/source/d7/FieldCollectionType.php index ade32cf..f12ce1e 100644 --- a/src/Plugin/migrate/source/d7/FieldCollectionType.php +++ b/src/Plugin/migrate/source/d7/FieldCollectionType.php @@ -33,7 +33,7 @@ class FieldCollectionType extends DrupalSqlBase { $name = $row->getSourceProperty('field_name'); - if ($this->configuration['addDescription']) { + if (isset($this->configuration['addDescription']) && $this->configuration['addDescription']) { $row->setSourceProperty('description', 'Migrated from field_collection ' . $name); } else { @@ -58,6 +58,7 @@ class FieldCollectionType extends DrupalSqlBase { */ public function fields() { return [ + 'field_name' => $this->t('Original field collection bundle/field_name'), 'bundle' => $this->t('Paragraph type machine name'), 'name' => $this->t('Paragraph type label'), 'description' => $this->t('Paragraph type description'), diff --git a/src/Plugin/migrate/source/d7/ParagraphType.php b/src/Plugin/migrate/source/d7/ParagraphType.php index c2b5922..7da7455 100644 --- a/src/Plugin/migrate/source/d7/ParagraphType.php +++ b/src/Plugin/migrate/source/d7/ParagraphType.php @@ -30,7 +30,7 @@ class ParagraphType extends DrupalSqlBase { */ public function prepareRow(Row $row) { - if ($this->configuration['addDescription']) { + if (isset($this->configuration['addDescription']) && $this->configuration['addDescription']) { $name = $row->getSourceProperty('name'); $row->setSourceProperty('description', 'Migrated from paragraph bundle ' . $name); } diff --git a/src/Plugin/migrate/source/d7/ParagraphsItem.php b/src/Plugin/migrate/source/d7/ParagraphsItem.php new file mode 100644 index 0000000..07b1fbd --- /dev/null +++ b/src/Plugin/migrate/source/d7/ParagraphsItem.php @@ -0,0 +1,82 @@ +select('paragraphs_item', 'p') + ->fields('p', + ['item_id', + 'bundle', + 'field_name', + 'archived', + ]) + ->fields('pr', ['revision_id']); + $query->innerJoin('paragraphs_item_revision', 'pr', static::JOIN); + if (isset($this->configuration['bundle'])) { + $query->condition('p.bundle', $this->configuration['bundle']); + } + return $query; + } + + /** + * {@inheritdoc} + */ + public function prepareRow(Row $row) { + $item_id = $row->getSourceProperty('item_id'); + $revision_id = $row->getSourceProperty('revision_id'); + foreach (array_keys($this->getFields('paragraphs_item', $row->getSourceProperty('bundle'))) as $field) { + $row->setSourceProperty($field, $this->getFieldValues('paragraphs_item', $field, $item_id, $revision_id)); + } + + return parent::prepareRow($row); + } + + /** + * {@inheritdoc} + */ + public function fields() { + $fields = [ + 'item_id' => $this->t('The paragraph_item id'), + 'revision_id' => $this->t('The paragraph_item revision id'), + 'bundle' => $this->t('The paragraph bundle'), + 'field_name' => $this - t('The paragrpah field_name'), + ]; + return $fields; + } + + /** + * {@inheritdoc} + */ + public function getIds() { + $ids = [ + 'item_id' => [ + 'type' => 'integer', + 'alias' => 'p', + ], + ]; + + return $ids; + } + +} diff --git a/src/Plugin/migrate/source/d7/ParagraphsItemRevision.php b/src/Plugin/migrate/source/d7/ParagraphsItemRevision.php new file mode 100644 index 0000000..b738ea0 --- /dev/null +++ b/src/Plugin/migrate/source/d7/ParagraphsItemRevision.php @@ -0,0 +1,26 @@ + pr.revision_id"; + + /** + * {@inheritdoc} + */ + public function getIds() { + $ids['revision_id']['type'] = 'integer'; + $ids['revision_id']['alias'] = 'pr'; + return $ids; + } + +} diff --git a/tests/fixtures/drupal7.php b/tests/fixtures/drupal7.php index e539a12..987ad88 100644 --- a/tests/fixtures/drupal7.php +++ b/tests/fixtures/drupal7.php @@ -72,1351 +72,6 @@ $connection->schema()->createTable('accesslog', array( 'mysql_character_set' => 'utf8', )); -$connection->insert('accesslog') -->fields(array( - 'aid', - 'sid', - 'title', - 'path', - 'url', - 'hostname', - 'uid', - 'timer', - 'timestamp', -)) -->values(array( - 'aid' => '118', - 'sid' => '476ERnNkMRj9D7p5JwZXavOO3hbBN9DGii7mPT_KSzQ', - 'title' => '', - 'path' => 'node', - 'url' => 'http://d7.fixture.localhost/admin/structure/types', - 'hostname' => '::1', - 'uid' => '0', - 'timer' => '471', - 'timestamp' => '1517540655', -)) -->values(array( - 'aid' => '119', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => '', - 'path' => 'node', - 'url' => 'http://d7.fixture.localhost/admin/config', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '161', - 'timestamp' => '1517540663', -)) -->values(array( - 'aid' => '120', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Configuration', - 'path' => 'admin/config', - 'url' => 'http://d7.fixture.localhost/admin/config', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '211', - 'timestamp' => '1517540663', -)) -->values(array( - 'aid' => '121', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Configuration', - 'path' => 'admin/config', - 'url' => 'http://d7.fixture.localhost/admin/config', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '81', - 'timestamp' => '1517540670', -)) -->values(array( - 'aid' => '122', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'File system', - 'path' => 'admin/config/media/file-system', - 'url' => 'http://d7.fixture.localhost/admin/config', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '110', - 'timestamp' => '1517540672', -)) -->values(array( - 'aid' => '123', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'File system', - 'path' => 'admin/config/media/file-system', - 'url' => 'http://d7.fixture.localhost/admin/config/media/file-system', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '100', - 'timestamp' => '1517540687', -)) -->values(array( - 'aid' => '124', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'File system', - 'path' => 'admin/config/media/file-system', - 'url' => 'http://d7.fixture.localhost/admin/config/media/file-system', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '29', - 'timestamp' => '1517540688', -)) -->values(array( - 'aid' => '125', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Structure', - 'path' => 'admin/structure', - 'url' => 'http://d7.fixture.localhost/admin/config/media/file-system', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '45', - 'timestamp' => '1517540698', -)) -->values(array( - 'aid' => '126', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragraph Bundles', - 'path' => 'admin/structure/paragraphs', - 'url' => 'http://d7.fixture.localhost/admin/structure', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '121', - 'timestamp' => '1517540700', -)) -->values(array( - 'aid' => '127', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragraph Bundles', - 'path' => 'admin/structure/paragraphs/add', - 'url' => 'http://d7.fixture.localhost/admin/structure/paragraphs', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '109', - 'timestamp' => '1517540701', -)) -->values(array( - 'aid' => '128', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragraph Bundles', - 'path' => 'admin/structure/paragraphs/add', - 'url' => 'http://d7.fixture.localhost/admin/structure/paragraphs/add', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '558', - 'timestamp' => '1517540711', -)) -->values(array( - 'aid' => '129', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragraph Bundles', - 'path' => 'admin/structure/paragraphs', - 'url' => 'http://d7.fixture.localhost/admin/structure/paragraphs/add', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '42', - 'timestamp' => '1517540711', -)) -->values(array( - 'aid' => '130', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Edit paragraph bundle', - 'path' => 'admin/structure/paragraphs/paragraph-bundle-test/fields', - 'url' => 'http://d7.fixture.localhost/admin/structure/paragraphs', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '174', - 'timestamp' => '1517540713', -)) -->values(array( - 'aid' => '131', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Edit paragraph bundle', - 'path' => 'admin/structure/paragraphs/paragraph-bundle-test/fields', - 'url' => 'http://d7.fixture.localhost/admin/structure/paragraphs/paragraph-bundle-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '173', - 'timestamp' => '1517541211', -)) -->values(array( - 'aid' => '132', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Text', - 'path' => 'admin/structure/paragraphs/paragraph-bundle-test/fields/field_text/edit', - 'url' => 'http://d7.fixture.localhost/admin/structure/paragraphs/paragraph-bundle-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '148', - 'timestamp' => '1517541211', -)) -->values(array( - 'aid' => '133', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Text', - 'path' => 'admin/structure/paragraphs/paragraph-bundle-test/fields/field_text/edit', - 'url' => 'http://d7.fixture.localhost/admin/structure/paragraphs/paragraph-bundle-test/fields/field_text/edit?destinations%5B0%5D=admin/structure/paragraphs/paragraph-bundle-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '137', - 'timestamp' => '1517541215', -)) -->values(array( - 'aid' => '134', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Edit paragraph bundle', - 'path' => 'admin/structure/paragraphs/paragraph-bundle-test/fields', - 'url' => 'http://d7.fixture.localhost/admin/structure/paragraphs/paragraph-bundle-test/fields/field_text/edit?destinations%5B0%5D=admin/structure/paragraphs/paragraph-bundle-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '92', - 'timestamp' => '1517541216', -)) -->values(array( - 'aid' => '135', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Edit paragraph bundle', - 'path' => 'admin/structure/paragraphs/paragraph-bundle-test/fields', - 'url' => 'http://d7.fixture.localhost/admin/structure/paragraphs/paragraph-bundle-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '176', - 'timestamp' => '1517541229', -)) -->values(array( - 'aid' => '136', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Email', - 'path' => 'admin/structure/paragraphs/paragraph-bundle-test/fields/field_email/edit', - 'url' => 'http://d7.fixture.localhost/admin/structure/paragraphs/paragraph-bundle-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '60', - 'timestamp' => '1517541229', -)) -->values(array( - 'aid' => '137', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Email', - 'path' => 'admin/structure/paragraphs/paragraph-bundle-test/fields/field_email/edit', - 'url' => 'http://d7.fixture.localhost/admin/structure/paragraphs/paragraph-bundle-test/fields/field_email/edit?destinations%5B0%5D=admin/structure/paragraphs/paragraph-bundle-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '137', - 'timestamp' => '1517541238', -)) -->values(array( - 'aid' => '138', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Edit paragraph bundle', - 'path' => 'admin/structure/paragraphs/paragraph-bundle-test/fields', - 'url' => 'http://d7.fixture.localhost/admin/structure/paragraphs/paragraph-bundle-test/fields/field_email/edit?destinations%5B0%5D=admin/structure/paragraphs/paragraph-bundle-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '92', - 'timestamp' => '1517541239', -)) -->values(array( - 'aid' => '139', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Edit paragraph bundle', - 'path' => 'admin/structure/paragraphs/paragraph-bundle-test/fields', - 'url' => 'http://d7.fixture.localhost/admin/structure/paragraphs/paragraph-bundle-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '163', - 'timestamp' => '1517541240', -)) -->values(array( - 'aid' => '140', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Edit paragraph bundle', - 'path' => 'admin/structure/paragraphs/paragraph-bundle-test/fields', - 'url' => 'http://d7.fixture.localhost/admin/structure/paragraphs/paragraph-bundle-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '81', - 'timestamp' => '1517541241', -)) -->values(array( - 'aid' => '141', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Structure', - 'path' => 'admin/structure', - 'url' => 'http://d7.fixture.localhost/admin/structure/paragraphs/paragraph-bundle-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '64', - 'timestamp' => '1517541243', -)) -->values(array( - 'aid' => '142', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Content types', - 'path' => 'admin/structure/types', - 'url' => 'http://d7.fixture.localhost/admin/structure', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '108', - 'timestamp' => '1517541245', -)) -->values(array( - 'aid' => '143', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Content types', - 'path' => 'admin/structure/types/add', - 'url' => 'http://d7.fixture.localhost/admin/structure/types', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '153', - 'timestamp' => '1517541247', -)) -->values(array( - 'aid' => '144', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Parent menu items', - 'path' => 'admin/structure/menu/parents', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/add', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '114', - 'timestamp' => '1517541247', -)) -->values(array( - 'aid' => '145', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Content types', - 'path' => 'admin/structure/types/add', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/add', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '105', - 'timestamp' => '1517541260', -)) -->values(array( - 'aid' => '146', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Parent menu items', - 'path' => 'admin/structure/menu/parents', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/add', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '100', - 'timestamp' => '1517541260', -)) -->values(array( - 'aid' => '147', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Parent menu items', - 'path' => 'admin/structure/menu/parents', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/add', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '87', - 'timestamp' => '1517541265', -)) -->values(array( - 'aid' => '148', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Content types', - 'path' => 'admin/structure/types/add', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/add', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '630', - 'timestamp' => '1517541267', -)) -->values(array( - 'aid' => '149', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Content types', - 'path' => 'admin/structure/types', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/add', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '45', - 'timestamp' => '1517541267', -)) -->values(array( - 'aid' => '150', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Configuration', - 'path' => 'admin/config', - 'url' => 'http://d7.fixture.localhost/admin/structure/types', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '83', - 'timestamp' => '1517541269', -)) -->values(array( - 'aid' => '151', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Multilingual settings', - 'path' => 'admin/config/regional/i18n', - 'url' => 'http://d7.fixture.localhost/admin/config', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '42', - 'timestamp' => '1517541276', -)) -->values(array( - 'aid' => '152', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Regional and language', - 'path' => 'admin/config/regional', - 'url' => 'http://d7.fixture.localhost/admin/config/regional/i18n', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '48', - 'timestamp' => '1517541281', -)) -->values(array( - 'aid' => '153', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Languages', - 'path' => 'admin/config/regional/language', - 'url' => 'http://d7.fixture.localhost/admin/config/regional', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '124', - 'timestamp' => '1517541283', -)) -->values(array( - 'aid' => '154', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Regional and language', - 'path' => 'admin/config/regional', - 'url' => 'http://d7.fixture.localhost/admin/config/regional/language', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '32', - 'timestamp' => '1517541287', -)) -->values(array( - 'aid' => '155', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Regional settings', - 'path' => 'admin/config/regional/settings', - 'url' => 'http://d7.fixture.localhost/admin/config/regional', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '98', - 'timestamp' => '1517541290', -)) -->values(array( - 'aid' => '156', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Structure', - 'path' => 'admin/structure', - 'url' => 'http://d7.fixture.localhost/admin/config/regional/settings', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '50', - 'timestamp' => '1517541294', -)) -->values(array( - 'aid' => '157', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Content types', - 'path' => 'admin/structure/types', - 'url' => 'http://d7.fixture.localhost/admin/structure', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '32', - 'timestamp' => '1517541296', -)) -->values(array( - 'aid' => '158', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Test content type', - 'path' => 'admin/structure/types/manage/test-content-type', - 'url' => 'http://d7.fixture.localhost/admin/structure/types', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '54', - 'timestamp' => '1517541299', -)) -->values(array( - 'aid' => '159', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Parent menu items', - 'path' => 'admin/structure/menu/parents', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/test-content-type', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '170', - 'timestamp' => '1517541299', -)) -->values(array( - 'aid' => '160', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Test content type', - 'path' => 'admin/structure/types/manage/test-content-type', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/test-content-type', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '111', - 'timestamp' => '1517541332', -)) -->values(array( - 'aid' => '161', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Parent menu items', - 'path' => 'admin/structure/menu/parents', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/test-content-type', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '166', - 'timestamp' => '1517541332', -)) -->values(array( - 'aid' => '162', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Content types', - 'path' => 'admin/structure/types', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/test-content-type', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '33', - 'timestamp' => '1517541350', -)) -->values(array( - 'aid' => '163', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragraphs Migration Test', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test', - 'url' => 'http://d7.fixture.localhost/admin/structure/types', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '53', - 'timestamp' => '1517541354', -)) -->values(array( - 'aid' => '164', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Parent menu items', - 'path' => 'admin/structure/menu/parents', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '103', - 'timestamp' => '1517541354', -)) -->values(array( - 'aid' => '165', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragraphs Migration Test', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test', - 'url' => 'http://d7.fixture.localhost/admin/structure/types', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '44', - 'timestamp' => '1517541359', -)) -->values(array( - 'aid' => '166', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Parent menu items', - 'path' => 'admin/structure/menu/parents', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '100', - 'timestamp' => '1517541360', -)) -->values(array( - 'aid' => '167', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragraphs Migration Test', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '546', - 'timestamp' => '1517541376', -)) -->values(array( - 'aid' => '168', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Content types', - 'path' => 'admin/structure/types', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '44', - 'timestamp' => '1517541377', -)) -->values(array( - 'aid' => '169', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Test content type', - 'path' => 'admin/structure/types/manage/test-content-type/fields', - 'url' => 'http://d7.fixture.localhost/admin/structure/types', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '125', - 'timestamp' => '1517541383', -)) -->values(array( - 'aid' => '170', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Content types', - 'path' => 'admin/structure/types', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/test-content-type/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '33', - 'timestamp' => '1517541385', -)) -->values(array( - 'aid' => '171', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragraphs Migration Test', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test/fields', - 'url' => 'http://d7.fixture.localhost/admin/structure/types', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '90', - 'timestamp' => '1517541388', -)) -->values(array( - 'aid' => '172', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragraphs Migration Test', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test/fields', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '695', - 'timestamp' => '1517541402', -)) -->values(array( - 'aid' => '173', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragrpah Test', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test/fields/field_paragrpah_test/field-settings', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '65', - 'timestamp' => '1517541402', -)) -->values(array( - 'aid' => '174', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragrpah Test', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test/fields/field_paragrpah_test/field-settings', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test/fields/field_paragrpah_test/field-settings?destinations%5B0%5D=admin/structure/types/manage/paragraphs-migration-test/fields/field_paragrpah_test&destinations%5B1%5D=admin/structure/types/manage/paragraphs-migration-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '153', - 'timestamp' => '1517541406', -)) -->values(array( - 'aid' => '175', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragrpah Test', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test/fields/field_paragrpah_test', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test/fields/field_paragrpah_test/field-settings?destinations%5B0%5D=admin/structure/types/manage/paragraphs-migration-test/fields/field_paragrpah_test&destinations%5B1%5D=admin/structure/types/manage/paragraphs-migration-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '129', - 'timestamp' => '1517541406', -)) -->values(array( - 'aid' => '176', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragrpah Test', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test/fields/field_paragrpah_test', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test/fields/field_paragrpah_test?destinations%5B0%5D=admin/structure/types/manage/paragraphs-migration-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '175', - 'timestamp' => '1517541416', -)) -->values(array( - 'aid' => '177', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragraphs Migration Test', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test/fields', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test/fields/field_paragrpah_test?destinations%5B0%5D=admin/structure/types/manage/paragraphs-migration-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '99', - 'timestamp' => '1517541416', -)) -->values(array( - 'aid' => '178', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragraphs Migration Test', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test/fields', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '779', - 'timestamp' => '1517542231', -)) -->values(array( - 'aid' => '179', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Field Collection Test', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test/fields/field_field_collection_test/field-settings', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '69', - 'timestamp' => '1517542232', -)) -->values(array( - 'aid' => '180', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Field Collection Test', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test/fields/field_field_collection_test/field-settings', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test/fields/field_field_collection_test/field-settings?destinations%5B0%5D=admin/structure/types/manage/paragraphs-migration-test/fields/field_field_collection_test&destinations%5B1%5D=admin/structure/types/manage/paragraphs-migration-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '141', - 'timestamp' => '1517542234', -)) -->values(array( - 'aid' => '181', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Field Collection Test', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test/fields/field_field_collection_test', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test/fields/field_field_collection_test/field-settings?destinations%5B0%5D=admin/structure/types/manage/paragraphs-migration-test/fields/field_field_collection_test&destinations%5B1%5D=admin/structure/types/manage/paragraphs-migration-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '67', - 'timestamp' => '1517542234', -)) -->values(array( - 'aid' => '182', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Field Collection Test', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test/fields/field_field_collection_test', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test/fields/field_field_collection_test?destinations%5B0%5D=admin/structure/types/manage/paragraphs-migration-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '167', - 'timestamp' => '1517542238', -)) -->values(array( - 'aid' => '183', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragraphs Migration Test', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test/fields', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test/fields/field_field_collection_test?destinations%5B0%5D=admin/structure/types/manage/paragraphs-migration-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '108', - 'timestamp' => '1517542238', -)) -->values(array( - 'aid' => '184', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Are you sure you want to delete the field Paragrpah Test?', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test/fields/field_paragrpah_test/delete', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '108', - 'timestamp' => '1517542244', -)) -->values(array( - 'aid' => '185', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Are you sure you want to delete the field Paragrpah Test?', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test/fields/field_paragrpah_test/delete', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test/fields/field_paragrpah_test/delete', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '158', - 'timestamp' => '1517542246', -)) -->values(array( - 'aid' => '186', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragraphs Migration Test', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test/fields', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test/fields/field_paragrpah_test/delete', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '563', - 'timestamp' => '1517542246', -)) -->values(array( - 'aid' => '187', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragraphs Migration Test', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test/fields', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '740', - 'timestamp' => '1517542258', -)) -->values(array( - 'aid' => '188', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragraph Test', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test/fields/field_paragraph_test/field-settings', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '71', - 'timestamp' => '1517542259', -)) -->values(array( - 'aid' => '189', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragraph Test', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test/fields/field_paragraph_test/field-settings', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test/fields/field_paragraph_test/field-settings?destinations%5B0%5D=admin/structure/types/manage/paragraphs-migration-test/fields/field_paragraph_test&destinations%5B1%5D=admin/structure/types/manage/paragraphs-migration-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '133', - 'timestamp' => '1517542261', -)) -->values(array( - 'aid' => '190', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragraph Test', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test/fields/field_paragraph_test', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test/fields/field_paragraph_test/field-settings?destinations%5B0%5D=admin/structure/types/manage/paragraphs-migration-test/fields/field_paragraph_test&destinations%5B1%5D=admin/structure/types/manage/paragraphs-migration-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '70', - 'timestamp' => '1517542261', -)) -->values(array( - 'aid' => '191', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragraph Test', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test/fields/field_paragraph_test', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test/fields/field_paragraph_test?destinations%5B0%5D=admin/structure/types/manage/paragraphs-migration-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '174', - 'timestamp' => '1517542268', -)) -->values(array( - 'aid' => '192', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragraphs Migration Test', - 'path' => 'admin/structure/types/manage/paragraphs-migration-test/fields', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test/fields/field_paragraph_test?destinations%5B0%5D=admin/structure/types/manage/paragraphs-migration-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '103', - 'timestamp' => '1517542269', -)) -->values(array( - 'aid' => '193', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Field collection field_field_collection_test', - 'path' => 'admin/structure/field-collections/field-field-collection-test/fields', - 'url' => 'http://d7.fixture.localhost/admin/structure/types/manage/paragraphs-migration-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '93', - 'timestamp' => '1517542272', -)) -->values(array( - 'aid' => '194', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Field collection field_field_collection_test', - 'path' => 'admin/structure/field-collections/field-field-collection-test/fields', - 'url' => 'http://d7.fixture.localhost/admin/structure/field-collections/field-field-collection-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '172', - 'timestamp' => '1517542287', -)) -->values(array( - 'aid' => '195', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Text', - 'path' => 'admin/structure/field-collections/field-field-collection-test/fields/field_text/edit', - 'url' => 'http://d7.fixture.localhost/admin/structure/field-collections/field-field-collection-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '52', - 'timestamp' => '1517542287', -)) -->values(array( - 'aid' => '196', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Text', - 'path' => 'admin/structure/field-collections/field-field-collection-test/fields/field_text/edit', - 'url' => 'http://d7.fixture.localhost/admin/structure/field-collections/field-field-collection-test/fields/field_text/edit?destinations%5B0%5D=admin/structure/field-collections/field-field-collection-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '135', - 'timestamp' => '1517542304', -)) -->values(array( - 'aid' => '197', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Field collection field_field_collection_test', - 'path' => 'admin/structure/field-collections/field-field-collection-test/fields', - 'url' => 'http://d7.fixture.localhost/admin/structure/field-collections/field-field-collection-test/fields/field_text/edit?destinations%5B0%5D=admin/structure/field-collections/field-field-collection-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '96', - 'timestamp' => '1517542304', -)) -->values(array( - 'aid' => '198', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Field collection field_field_collection_test', - 'path' => 'admin/structure/field-collections/field-field-collection-test/fields', - 'url' => 'http://d7.fixture.localhost/admin/structure/field-collections/field-field-collection-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '185', - 'timestamp' => '1517542348', -)) -->values(array( - 'aid' => '199', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Field Collection Text plain', - 'path' => 'admin/structure/field-collections/field-field-collection-test/fields/field_text_plain/edit', - 'url' => 'http://d7.fixture.localhost/admin/structure/field-collections/field-field-collection-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '47', - 'timestamp' => '1517542348', -)) -->values(array( - 'aid' => '200', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Field Collection Text plain', - 'path' => 'admin/structure/field-collections/field-field-collection-test/fields/field_text_plain/edit', - 'url' => 'http://d7.fixture.localhost/admin/structure/field-collections/field-field-collection-test/fields/field_text_plain/edit?destinations%5B0%5D=admin/structure/field-collections/field-field-collection-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '179', - 'timestamp' => '1517542361', -)) -->values(array( - 'aid' => '201', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Field collection field_field_collection_test', - 'path' => 'admin/structure/field-collections/field-field-collection-test/fields', - 'url' => 'http://d7.fixture.localhost/admin/structure/field-collections/field-field-collection-test/fields/field_text_plain/edit?destinations%5B0%5D=admin/structure/field-collections/field-field-collection-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '97', - 'timestamp' => '1517542361', -)) -->values(array( - 'aid' => '202', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Structure', - 'path' => 'admin/structure', - 'url' => 'http://d7.fixture.localhost/admin/structure/field-collections/field-field-collection-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '64', - 'timestamp' => '1517542367', -)) -->values(array( - 'aid' => '203', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragraph Bundles', - 'path' => 'admin/structure/paragraphs', - 'url' => 'http://d7.fixture.localhost/admin/structure', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '46', - 'timestamp' => '1517542369', -)) -->values(array( - 'aid' => '204', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Edit paragraph bundle', - 'path' => 'admin/structure/paragraphs/paragraph-bundle-test/fields', - 'url' => 'http://d7.fixture.localhost/admin/structure/paragraphs', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '88', - 'timestamp' => '1517542371', -)) -->values(array( - 'aid' => '205', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Structure', - 'path' => 'admin/structure', - 'url' => 'http://d7.fixture.localhost/admin/structure/paragraphs/paragraph-bundle-test/fields', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '32', - 'timestamp' => '1517542373', -)) -->values(array( - 'aid' => '206', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Add content', - 'path' => 'node/add', - 'url' => 'http://d7.fixture.localhost/admin/structure', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '116', - 'timestamp' => '1517542379', -)) -->values(array( - 'aid' => '207', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Create Paragraphs Migration Test', - 'path' => 'node/add/paragraphs-migration-test', - 'url' => 'http://d7.fixture.localhost/node/add', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '217', - 'timestamp' => '1517542382', -)) -->values(array( - 'aid' => '208', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'AHAH callback', - 'path' => 'system/ajax', - 'url' => 'http://d7.fixture.localhost/node/add/paragraphs-migration-test', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '117', - 'timestamp' => '1517542414', -)) -->values(array( - 'aid' => '209', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'AHAH callback', - 'path' => 'system/ajax', - 'url' => 'http://d7.fixture.localhost/node/add/paragraphs-migration-test', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '110', - 'timestamp' => '1517542417', -)) -->values(array( - 'aid' => '210', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'AHAH callback', - 'path' => 'system/ajax', - 'url' => 'http://d7.fixture.localhost/node/add/paragraphs-migration-test', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '117', - 'timestamp' => '1517542418', -)) -->values(array( - 'aid' => '211', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Create Paragraphs Migration Test', - 'path' => 'node/add/paragraphs-migration-test', - 'url' => 'http://d7.fixture.localhost/node/add/paragraphs-migration-test', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '135', - 'timestamp' => '1517542515', -)) -->values(array( - 'aid' => '212', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragraphs Migration Test Single Language', - 'path' => 'node/8', - 'url' => 'http://d7.fixture.localhost/node/add/paragraphs-migration-test', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '211', - 'timestamp' => '1517542515', -)) -->values(array( - 'aid' => '213', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'custom link test', - 'path' => 'admin/content', - 'url' => 'http://d7.fixture.localhost/node/8', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '165', - 'timestamp' => '1517542529', -)) -->values(array( - 'aid' => '214', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Add content', - 'path' => 'node/add', - 'url' => 'http://d7.fixture.localhost/admin/content', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '37', - 'timestamp' => '1517542533', -)) -->values(array( - 'aid' => '215', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Create Paragraphs Migration Test', - 'path' => 'node/add/paragraphs-migration-test', - 'url' => 'http://d7.fixture.localhost/node/add', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '53', - 'timestamp' => '1517542535', -)) -->values(array( - 'aid' => '216', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'AHAH callback', - 'path' => 'system/ajax', - 'url' => 'http://d7.fixture.localhost/node/add/paragraphs-migration-test', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '104', - 'timestamp' => '1517542579', -)) -->values(array( - 'aid' => '217', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Create Paragraphs Migration Test', - 'path' => 'node/add/paragraphs-migration-test', - 'url' => 'http://d7.fixture.localhost/node/add/paragraphs-migration-test', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '113', - 'timestamp' => '1517542607', -)) -->values(array( - 'aid' => '218', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragraphs Migration Test Translatable English', - 'path' => 'node/9', - 'url' => 'http://d7.fixture.localhost/node/add/paragraphs-migration-test', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '64', - 'timestamp' => '1517542607', -)) -->values(array( - 'aid' => '219', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Translations of Paragraphs Migration Test Translatable English', - 'path' => 'node/9/translate', - 'url' => 'http://d7.fixture.localhost/node/9', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '47', - 'timestamp' => '1517542611', -)) -->values(array( - 'aid' => '220', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Create Paragraphs Migration Test', - 'path' => 'node/add/paragraphs-migration-test', - 'url' => 'http://d7.fixture.localhost/node/9/translate', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '446', - 'timestamp' => '1517542613', -)) -->values(array( - 'aid' => '221', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'AHAH callback', - 'path' => 'system/ajax', - 'url' => 'http://d7.fixture.localhost/is/node/add/paragraphs-migration-test?translation=9&target=is', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '2009', - 'timestamp' => '1517542646', -)) -->values(array( - 'aid' => '222', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'AHAH callback', - 'path' => 'system/ajax', - 'url' => 'http://d7.fixture.localhost/is/node/add/paragraphs-migration-test?translation=9&target=is', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '114', - 'timestamp' => '1517542666', -)) -->values(array( - 'aid' => '223', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Create Paragraphs Migration Test', - 'path' => 'node/add/paragraphs-migration-test', - 'url' => 'http://d7.fixture.localhost/is/node/add/paragraphs-migration-test?translation=9&target=is', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '120', - 'timestamp' => '1517542688', -)) -->values(array( - 'aid' => '224', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Paragraphs Migration Test Translatable Icelandic', - 'path' => 'node/10', - 'url' => 'http://d7.fixture.localhost/is/node/add/paragraphs-migration-test?translation=9&target=is', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '189', - 'timestamp' => '1517542688', -)) -->values(array( - 'aid' => '225', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'custom link test', - 'path' => 'admin/content', - 'url' => 'http://d7.fixture.localhost/is/node/10', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '328', - 'timestamp' => '1517542702', -)) -->values(array( - 'aid' => '226', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Edit Paragraphs Migration Test Paragraphs Migration Test Translatable English', - 'path' => 'node/9/edit', - 'url' => 'http://d7.fixture.localhost/is/admin/content', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '93', - 'timestamp' => '1517542740', -)) -->values(array( - 'aid' => '227', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Translations of Paragraphs Migration Test Translatable English', - 'path' => 'node/9/translate', - 'url' => 'http://d7.fixture.localhost/is/node/9/edit?destination=admin/content', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '63', - 'timestamp' => '1517542747', -)) -->values(array( - 'aid' => '228', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Modules', - 'path' => 'admin/modules', - 'url' => 'http://d7.fixture.localhost/is/node/9/translate', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '1972', - 'timestamp' => '1517542758', -)) -->values(array( - 'aid' => '229', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Some required modules must be enabled', - 'path' => 'admin/modules/list/confirm', - 'url' => 'http://d7.fixture.localhost/is/admin/modules', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '698', - 'timestamp' => '1517542861', -)) -->values(array( - 'aid' => '230', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'List', - 'path' => 'admin/modules/list/confirm', - 'url' => 'http://d7.fixture.localhost/admin/modules', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '6804', - 'timestamp' => '1517543245', -)) -->values(array( - 'aid' => '231', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Modules', - 'path' => 'admin/modules', - 'url' => 'http://d7.fixture.localhost/admin/modules', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '22', - 'timestamp' => '1517543252', -)) -->values(array( - 'aid' => '232', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => '', - 'path' => 'node', - 'url' => 'http://d7.fixture.localhost/admin/modules', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '579', - 'timestamp' => '1517543252', -)) -->values(array( - 'aid' => '233', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Modules', - 'path' => 'admin/modules', - 'url' => 'http://d7.fixture.localhost/', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '553', - 'timestamp' => '1517543253', -)) -->values(array( - 'aid' => '234', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => '', - 'path' => 'node', - 'url' => 'http://d7.fixture.localhost/admin/modules', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '99', - 'timestamp' => '1517543618', -)) -->values(array( - 'aid' => '235', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Modules', - 'path' => 'admin/modules', - 'url' => 'http://d7.fixture.localhost/', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '349', - 'timestamp' => '1517543619', -)) -->values(array( - 'aid' => '236', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'custom link test', - 'path' => 'admin/content', - 'url' => 'http://d7.fixture.localhost/', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '531', - 'timestamp' => '1517543657', -)) -->values(array( - 'aid' => '237', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Edit Paragraphs Migration Test Paragraphs Migration Test Translatable English', - 'path' => 'node/9/edit', - 'url' => 'http://d7.fixture.localhost/', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '322', - 'timestamp' => '1517543664', -)) -->values(array( - 'aid' => '238', - 'sid' => 'R7DN-B9Q8jZWqvrkyrvY14QEac4rjRl8GgTQzf6NSd4', - 'title' => 'Translations of Paragraphs Migration Test Translatable English', - 'path' => 'node/9/translate', - 'url' => 'http://d7.fixture.localhost/', - 'hostname' => '::1', - 'uid' => '1', - 'timer' => '177', - 'timestamp' => '1517543671', -)) -->execute(); - $connection->schema()->createTable('actions', array( 'fields' => array( 'aid' => array( @@ -1769,13 +424,13 @@ $connection->insert('aggregator_feed') 'title' => 'Know Your Meme', 'url' => 'http://knowyourmeme.com/newsfeed.rss', 'refresh' => '900', - 'checked' => '1517540655', + 'checked' => '1518468578', 'queued' => '0', 'link' => 'http://knowyourmeme.com', 'description' => 'New items added to the News Feed', 'image' => '', - 'hash' => '51c5cd17aba8299c39e001c558a7b2530e306d3c4faabcc01b4b6b2f364d365a', - 'etag' => '"487915172c9a840444c1ec2b7d71f7c4"', + 'hash' => '3d7611888475b7d854abccb44b2f4d6f83956f7191cf7e5c6b35af3478275370', + 'etag' => '"2abbd4966c76bedd83fffcdb92ebb6e3"', 'modified' => '0', 'block' => '5', )) @@ -1845,104 +500,104 @@ $connection->insert('aggregator_item') 'guid', )) ->values(array( - 'iid' => '12', + 'iid' => '51', 'fid' => '1', - 'title' => 'Logan Paul Gives First Interview Since Backlash', - 'link' => 'http://knowyourmeme.com/memes/logan-pauls-suicide-forest-video', + 'title' => 'The Seventh Anniversary of “Caging”', + 'link' => 'http://knowyourmeme.com/memes/caging', 'author' => '', - 'description' => 'Afe

Logan Paul sat down with Good Morning America today, and not everyone is loving his response to the controversy surrounding his suicide forest video.

', - 'timestamp' => '1517506442', - 'guid' => 'post:30144', + 'description' => 'Df1

Seven years ago, the earliest known video highlighting this hilarious practical joke, which involves taping photographic prints of the American actor Nicolas Cage to someone else’s room or belongings, was uploaded to YouTube by user youjustgotcaged.

', + 'timestamp' => '1518445882', + 'guid' => 'post:30309', )) ->values(array( - 'iid' => '13', + 'iid' => '52', 'fid' => '1', - 'title' => 'Trending Image Gallery: Fantasy Painting Object Labeling', - 'link' => 'http://knowyourmeme.com', + 'title' => 'A Demonic Organ Made out of Furbies', + 'link' => 'http://knowyourmeme.com/videos/181565-furby', 'author' => '', - 'description' => '838', - 'timestamp' => '1517524448', - 'guid' => 'post:30160', + 'description' => 'Ba2

YouTuber Look Mum No Computer wired a swarm of Furby toys to an organ to invent what might be the most disturbing musical instrument ever created.

', + 'timestamp' => '1518451562', + 'guid' => 'post:30310', )) ->values(array( - 'iid' => '14', + 'iid' => '53', 'fid' => '1', - 'title' => '“Bup” Becomes Twitch Stream Catchphrase', - 'link' => 'http://knowyourmeme.com/memes/bup', + 'title' => 'The Monsters, Inc. Goofy in the New Kingdom Hearts Trailer Sure Is Goofy', + 'link' => 'http://knowyourmeme.com/memes/kingdom-hearts-3s-monsters-inc-goofy', 'author' => '', - 'description' => 'Screen_shot_2018-02-01_at_4.22.30_pm

That stretched out Toad face goes by the name “Bup.”

', - 'timestamp' => '1517521005', - 'guid' => 'post:30158', + 'description' => 'Jp9vq4fh3mgpmzi1tnuv

Monster Goofy appears to have enjoyed the dankest of weeds.

', + 'timestamp' => '1518453486', + 'guid' => 'post:30311', )) ->values(array( - 'iid' => '15', + 'iid' => '54', 'fid' => '1', - 'title' => 'Steamed Hams But It’s the Neon Genesis Evangelion Opening', - 'link' => 'http://knowyourmeme.com/videos/180753-steamed-hams', + 'title' => 'Logan Paul Tasers His Way Back Into Controversy', + 'link' => 'http://knowyourmeme.com/memes/logan-paul-tasering-dead-rat', 'author' => '', - 'description' => 'C7c

Seymour, the EVA’s on fire!

', - 'timestamp' => '1517507437', - 'guid' => 'post:30147', + 'description' => 'D2d

Following his apology tour for the infamous suicide forest video, Logan Paul showed the world how much he’s learned about respecting dead bodies by tasering a rat corpse.

', + 'timestamp' => '1518455748', + 'guid' => 'post:30312', )) ->values(array( - 'iid' => '16', + 'iid' => '55', 'fid' => '1', - 'title' => 'Shrek’s Immortal “What Are You Doing In My Swamp?”', - 'link' => 'http://knowyourmeme.com/memes/what-are-you-doing-in-my-swamp', + 'title' => 'A Heroic Battle', + 'link' => 'http://knowyourmeme.com/photos/1341513-fantasy-painting-object-labeling', 'author' => '', - 'description' => 'Screen_shot_2018-02-01_at_1.02.35_pm

The famous line from Shrek has been the subject of many YouTube remixes starting around 2013.

', - 'timestamp' => '1517512122', - 'guid' => 'post:30150', + 'description' => 'A2c', + 'timestamp' => '1518458216', + 'guid' => 'post:30315', )) ->values(array( - 'iid' => '17', + 'iid' => '56', 'fid' => '1', - 'title' => 'It’s the Eighth Anniversary of Facebook’s Dopplegänger Week', - 'link' => 'http://knowyourmeme.com/memes/events/doppelganger-week', + 'title' => 'Kim Jong Un’s Sister at the Olympics Sparks Controversy', + 'link' => 'http://knowyourmeme.com/memes/kim-yo-jong-at-the-2018-winter-olympics', 'author' => '', - 'description' => '4a9

It was in January of 2010 that someone first post “January 18th starts Doppelgänger week.. during this week please change your profile picture to someone famous (actor ,musician,athelete) you have been told you look like for the week…retro week was a blast last week so lets keep the fun going…post this to your profile and message your friends with it!”

', - 'timestamp' => '1517513328', - 'guid' => 'post:30151', + 'description' => 'Kimjongunasdfasdf

After some praised Kim Jong-un’s sister Kim Yo Jong for appearing to give United States Vice President Mike Pence the “side eye” during the Winter Olympics opening ceremony, many were quick to point out that she happens to be the head of the dictatorship’s Propaganda and Agitation Department.

', + 'timestamp' => '1518457359', + 'guid' => 'post:30314', )) ->values(array( - 'iid' => '18', + 'iid' => '57', 'fid' => '1', - 'title' => 'Pornhub Solves Philly’s Grease Pole Problems', - 'link' => 'http://knowyourmeme.com/memes/sites/pornhub', + 'title' => 'The Onion’s Fifty Shades Freed Review', + 'link' => 'http://knowyourmeme.com/videos/181578-the-onion', 'author' => '', - 'description' => '254

The Internet pornographic video=hosting site has offered Philadelphia Police a few barrels of lube to grease those street poles with.

', - 'timestamp' => '1517521772', - 'guid' => 'post:30159', + 'description' => '2ea

The Onion’s Peter Rosenthal enters an existential nightmare reviewing the final Fifty Shades film.

', + 'timestamp' => '1518461192', + 'guid' => 'post:30317', )) ->values(array( - 'iid' => '19', + 'iid' => '58', 'fid' => '1', - 'title' => 'Terminate the Memes of January', - 'link' => 'http://knowyourmeme.com/videos/180777-ugandan-knuckles', + 'title' => '/r/surrealmemes Has Red Scare', + 'link' => 'http://knowyourmeme.com/memes/the-red', 'author' => '', - 'description' => 'B2d

DeleteThis Channel put together this great Terminator 2 parody featuring all the memes we lost last month.

', - 'timestamp' => '1517507501', - 'guid' => 'post:30148', + 'description' => 'Aetbyvw5gruyummvfljqd4iel-pqq0jz0ifsgeujsd0

Not the communist kind; they just ran out of red.

', + 'timestamp' => '1518461315', + 'guid' => 'post:30318', )) ->values(array( - 'iid' => '20', + 'iid' => '59', 'fid' => '1', - 'title' => 'Violet Evergarden Anime Is Early Hit Among Fans', - 'link' => 'http://knowyourmeme.com/memes/subcultures/violet-evergarden', + 'title' => 'YouTuber KSI Really Wants to Beat Up Jake and Logan Paul', + 'link' => 'http://knowyourmeme.com/memes/events/jake-paul-and-ksi-feud', 'author' => '', - 'description' => 'Violet01_tva_p.mkv_snapshot_00.40_2018.01.10_22.37.13

The light novel’s adaptation has scores of 8.5 on MyAnimeList and IMDb after four episodes.

', - 'timestamp' => '1517515982', - 'guid' => 'post:30153', + 'description' => 'B85

For the last two weeks, YouTubers KSI and Jake Paul have exchanged harsh words that will culminate in a broadcasted fight.

', + 'timestamp' => '1518462246', + 'guid' => 'post:30319', )) ->values(array( - 'iid' => '21', + 'iid' => '60', 'fid' => '1', - 'title' => 'The Cheese Grater Image Is More Like an Eye Grater', - 'link' => 'http://knowyourmeme.com/memes/the-cheese-grater-image', + 'title' => 'Elon Musk Has His Priorities Straight', + 'link' => 'http://knowyourmeme.com/photos/1341578-elon-musk', 'author' => '', - 'description' => '5bd

One of the internet’s worst images has been furry nightmare fuel since 2007.

', - 'timestamp' => '1517516178', - 'guid' => 'post:30154', + 'description' => 'B37', + 'timestamp' => '1518467765', + 'guid' => 'post:30323', )) ->execute(); @@ -2136,9 +791,9 @@ $connection->insert('block') 'module' => 'node', 'delta' => 'recent', 'theme' => 'seven', - 'status' => '1', + 'status' => '0', 'weight' => '10', - 'region' => 'dashboard_main', + 'region' => '-1', 'custom' => '0', 'visibility' => '0', 'pages' => '', @@ -2248,9 +903,9 @@ $connection->insert('block') 'module' => 'user', 'delta' => 'new', 'theme' => 'seven', - 'status' => '1', + 'status' => '0', 'weight' => '0', - 'region' => 'dashboard_sidebar', + 'region' => '-1', 'custom' => '0', 'visibility' => '0', 'pages' => '', @@ -2262,9 +917,9 @@ $connection->insert('block') 'module' => 'search', 'delta' => 'form', 'theme' => 'seven', - 'status' => '1', + 'status' => '0', 'weight' => '-10', - 'region' => 'dashboard_sidebar', + 'region' => '-1', 'custom' => '0', 'visibility' => '0', 'pages' => '', @@ -2402,9 +1057,9 @@ $connection->insert('block') 'module' => 'comment', 'delta' => 'recent', 'theme' => 'seven', - 'status' => '1', + 'status' => '0', 'weight' => '0', - 'region' => 'dashboard_inactive', + 'region' => '-1', 'custom' => '0', 'visibility' => '0', 'pages' => '', @@ -2514,9 +1169,9 @@ $connection->insert('block') 'module' => 'user', 'delta' => 'online', 'theme' => 'seven', - 'status' => '1', + 'status' => '0', 'weight' => '0', - 'region' => 'dashboard_inactive', + 'region' => '-1', 'custom' => '0', 'visibility' => '0', 'pages' => '', @@ -2598,9 +1253,9 @@ $connection->insert('block') 'module' => 'blog', 'delta' => 'recent', 'theme' => 'seven', - 'status' => '1', + 'status' => '0', 'weight' => '0', - 'region' => 'dashboard_inactive', + 'region' => '-1', 'custom' => '0', 'visibility' => '0', 'pages' => '', @@ -2640,9 +1295,9 @@ $connection->insert('block') 'module' => 'forum', 'delta' => 'active', 'theme' => 'seven', - 'status' => '1', + 'status' => '0', 'weight' => '0', - 'region' => 'dashboard_inactive', + 'region' => '-1', 'custom' => '0', 'visibility' => '0', 'pages' => '', @@ -2654,9 +1309,9 @@ $connection->insert('block') 'module' => 'forum', 'delta' => 'new', 'theme' => 'seven', - 'status' => '1', + 'status' => '0', 'weight' => '0', - 'region' => 'dashboard_inactive', + 'region' => '-1', 'custom' => '0', 'visibility' => '0', 'pages' => '', @@ -3369,49 +2024,6 @@ $connection->schema()->createTable('cache_update', array( 'mysql_character_set' => 'utf8', )); -$connection->schema()->createTable('cache_variable', array( - 'fields' => array( - 'cid' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'data' => array( - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'big', - ), - 'expire' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'created' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'serialized' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'small', - 'default' => '0', - ), - ), - 'primary key' => array( - 'cid', - ), - 'indexes' => array( - 'expire' => array( - 'expire', - ), - ), - 'mysql_character_set' => 'utf8', -)); - $connection->schema()->createTable('cache_views', array( 'fields' => array( 'cid' => array( @@ -4110,13 +2722,13 @@ $connection->insert('field_collection_item') )) ->values(array( 'item_id' => '1', - 'revision_id' => '1', + 'revision_id' => '8', 'field_name' => 'field_field_collection_test', 'archived' => '0', )) ->values(array( 'item_id' => '2', - 'revision_id' => '2', + 'revision_id' => '9', 'field_name' => 'field_field_collection_test', 'archived' => '0', )) @@ -4126,6 +2738,30 @@ $connection->insert('field_collection_item') 'field_name' => 'field_field_collection_test', 'archived' => '0', )) +->values(array( + 'item_id' => '4', + 'revision_id' => '4', + 'field_name' => 'field_field_collection_test', + 'archived' => '0', +)) +->values(array( + 'item_id' => '5', + 'revision_id' => '5', + 'field_name' => 'field_field_collection_test', + 'archived' => '0', +)) +->values(array( + 'item_id' => '6', + 'revision_id' => '6', + 'field_name' => 'field_field_collection_test', + 'archived' => '0', +)) +->values(array( + 'item_id' => '7', + 'revision_id' => '7', + 'field_name' => 'field_field_collection_test', + 'archived' => '0', +)) ->execute(); $connection->schema()->createTable('field_collection_item_revision', array( @@ -4169,6 +2805,30 @@ $connection->insert('field_collection_item_revision') 'revision_id' => '3', 'item_id' => '3', )) +->values(array( + 'revision_id' => '4', + 'item_id' => '4', +)) +->values(array( + 'revision_id' => '5', + 'item_id' => '5', +)) +->values(array( + 'revision_id' => '6', + 'item_id' => '6', +)) +->values(array( + 'revision_id' => '7', + 'item_id' => '7', +)) +->values(array( + 'revision_id' => '8', + 'item_id' => '1', +)) +->values(array( + 'revision_id' => '9', + 'item_id' => '2', +)) ->execute(); $connection->schema()->createTable('field_config', array( @@ -4795,7 +3455,7 @@ $connection->insert('field_config') 'deleted' => '0', )) ->values(array( - 'id' => '38', + 'id' => '37', 'field_name' => 'field_field_collection_test', 'type' => 'field_collection', 'module' => 'field_collection', @@ -4804,14 +3464,14 @@ $connection->insert('field_config') 'storage_module' => 'field_sql_storage', 'storage_active' => '1', 'locked' => '0', - 'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:3:{s:16:"hide_blank_items";i:1;s:17:"hide_initial_item";i:0;s:4:"path";s:0:"";}s:7:"storage";a:5:{s:4:"type";s:17:"field_sql_storage";s:8:"settings";a:0:{}s:6:"module";s:17:"field_sql_storage";s:6:"active";s:1:"1";s:7:"details";a:1:{s:3:"sql";a:2:{s:18:"FIELD_LOAD_CURRENT";a:1:{s:38:"field_data_field_field_collection_test";a:2:{s:5:"value";s:33:"field_field_collection_test_value";s:11:"revision_id";s:39:"field_field_collection_test_revision_id";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:42:"field_revision_field_field_collection_test";a:2:{s:5:"value";s:33:"field_field_collection_test_value";s:11:"revision_id";s:39:"field_field_collection_test_revision_id";}}}}}s:12:"foreign keys";a:0:{}s:7:"indexes";a:2:{s:5:"value";a:1:{i:0;s:5:"value";}s:11:"revision_id";a:1:{i:0;s:11:"revision_id";}}s:2:"id";s:2:"38";}', - 'cardinality' => '1', + 'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:3:{s:16:"hide_blank_items";i:1;s:17:"hide_initial_item";i:0;s:4:"path";s:0:"";}s:7:"storage";a:5:{s:4:"type";s:17:"field_sql_storage";s:8:"settings";a:0:{}s:6:"module";s:17:"field_sql_storage";s:6:"active";s:1:"1";s:7:"details";a:1:{s:3:"sql";a:2:{s:18:"FIELD_LOAD_CURRENT";a:1:{s:38:"field_data_field_field_collection_test";a:2:{s:5:"value";s:33:"field_field_collection_test_value";s:11:"revision_id";s:39:"field_field_collection_test_revision_id";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:42:"field_revision_field_field_collection_test";a:2:{s:5:"value";s:33:"field_field_collection_test_value";s:11:"revision_id";s:39:"field_field_collection_test_revision_id";}}}}}s:12:"foreign keys";a:0:{}s:7:"indexes";a:2:{s:5:"value";a:1:{i:0;s:5:"value";}s:11:"revision_id";a:1:{i:0;s:11:"revision_id";}}s:2:"id";s:2:"37";}', + 'cardinality' => '-1', 'translatable' => '0', 'deleted' => '0', )) ->values(array( - 'id' => '39', - 'field_name' => 'field_paragraph_test', + 'id' => '38', + 'field_name' => 'field_any_paragraph', 'type' => 'paragraphs', 'module' => 'paragraphs', 'active' => '1', @@ -4819,11 +3479,26 @@ $connection->insert('field_config') 'storage_module' => 'field_sql_storage', 'storage_active' => '1', 'locked' => '0', - 'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:0:{}s:7:"storage";a:5:{s:4:"type";s:17:"field_sql_storage";s:8:"settings";a:0:{}s:6:"module";s:17:"field_sql_storage";s:6:"active";s:1:"1";s:7:"details";a:1:{s:3:"sql";a:2:{s:18:"FIELD_LOAD_CURRENT";a:1:{s:31:"field_data_field_paragraph_test";a:2:{s:5:"value";s:26:"field_paragraph_test_value";s:11:"revision_id";s:32:"field_paragraph_test_revision_id";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:35:"field_revision_field_paragraph_test";a:2:{s:5:"value";s:26:"field_paragraph_test_value";s:11:"revision_id";s:32:"field_paragraph_test_revision_id";}}}}}s:12:"foreign keys";a:0:{}s:7:"indexes";a:0:{}s:2:"id";s:2:"39";}', + 'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:0:{}s:7:"storage";a:5:{s:4:"type";s:17:"field_sql_storage";s:8:"settings";a:0:{}s:6:"module";s:17:"field_sql_storage";s:6:"active";s:1:"1";s:7:"details";a:1:{s:3:"sql";a:2:{s:18:"FIELD_LOAD_CURRENT";a:1:{s:30:"field_data_field_any_paragraph";a:2:{s:5:"value";s:25:"field_any_paragraph_value";s:11:"revision_id";s:31:"field_any_paragraph_revision_id";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:34:"field_revision_field_any_paragraph";a:2:{s:5:"value";s:25:"field_any_paragraph_value";s:11:"revision_id";s:31:"field_any_paragraph_revision_id";}}}}}s:12:"foreign keys";a:0:{}s:7:"indexes";a:0:{}s:2:"id";s:2:"38";}', 'cardinality' => '-1', 'translatable' => '0', 'deleted' => '0', )) +->values(array( + 'id' => '39', + 'field_name' => 'field_paragraph_one_only', + 'type' => 'paragraphs', + 'module' => 'paragraphs', + 'active' => '1', + 'storage_type' => 'field_sql_storage', + 'storage_module' => 'field_sql_storage', + 'storage_active' => '1', + 'locked' => '0', + 'data' => 'a:7:{s:12:"translatable";s:1:"0";s:12:"entity_types";a:0:{}s:8:"settings";a:0:{}s:7:"storage";a:5:{s:4:"type";s:17:"field_sql_storage";s:8:"settings";a:0:{}s:6:"module";s:17:"field_sql_storage";s:6:"active";s:1:"1";s:7:"details";a:1:{s:3:"sql";a:2:{s:18:"FIELD_LOAD_CURRENT";a:1:{s:35:"field_data_field_paragraph_one_only";a:2:{s:5:"value";s:30:"field_paragraph_one_only_value";s:11:"revision_id";s:36:"field_paragraph_one_only_revision_id";}}s:19:"FIELD_LOAD_REVISION";a:1:{s:39:"field_revision_field_paragraph_one_only";a:2:{s:5:"value";s:30:"field_paragraph_one_only_value";s:11:"revision_id";s:36:"field_paragraph_one_only_revision_id";}}}}}s:12:"foreign keys";a:0:{}s:7:"indexes";a:0:{}s:2:"id";s:2:"39";}', + 'cardinality' => '1', + 'translatable' => '0', + 'deleted' => '0', +)) ->execute(); $connection->schema()->createTable('field_config_instance', array( @@ -5426,74 +4101,101 @@ $connection->insert('field_config_instance') )) ->values(array( 'id' => '63', + 'field_id' => '1', + 'field_name' => 'comment_body', + 'entity_type' => 'comment', + 'bundle' => 'comment_node_paragraphs_test', + 'data' => 'a:6:{s:5:"label";s:7:"Comment";s:8:"settings";a:2:{s:15:"text_processing";i:1;s:18:"user_register_form";b:0;}s:8:"required";b:1;s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:12:"text_default";s:6:"weight";i:0;s:8:"settings";a:0:{}s:6:"module";s:4:"text";}}s:6:"widget";a:4:{s:4:"type";s:13:"text_textarea";s:8:"settings";a:1:{s:4:"rows";i:5;}s:6:"weight";i:0;s:6:"module";s:4:"text";}s:11:"description";s:0:"";}', + 'deleted' => '0', +)) +->values(array( + 'id' => '64', + 'field_id' => '2', + 'field_name' => 'body', + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', + 'data' => 'a:6:{s:5:"label";s:4:"Body";s:6:"widget";a:4:{s:4:"type";s:26:"text_textarea_with_summary";s:8:"settings";a:2:{s:4:"rows";i:20;s:12:"summary_rows";i:5;}s:6:"weight";s:2:"-4";s:6:"module";s:4:"text";}s:8:"settings";a:3:{s:15:"display_summary";b:1;s:15:"text_processing";i:1;s:18:"user_register_form";b:0;}s:7:"display";a:2:{s:7:"default";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:12:"text_default";s:6:"weight";s:1:"0";s:8:"settings";a:0:{}s:6:"module";s:4:"text";}s:6:"teaser";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:23:"text_summary_or_trimmed";s:8:"settings";a:1:{s:11:"trim_length";i:600;}s:6:"module";s:4:"text";s:6:"weight";i:0;}}s:8:"required";b:0;s:11:"description";s:0:"";}', + 'deleted' => '0', +)) +->values(array( + 'id' => '65', + 'field_id' => '37', + 'field_name' => 'field_field_collection_test', + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', + 'data' => 'a:7:{s:5:"label";s:21:"Field Collection Test";s:6:"widget";a:5:{s:6:"weight";s:2:"-3";s:4:"type";s:22:"field_collection_embed";s:6:"module";s:16:"field_collection";s:6:"active";i:0;s:8:"settings";a:0:{}}s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:21:"field_collection_view";s:6:"weight";s:1:"1";s:8:"settings";a:5:{s:4:"edit";s:4:"Edit";s:6:"delete";s:6:"Delete";s:3:"add";s:3:"Add";s:11:"description";b:1;s:9:"view_mode";s:4:"full";}s:6:"module";s:16:"field_collection";}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}', + 'deleted' => '0', +)) +->values(array( + 'id' => '66', 'field_id' => '21', 'field_name' => 'field_text', 'entity_type' => 'paragraphs_item', - 'bundle' => 'paragraph_bundle_test', + 'bundle' => 'paragraph_bundle_two', 'data' => 'a:7:{s:5:"label";s:4:"Text";s:6:"widget";a:5:{s:6:"weight";s:1:"2";s:4:"type";s:14:"text_textfield";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:1:{s:4:"size";s:2:"60";}}s:8:"settings";a:2:{s:15:"text_processing";s:1:"0";s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:0;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}', 'deleted' => '0', )) ->values(array( - 'id' => '64', + 'id' => '67', 'field_id' => '7', 'field_name' => 'field_email', 'entity_type' => 'paragraphs_item', - 'bundle' => 'paragraph_bundle_test', + 'bundle' => 'paragraph_bundle_two', 'data' => 'a:7:{s:5:"label";s:5:"Email";s:6:"widget";a:5:{s:6:"weight";s:1:"4";s:4:"type";s:15:"email_textfield";s:6:"module";s:5:"email";s:6:"active";i:1;s:8:"settings";a:1:{s:4:"size";s:2:"60";}}s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:13:"email_default";s:8:"settings";a:0:{}s:6:"module";s:5:"email";s:6:"weight";i:1;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}', 'deleted' => '0', )) ->values(array( - 'id' => '65', - 'field_id' => '1', - 'field_name' => 'comment_body', - 'entity_type' => 'comment', - 'bundle' => 'comment_node_paragraphs_migration_test', - 'data' => 'a:6:{s:5:"label";s:7:"Comment";s:8:"settings";a:2:{s:15:"text_processing";i:1;s:18:"user_register_form";b:0;}s:8:"required";b:1;s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:12:"text_default";s:6:"weight";i:0;s:8:"settings";a:0:{}s:6:"module";s:4:"text";}}s:6:"widget";a:4:{s:4:"type";s:13:"text_textarea";s:8:"settings";a:1:{s:4:"rows";i:5;}s:6:"weight";i:0;s:6:"module";s:4:"text";}s:11:"description";s:0:"";}', + 'id' => '70', + 'field_id' => '21', + 'field_name' => 'field_text', + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', + 'data' => 'a:7:{s:5:"label";s:4:"Text";s:6:"widget";a:5:{s:6:"weight";s:1:"2";s:4:"type";s:14:"text_textfield";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:1:{s:4:"size";s:2:"60";}}s:8:"settings";a:2:{s:15:"text_processing";s:1:"0";s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:0;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}', 'deleted' => '0', )) ->values(array( - 'id' => '66', - 'field_id' => '2', - 'field_name' => 'body', - 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', - 'data' => 'a:6:{s:5:"label";s:4:"Body";s:6:"widget";a:4:{s:4:"type";s:26:"text_textarea_with_summary";s:8:"settings";a:2:{s:4:"rows";i:20;s:12:"summary_rows";i:5;}s:6:"weight";s:2:"-4";s:6:"module";s:4:"text";}s:8:"settings";a:3:{s:15:"display_summary";b:1;s:15:"text_processing";i:1;s:18:"user_register_form";b:0;}s:7:"display";a:2:{s:7:"default";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:12:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:0;}s:6:"teaser";a:5:{s:5:"label";s:6:"hidden";s:4:"type";s:23:"text_summary_or_trimmed";s:8:"settings";a:1:{s:11:"trim_length";i:600;}s:6:"module";s:4:"text";s:6:"weight";i:0;}}s:8:"required";b:0;s:11:"description";s:0:"";}', + 'id' => '71', + 'field_id' => '17', + 'field_name' => 'field_integer_list', + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', + 'data' => 'a:7:{s:5:"label";s:12:"Integer List";s:6:"widget";a:5:{s:6:"weight";s:1:"4";s:4:"type";s:15:"options_buttons";s:6:"module";s:7:"options";s:6:"active";i:1;s:8:"settings";a:0:{}}s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"list_default";s:8:"settings";a:0:{}s:6:"module";s:4:"list";s:6:"weight";i:1;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}', 'deleted' => '0', )) ->values(array( - 'id' => '68', + 'id' => '72', 'field_id' => '38', - 'field_name' => 'field_field_collection_test', + 'field_name' => 'field_any_paragraph', 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', - 'data' => 'a:7:{s:5:"label";s:21:"Field Collection Test";s:6:"widget";a:5:{s:6:"weight";s:2:"-2";s:4:"type";s:22:"field_collection_embed";s:6:"module";s:16:"field_collection";s:6:"active";i:0;s:8:"settings";a:0:{}}s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:21:"field_collection_view";s:8:"settings";a:5:{s:4:"edit";s:4:"Edit";s:6:"delete";s:6:"Delete";s:3:"add";s:3:"Add";s:11:"description";b:1;s:9:"view_mode";s:4:"full";}s:6:"module";s:16:"field_collection";s:6:"weight";i:2;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}', + 'bundle' => 'paragraphs_test', + 'data' => 'a:7:{s:5:"label";s:13:"Any Paragraph";s:6:"widget";a:5:{s:6:"weight";s:2:"-2";s:4:"type";s:16:"paragraphs_embed";s:6:"module";s:10:"paragraphs";s:6:"active";i:0;s:8:"settings";a:0:{}}s:8:"settings";a:7:{s:5:"title";s:13:"Any Paragraph";s:14:"title_multiple";s:14:"Any Paragraphs";s:17:"default_edit_mode";s:6:"closed";s:8:"add_mode";s:6:"button";s:15:"allowed_bundles";a:2:{s:20:"paragraph_bundle_two";i:-1;s:20:"paragraph_bundle_one";i:-1;}s:14:"bundle_weights";a:2:{s:20:"paragraph_bundle_two";s:1:"2";s:20:"paragraph_bundle_one";s:1:"4";}s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:15:"paragraphs_view";s:6:"weight";s:1:"2";s:8:"settings";a:1:{s:9:"view_mode";s:25:"paragraphs_editor_preview";}s:6:"module";s:10:"paragraphs";}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}', 'deleted' => '0', )) ->values(array( - 'id' => '69', + 'id' => '73', 'field_id' => '39', - 'field_name' => 'field_paragraph_test', + 'field_name' => 'field_paragraph_one_only', 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', - 'data' => 'a:7:{s:5:"label";s:14:"Paragraph Test";s:6:"widget";a:5:{s:6:"weight";s:2:"-1";s:4:"type";s:16:"paragraphs_embed";s:6:"module";s:10:"paragraphs";s:6:"active";i:0;s:8:"settings";a:0:{}}s:8:"settings";a:7:{s:5:"title";s:9:"Paragraph";s:14:"title_multiple";s:10:"Paragraphs";s:17:"default_edit_mode";s:4:"open";s:8:"add_mode";s:6:"select";s:15:"allowed_bundles";a:1:{s:21:"paragraph_bundle_test";i:-1;}s:14:"bundle_weights";a:1:{s:21:"paragraph_bundle_test";s:1:"2";}s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:15:"paragraphs_view";s:8:"settings";a:1:{s:9:"view_mode";s:4:"full";}s:6:"module";s:10:"paragraphs";s:6:"weight";i:3;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}', + 'bundle' => 'paragraphs_test', + 'data' => 'a:7:{s:5:"label";s:18:"Paragraph One Only";s:6:"widget";a:5:{s:6:"weight";s:2:"-1";s:4:"type";s:16:"paragraphs_embed";s:6:"module";s:10:"paragraphs";s:6:"active";i:0;s:8:"settings";a:0:{}}s:8:"settings";a:7:{s:5:"title";s:9:"Paragraph";s:14:"title_multiple";s:10:"Paragraphs";s:17:"default_edit_mode";s:4:"open";s:8:"add_mode";s:6:"select";s:15:"allowed_bundles";a:2:{s:20:"paragraph_bundle_two";i:-1;s:20:"paragraph_bundle_one";s:20:"paragraph_bundle_one";}s:14:"bundle_weights";a:2:{s:20:"paragraph_bundle_two";s:1:"2";s:20:"paragraph_bundle_one";s:1:"4";}s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:4:{s:5:"label";s:5:"above";s:4:"type";s:6:"hidden";s:6:"weight";s:1:"3";s:8:"settings";a:0:{}}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}', 'deleted' => '0', )) ->values(array( - 'id' => '70', + 'id' => '74', 'field_id' => '21', 'field_name' => 'field_text', - 'entity_type' => 'field_collection_item', - 'bundle' => 'field_field_collection_test', - 'data' => 'a:7:{s:5:"label";s:21:"Field Collection Text";s:6:"widget";a:5:{s:6:"weight";s:1:"2";s:4:"type";s:14:"text_textfield";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:1:{s:4:"size";s:2:"60";}}s:8:"settings";a:2:{s:15:"text_processing";s:1:"0";s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:0;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}', + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'data' => 'a:7:{s:5:"label";s:4:"Text";s:6:"widget";a:5:{s:6:"weight";s:1:"2";s:4:"type";s:14:"text_textfield";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:1:{s:4:"size";s:2:"60";}}s:8:"settings";a:2:{s:15:"text_processing";s:1:"0";s:18:"user_register_form";b:0;}s:7:"display";a:2:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:0;}s:25:"paragraphs_editor_preview";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"text_default";s:6:"weight";s:1:"0";s:8:"settings";a:0:{}s:6:"module";s:4:"text";}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}', 'deleted' => '0', )) ->values(array( - 'id' => '71', - 'field_id' => '26', - 'field_name' => 'field_text_plain', - 'entity_type' => 'field_collection_item', - 'bundle' => 'field_field_collection_test', - 'data' => 'a:7:{s:5:"label";s:27:"Field Collection Text plain";s:6:"widget";a:5:{s:6:"weight";s:1:"4";s:4:"type";s:14:"text_textfield";s:6:"module";s:4:"text";s:6:"active";i:1;s:8:"settings";a:1:{s:4:"size";s:2:"60";}}s:8:"settings";a:2:{s:15:"text_processing";s:1:"0";s:18:"user_register_form";b:0;}s:7:"display";a:1:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"text_default";s:8:"settings";a:0:{}s:6:"module";s:4:"text";s:6:"weight";i:1;}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}', + 'id' => '76', + 'field_id' => '16', + 'field_name' => 'field_text_list', + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'data' => 'a:7:{s:5:"label";s:9:"Text List";s:6:"widget";a:5:{s:6:"weight";s:1:"6";s:4:"type";s:14:"options_select";s:6:"module";s:7:"options";s:6:"active";i:1;s:8:"settings";a:0:{}}s:8:"settings";a:1:{s:18:"user_register_form";b:0;}s:7:"display";a:2:{s:7:"default";a:5:{s:5:"label";s:5:"above";s:4:"type";s:12:"list_default";s:8:"settings";a:0:{}s:6:"module";s:4:"list";s:6:"weight";i:2;}s:25:"paragraphs_editor_preview";a:4:{s:5:"label";s:5:"above";s:4:"type";s:6:"hidden";s:6:"weight";s:1:"1";s:8:"settings";a:0:{}}}s:8:"required";i:0;s:11:"description";s:0:"";s:13:"default_value";N;}', 'deleted' => '0', )) ->execute(); @@ -5607,37 +4309,37 @@ $connection->insert('field_data_body') )) ->values(array( 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', + 'bundle' => 'paragraphs_test', 'deleted' => '0', 'entity_id' => '8', - 'revision_id' => '8', + 'revision_id' => '11', 'language' => 'und', 'delta' => '0', - 'body_value' => 'Paragraphs Migration Test Body', + 'body_value' => 'Aliquam nec adipiscing tincidunt turpis habitasse scelerisque eros montes, diam? Tincidunt magna rhoncus urna pulvinar! In mauris urna nunc a, pellentesque hac eros mid, a etiam nunc, vel tempor nascetur sit elit cras ridiculus ridiculus, proin rhoncus cras mattis tempor turpis, odio adipiscing ac cum ac placerat magna. Mauris magnis rhoncus urna placerat ut elementum risus a eu augue arcu, urna dictumst, porta, sociis mattis, sed hac aliquam placerat augue hac turpis. Risus tortor risus natoque amet pid habitasse in.', 'body_summary' => '', 'body_format' => 'filtered_html', )) ->values(array( 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', + 'bundle' => 'paragraphs_test', 'deleted' => '0', 'entity_id' => '9', 'revision_id' => '9', 'language' => 'und', 'delta' => '0', - 'body_value' => 'Paragraphs Migration Test Translatable English Body', + 'body_value' => 'Aliquam nec adipiscing tincidunt turpis habitasse scelerisque eros montes, diam? Tincidunt magna rhoncus urna pulvinar! In mauris urna nunc a, pellentesque hac eros mid, a etiam nunc, vel tempor nascetur sit elit cras ridiculus ridiculus, proin rhoncus cras mattis tempor turpis, odio adipiscing ac cum ac placerat magna. Mauris magnis rhoncus urna placerat ut elementum risus a eu augue arcu, urna dictumst, porta, sociis mattis, sed hac aliquam placerat augue hac turpis. Risus tortor risus natoque amet pid habitasse in.', 'body_summary' => '', 'body_format' => 'filtered_html', )) ->values(array( 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', + 'bundle' => 'paragraphs_test', 'deleted' => '0', 'entity_id' => '10', 'revision_id' => '10', 'language' => 'und', 'delta' => '0', - 'body_value' => 'Paragraphs Migration Test Translatable Icelandic Body', + 'body_value' => 'Aliquam nec adipiscing tincidunt turpis habitasse scelerisque eros montes, diam? Tincidunt magna rhoncus urna pulvinar! In mauris urna nunc a, pellentesque hac eros mid, a etiam nunc, vel tempor nascetur sit elit cras ridiculus ridiculus, proin rhoncus cras mattis tempor turpis, odio adipiscing ac cum ac placerat magna. Mauris magnis rhoncus urna placerat ut elementum risus a eu augue arcu, urna dictumst, porta, sociis mattis, sed hac aliquam placerat augue hac turpis. Risus tortor risus natoque amet pid habitasse in.', 'body_summary' => '', 'body_format' => 'filtered_html', )) @@ -5733,7 +4435,7 @@ $connection->insert('field_data_comment_body') )) ->execute(); -$connection->schema()->createTable('field_data_field_boolean', array( +$connection->schema()->createTable('field_data_field_any_paragraph', array( 'fields' => array( 'entity_type' => array( 'type' => 'varchar', @@ -5750,7 +4452,7 @@ $connection->schema()->createTable('field_data_field_boolean', array( 'deleted' => array( 'type' => 'int', 'not null' => TRUE, - 'size' => 'normal', + 'size' => 'tiny', 'default' => '0', ), 'entity_id' => array( @@ -5777,7 +4479,12 @@ $connection->schema()->createTable('field_data_field_boolean', array( 'size' => 'normal', 'unsigned' => TRUE, ), - 'field_boolean_value' => array( + 'field_any_paragraph_value' => array( + 'type' => 'int', + 'not null' => FALSE, + 'size' => 'normal', + ), + 'field_any_paragraph_revision_id' => array( 'type' => 'int', 'not null' => FALSE, 'size' => 'normal', @@ -5785,15 +4492,35 @@ $connection->schema()->createTable('field_data_field_boolean', array( ), 'primary key' => array( 'entity_type', - 'deleted', 'entity_id', - 'language', + 'deleted', 'delta', + 'language', + ), + 'indexes' => array( + 'entity_type' => array( + 'entity_type', + ), + 'bundle' => array( + 'bundle', + ), + 'deleted' => array( + 'deleted', + ), + 'entity_id' => array( + 'entity_id', + ), + 'revision_id' => array( + 'revision_id', + ), + 'language' => array( + 'language', + ), ), 'mysql_character_set' => 'utf8', )); -$connection->insert('field_data_field_boolean') +$connection->insert('field_data_field_any_paragraph') ->fields(array( 'entity_type', 'bundle', @@ -5802,21 +4529,172 @@ $connection->insert('field_data_field_boolean') 'revision_id', 'language', 'delta', - 'field_boolean_value', + 'field_any_paragraph_value', + 'field_any_paragraph_revision_id', )) ->values(array( 'entity_type' => 'node', - 'bundle' => 'test_content_type', + 'bundle' => 'paragraphs_test', 'deleted' => '0', - 'entity_id' => '1', - 'revision_id' => '1', + 'entity_id' => '8', + 'revision_id' => '11', 'language' => 'und', 'delta' => '0', - 'field_boolean_value' => '1', + 'field_any_paragraph_value' => '12', + 'field_any_paragraph_revision_id' => '17', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', + 'deleted' => '0', + 'entity_id' => '9', + 'revision_id' => '9', + 'language' => 'und', + 'delta' => '0', + 'field_any_paragraph_value' => '14', + 'field_any_paragraph_revision_id' => '14', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', + 'deleted' => '0', + 'entity_id' => '10', + 'revision_id' => '10', + 'language' => 'und', + 'delta' => '0', + 'field_any_paragraph_value' => '11', + 'field_any_paragraph_revision_id' => '11', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', + 'deleted' => '0', + 'entity_id' => '8', + 'revision_id' => '11', + 'language' => 'und', + 'delta' => '1', + 'field_any_paragraph_value' => '2', + 'field_any_paragraph_revision_id' => '18', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', + 'deleted' => '0', + 'entity_id' => '9', + 'revision_id' => '9', + 'language' => 'und', + 'delta' => '1', + 'field_any_paragraph_value' => '5', + 'field_any_paragraph_revision_id' => '5', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', + 'deleted' => '0', + 'entity_id' => '10', + 'revision_id' => '10', + 'language' => 'und', + 'delta' => '1', + 'field_any_paragraph_value' => '8', + 'field_any_paragraph_revision_id' => '8', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', + 'deleted' => '0', + 'entity_id' => '10', + 'revision_id' => '10', + 'language' => 'und', + 'delta' => '2', + 'field_any_paragraph_value' => '10', + 'field_any_paragraph_revision_id' => '10', )) ->execute(); -$connection->schema()->createTable('field_data_field_date', array( +$connection->schema()->createTable('field_data_field_boolean', array( + 'fields' => array( + 'entity_type' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '128', + 'default' => '', + ), + 'bundle' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '128', + 'default' => '', + ), + 'deleted' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'entity_id' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'unsigned' => TRUE, + ), + 'revision_id' => array( + 'type' => 'int', + 'not null' => FALSE, + 'size' => 'normal', + 'unsigned' => TRUE, + ), + 'language' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '32', + 'default' => '', + ), + 'delta' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'unsigned' => TRUE, + ), + 'field_boolean_value' => array( + 'type' => 'int', + 'not null' => FALSE, + 'size' => 'normal', + ), + ), + 'primary key' => array( + 'entity_type', + 'deleted', + 'entity_id', + 'language', + 'delta', + ), + 'mysql_character_set' => 'utf8', +)); + +$connection->insert('field_data_field_boolean') +->fields(array( + 'entity_type', + 'bundle', + 'deleted', + 'entity_id', + 'revision_id', + 'language', + 'delta', + 'field_boolean_value', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'test_content_type', + 'deleted' => '0', + 'entity_id' => '1', + 'revision_id' => '1', + 'language' => 'und', + 'delta' => '0', + 'field_boolean_value' => '1', +)) +->execute(); + +$connection->schema()->createTable('field_data_field_date', array( 'fields' => array( 'entity_type' => array( 'type' => 'varchar', @@ -6238,53 +5116,43 @@ $connection->insert('field_data_field_email') )) ->values(array( 'entity_type' => 'paragraphs_item', - 'bundle' => 'paragraph_bundle_test', - 'deleted' => '0', - 'entity_id' => '1', - 'revision_id' => '1', - 'language' => 'und', - 'delta' => '0', - 'field_email_email' => 'joe@joe.com', -)) -->values(array( - 'entity_type' => 'paragraphs_item', - 'bundle' => 'paragraph_bundle_test', + 'bundle' => 'paragraph_bundle_two', 'deleted' => '0', 'entity_id' => '2', - 'revision_id' => '2', + 'revision_id' => '18', 'language' => 'und', 'delta' => '0', - 'field_email_email' => 'John@john.com', + 'field_email_email' => 'joe@joe.com', )) ->values(array( 'entity_type' => 'paragraphs_item', - 'bundle' => 'paragraph_bundle_test', + 'bundle' => 'paragraph_bundle_two', 'deleted' => '0', - 'entity_id' => '3', - 'revision_id' => '3', + 'entity_id' => '5', + 'revision_id' => '5', 'language' => 'und', 'delta' => '0', - 'field_email_email' => 'joe@joe.com', + 'field_email_email' => 'jose@jose.com', )) ->values(array( 'entity_type' => 'paragraphs_item', - 'bundle' => 'paragraph_bundle_test', + 'bundle' => 'paragraph_bundle_two', 'deleted' => '0', - 'entity_id' => '4', - 'revision_id' => '4', + 'entity_id' => '8', + 'revision_id' => '8', 'language' => 'und', 'delta' => '0', - 'field_email_email' => 'Joe@jo.is', + 'field_email_email' => 'jose@jose.com', )) ->values(array( 'entity_type' => 'paragraphs_item', - 'bundle' => 'paragraph_bundle_test', + 'bundle' => 'paragraph_bundle_two', 'deleted' => '0', - 'entity_id' => '5', - 'revision_id' => '5', + 'entity_id' => '10', + 'revision_id' => '10', 'language' => 'und', 'delta' => '0', - 'field_email_email' => 'jeff@jeff.is', + 'field_email_email' => 'john@john.com', )) ->values(array( 'entity_type' => 'node', @@ -6296,16 +5164,6 @@ $connection->insert('field_data_field_email') 'delta' => '1', 'field_email_email' => 'another@example.com', )) -->values(array( - 'entity_type' => 'paragraphs_item', - 'bundle' => 'paragraph_bundle_test', - 'deleted' => '0', - 'entity_id' => '1', - 'revision_id' => '1', - 'language' => 'und', - 'delta' => '1', - 'field_email_email' => 'jeff@jeff.com', -)) ->execute(); $connection->schema()->createTable('field_data_field_field_collection_test', array( @@ -6413,36 +5271,69 @@ $connection->insert('field_data_field_field_collection_test') )) ->values(array( 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', + 'bundle' => 'paragraphs_test', 'deleted' => '0', 'entity_id' => '8', - 'revision_id' => '8', + 'revision_id' => '11', 'language' => 'und', 'delta' => '0', 'field_field_collection_test_value' => '1', - 'field_field_collection_test_revision_id' => '1', + 'field_field_collection_test_revision_id' => '8', )) ->values(array( 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', + 'bundle' => 'paragraphs_test', 'deleted' => '0', 'entity_id' => '9', 'revision_id' => '9', 'language' => 'und', 'delta' => '0', - 'field_field_collection_test_value' => '2', - 'field_field_collection_test_revision_id' => '2', + 'field_field_collection_test_value' => '4', + 'field_field_collection_test_revision_id' => '4', )) ->values(array( 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', + 'bundle' => 'paragraphs_test', 'deleted' => '0', 'entity_id' => '10', 'revision_id' => '10', 'language' => 'und', 'delta' => '0', - 'field_field_collection_test_value' => '3', - 'field_field_collection_test_revision_id' => '3', + 'field_field_collection_test_value' => '5', + 'field_field_collection_test_revision_id' => '5', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', + 'deleted' => '0', + 'entity_id' => '8', + 'revision_id' => '11', + 'language' => 'und', + 'delta' => '1', + 'field_field_collection_test_value' => '2', + 'field_field_collection_test_revision_id' => '9', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', + 'deleted' => '0', + 'entity_id' => '10', + 'revision_id' => '10', + 'language' => 'und', + 'delta' => '1', + 'field_field_collection_test_value' => '6', + 'field_field_collection_test_revision_id' => '6', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', + 'deleted' => '0', + 'entity_id' => '10', + 'revision_id' => '10', + 'language' => 'und', + 'delta' => '2', + 'field_field_collection_test_value' => '7', + 'field_field_collection_test_revision_id' => '7', )) ->execute(); @@ -7013,6 +5904,16 @@ $connection->insert('field_data_field_integer_list') 'delta', 'field_integer_list_value', )) +->values(array( + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', + 'deleted' => '0', + 'entity_id' => '1', + 'revision_id' => '8', + 'language' => 'und', + 'delta' => '0', + 'field_integer_list_value' => '1', +)) ->values(array( 'entity_type' => 'node', 'bundle' => 'test_content_type', @@ -7023,130 +5924,180 @@ $connection->insert('field_data_field_integer_list') 'delta' => '0', 'field_integer_list_value' => '7', )) -->execute(); - -$connection->schema()->createTable('field_data_field_link', array( - 'fields' => array( - 'entity_type' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '128', - 'default' => '', - ), - 'bundle' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '128', - 'default' => '', - ), - 'deleted' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'entity_id' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'unsigned' => TRUE, - ), - 'revision_id' => array( - 'type' => 'int', - 'not null' => FALSE, - 'size' => 'normal', - 'unsigned' => TRUE, - ), - 'language' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '32', - 'default' => '', - ), - 'delta' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'unsigned' => TRUE, - ), - 'field_link_url' => array( - 'type' => 'varchar', - 'not null' => FALSE, - 'length' => '2048', - ), - 'field_link_title' => array( - 'type' => 'varchar', - 'not null' => FALSE, - 'length' => '255', - ), - 'field_link_attributes' => array( - 'type' => 'text', - 'not null' => FALSE, - 'size' => 'normal', - ), - ), - 'primary key' => array( - 'entity_type', - 'deleted', - 'entity_id', - 'language', - 'delta', - ), - 'mysql_character_set' => 'utf8', -)); - -$connection->insert('field_data_field_link') -->fields(array( - 'entity_type', - 'bundle', - 'deleted', - 'entity_id', - 'revision_id', - 'language', - 'delta', - 'field_link_url', - 'field_link_title', - 'field_link_attributes', +->values(array( + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', + 'deleted' => '0', + 'entity_id' => '3', + 'revision_id' => '3', + 'language' => 'und', + 'delta' => '0', + 'field_integer_list_value' => '1', )) ->values(array( - 'entity_type' => 'node', - 'bundle' => 'test_content_type', + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', 'deleted' => '0', - 'entity_id' => '1', - 'revision_id' => '1', + 'entity_id' => '4', + 'revision_id' => '4', 'language' => 'und', 'delta' => '0', - 'field_link_url' => 'http://google.com', - 'field_link_title' => 'Click Here', - 'field_link_attributes' => 'a:1:{s:5:"title";s:10:"Click Here";}', + 'field_integer_list_value' => '2', )) ->values(array( - 'entity_type' => 'node', - 'bundle' => 'article', + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', 'deleted' => '0', - 'entity_id' => '2', - 'revision_id' => '2', + 'entity_id' => '5', + 'revision_id' => '5', 'language' => 'und', 'delta' => '0', - 'field_link_url' => '', - 'field_link_title' => 'Home', - 'field_link_attributes' => 'a:0:{}', + 'field_integer_list_value' => '1', )) ->values(array( - 'entity_type' => 'node', - 'bundle' => 'article', + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', 'deleted' => '0', - 'entity_id' => '3', - 'revision_id' => '3', + 'entity_id' => '6', + 'revision_id' => '6', 'language' => 'und', 'delta' => '0', - 'field_link_url' => '', - 'field_link_title' => 'Home', - 'field_link_attributes' => 'a:1:{s:5:"title";s:0:"";}', + 'field_integer_list_value' => '2', +)) +->values(array( + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', + 'deleted' => '0', + 'entity_id' => '7', + 'revision_id' => '7', + 'language' => 'und', + 'delta' => '0', + 'field_integer_list_value' => '3', )) ->execute(); -$connection->schema()->createTable('field_data_field_long_text', array( +$connection->schema()->createTable('field_data_field_link', array( + 'fields' => array( + 'entity_type' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '128', + 'default' => '', + ), + 'bundle' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '128', + 'default' => '', + ), + 'deleted' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'entity_id' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'unsigned' => TRUE, + ), + 'revision_id' => array( + 'type' => 'int', + 'not null' => FALSE, + 'size' => 'normal', + 'unsigned' => TRUE, + ), + 'language' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '32', + 'default' => '', + ), + 'delta' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'unsigned' => TRUE, + ), + 'field_link_url' => array( + 'type' => 'varchar', + 'not null' => FALSE, + 'length' => '2048', + ), + 'field_link_title' => array( + 'type' => 'varchar', + 'not null' => FALSE, + 'length' => '255', + ), + 'field_link_attributes' => array( + 'type' => 'text', + 'not null' => FALSE, + 'size' => 'normal', + ), + ), + 'primary key' => array( + 'entity_type', + 'deleted', + 'entity_id', + 'language', + 'delta', + ), + 'mysql_character_set' => 'utf8', +)); + +$connection->insert('field_data_field_link') +->fields(array( + 'entity_type', + 'bundle', + 'deleted', + 'entity_id', + 'revision_id', + 'language', + 'delta', + 'field_link_url', + 'field_link_title', + 'field_link_attributes', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'test_content_type', + 'deleted' => '0', + 'entity_id' => '1', + 'revision_id' => '1', + 'language' => 'und', + 'delta' => '0', + 'field_link_url' => 'http://google.com', + 'field_link_title' => 'Click Here', + 'field_link_attributes' => 'a:1:{s:5:"title";s:10:"Click Here";}', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'article', + 'deleted' => '0', + 'entity_id' => '2', + 'revision_id' => '2', + 'language' => 'und', + 'delta' => '0', + 'field_link_url' => '', + 'field_link_title' => 'Home', + 'field_link_attributes' => 'a:0:{}', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'article', + 'deleted' => '0', + 'entity_id' => '3', + 'revision_id' => '3', + 'language' => 'und', + 'delta' => '0', + 'field_link_url' => '', + 'field_link_title' => 'Home', + 'field_link_attributes' => 'a:1:{s:5:"title";s:0:"";}', +)) +->execute(); + +$connection->schema()->createTable('field_data_field_long_text', array( 'fields' => array( 'entity_type' => array( 'type' => 'varchar', @@ -7323,7 +6274,7 @@ $connection->insert('field_data_field_node_entityreference') )) ->execute(); -$connection->schema()->createTable('field_data_field_paragraph_test', array( +$connection->schema()->createTable('field_data_field_paragraph_one_only', array( 'fields' => array( 'entity_type' => array( 'type' => 'varchar', @@ -7367,12 +6318,12 @@ $connection->schema()->createTable('field_data_field_paragraph_test', array( 'size' => 'normal', 'unsigned' => TRUE, ), - 'field_paragraph_test_value' => array( + 'field_paragraph_one_only_value' => array( 'type' => 'int', 'not null' => FALSE, 'size' => 'normal', ), - 'field_paragraph_test_revision_id' => array( + 'field_paragraph_one_only_revision_id' => array( 'type' => 'int', 'not null' => FALSE, 'size' => 'normal', @@ -7408,7 +6359,7 @@ $connection->schema()->createTable('field_data_field_paragraph_test', array( 'mysql_character_set' => 'utf8', )); -$connection->insert('field_data_field_paragraph_test') +$connection->insert('field_data_field_paragraph_one_only') ->fields(array( 'entity_type', 'bundle', @@ -7417,63 +6368,41 @@ $connection->insert('field_data_field_paragraph_test') 'revision_id', 'language', 'delta', - 'field_paragraph_test_value', - 'field_paragraph_test_revision_id', + 'field_paragraph_one_only_value', + 'field_paragraph_one_only_revision_id', )) ->values(array( 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', + 'bundle' => 'paragraphs_test', 'deleted' => '0', 'entity_id' => '8', - 'revision_id' => '8', + 'revision_id' => '11', 'language' => 'und', 'delta' => '0', - 'field_paragraph_test_value' => '1', - 'field_paragraph_test_revision_id' => '1', + 'field_paragraph_one_only_value' => '13', + 'field_paragraph_one_only_revision_id' => '19', )) ->values(array( 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', + 'bundle' => 'paragraphs_test', 'deleted' => '0', 'entity_id' => '9', 'revision_id' => '9', 'language' => 'und', 'delta' => '0', - 'field_paragraph_test_value' => '3', - 'field_paragraph_test_revision_id' => '3', + 'field_paragraph_one_only_value' => '15', + 'field_paragraph_one_only_revision_id' => '15', )) ->values(array( 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', + 'bundle' => 'paragraphs_test', 'deleted' => '0', 'entity_id' => '10', 'revision_id' => '10', 'language' => 'und', 'delta' => '0', - 'field_paragraph_test_value' => '4', - 'field_paragraph_test_revision_id' => '4', -)) -->values(array( - 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', - 'deleted' => '0', - 'entity_id' => '8', - 'revision_id' => '8', - 'language' => 'und', - 'delta' => '1', - 'field_paragraph_test_value' => '2', - 'field_paragraph_test_revision_id' => '2', -)) -->values(array( - 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', - 'deleted' => '0', - 'entity_id' => '10', - 'revision_id' => '10', - 'language' => 'und', - 'delta' => '1', - 'field_paragraph_test_value' => '5', - 'field_paragraph_test_revision_id' => '5', + 'field_paragraph_one_only_value' => '16', + 'field_paragraph_one_only_revision_id' => '16', )) ->execute(); @@ -8110,10 +7039,10 @@ $connection->insert('field_data_field_text') 'bundle' => 'field_field_collection_test', 'deleted' => '0', 'entity_id' => '1', - 'revision_id' => '1', + 'revision_id' => '8', 'language' => 'und', 'delta' => '0', - 'field_text_value' => 'Field Collection Text Data', + 'field_text_value' => 'Field Collection Text Data One UND', 'field_text_format' => NULL, )) ->values(array( @@ -8127,81 +7056,180 @@ $connection->insert('field_data_field_text') 'field_text_value' => 'qwerty', 'field_text_format' => NULL, )) +->values(array( + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', + 'deleted' => '0', + 'entity_id' => '2', + 'revision_id' => '9', + 'language' => 'und', + 'delta' => '0', + 'field_text_value' => 'Field Collection Text Data Two UND', + 'field_text_format' => NULL, +)) ->values(array( 'entity_type' => 'paragraphs_item', - 'bundle' => 'paragraph_bundle_test', + 'bundle' => 'paragraph_bundle_two', 'deleted' => '0', - 'entity_id' => '1', - 'revision_id' => '1', + 'entity_id' => '2', + 'revision_id' => '18', 'language' => 'und', 'delta' => '0', - 'field_text_value' => 'Paragraph Text one', + 'field_text_value' => 'Paragraph Field One Bundle Two UND', 'field_text_format' => NULL, )) ->values(array( 'entity_type' => 'field_collection_item', 'bundle' => 'field_field_collection_test', 'deleted' => '0', - 'entity_id' => '2', - 'revision_id' => '2', + 'entity_id' => '3', + 'revision_id' => '3', + 'language' => 'und', + 'delta' => '0', + 'field_text_value' => 'Field Collection Text Data One EN', + 'field_text_format' => NULL, +)) +->values(array( + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', + 'deleted' => '0', + 'entity_id' => '4', + 'revision_id' => '4', + 'language' => 'und', + 'delta' => '0', + 'field_text_value' => 'Field Collection Text Data Two EN', + 'field_text_format' => NULL, +)) +->values(array( + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', + 'deleted' => '0', + 'entity_id' => '5', + 'revision_id' => '5', 'language' => 'und', 'delta' => '0', - 'field_text_value' => 'Field Collection Text Data English', + 'field_text_value' => 'Field Collection Text Data One IS', 'field_text_format' => NULL, )) ->values(array( 'entity_type' => 'paragraphs_item', - 'bundle' => 'paragraph_bundle_test', + 'bundle' => 'paragraph_bundle_two', 'deleted' => '0', - 'entity_id' => '2', - 'revision_id' => '2', + 'entity_id' => '5', + 'revision_id' => '5', 'language' => 'und', 'delta' => '0', - 'field_text_value' => 'Paragraph Text two', + 'field_text_value' => 'Paragraph Field One Bundle Two EN', 'field_text_format' => NULL, )) ->values(array( 'entity_type' => 'field_collection_item', 'bundle' => 'field_field_collection_test', 'deleted' => '0', - 'entity_id' => '3', - 'revision_id' => '3', + 'entity_id' => '6', + 'revision_id' => '6', 'language' => 'und', 'delta' => '0', - 'field_text_value' => 'Field Collection Text Data Icelandic', + 'field_text_value' => 'Field Collection Text Data Two IS', + 'field_text_format' => NULL, +)) +->values(array( + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', + 'deleted' => '0', + 'entity_id' => '7', + 'revision_id' => '7', + 'language' => 'und', + 'delta' => '0', + 'field_text_value' => 'Field Collection Text Data Three IS', 'field_text_format' => NULL, )) ->values(array( 'entity_type' => 'paragraphs_item', - 'bundle' => 'paragraph_bundle_test', + 'bundle' => 'paragraph_bundle_two', 'deleted' => '0', - 'entity_id' => '3', - 'revision_id' => '3', + 'entity_id' => '8', + 'revision_id' => '8', 'language' => 'und', 'delta' => '0', - 'field_text_value' => 'Paragraph Text English', + 'field_text_value' => 'Paragraph Field One Bundle Two IS', 'field_text_format' => NULL, )) ->values(array( 'entity_type' => 'paragraphs_item', - 'bundle' => 'paragraph_bundle_test', + 'bundle' => 'paragraph_bundle_two', 'deleted' => '0', - 'entity_id' => '4', - 'revision_id' => '4', + 'entity_id' => '10', + 'revision_id' => '10', 'language' => 'und', 'delta' => '0', - 'field_text_value' => 'Paragraph Text Icelandic 1', + 'field_text_value' => 'Paragraph Field One Bundle Two Delta 3 IS', 'field_text_format' => NULL, )) ->values(array( 'entity_type' => 'paragraphs_item', - 'bundle' => 'paragraph_bundle_test', + 'bundle' => 'paragraph_bundle_one', 'deleted' => '0', - 'entity_id' => '5', - 'revision_id' => '5', + 'entity_id' => '11', + 'revision_id' => '11', 'language' => 'und', 'delta' => '0', - 'field_text_value' => 'Paragraph Text Icelandic 2', + 'field_text_value' => 'Paragraph Field One Bundle One IS', + 'field_text_format' => NULL, +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '12', + 'revision_id' => '17', + 'language' => 'und', + 'delta' => '0', + 'field_text_value' => 'Paragraph Field One Bundle One UND', + 'field_text_format' => NULL, +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '13', + 'revision_id' => '19', + 'language' => 'und', + 'delta' => '0', + 'field_text_value' => 'Paragraph Field Two Bundle One Revision Two UND', + 'field_text_format' => NULL, +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '14', + 'revision_id' => '14', + 'language' => 'und', + 'delta' => '0', + 'field_text_value' => 'Paragraph Field One Bundle One EN', + 'field_text_format' => NULL, +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '15', + 'revision_id' => '15', + 'language' => 'und', + 'delta' => '0', + 'field_text_value' => 'Paragraph Field Two Bundle One EN', + 'field_text_format' => NULL, +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '16', + 'revision_id' => '16', + 'language' => 'und', + 'delta' => '0', + 'field_text_value' => 'Paragraph Field Two Bundle One IS', 'field_text_format' => NULL, )) ->execute(); @@ -8378,6 +7406,66 @@ $connection->insert('field_data_field_text_list') 'delta' => '0', 'field_text_list_value' => 'Some more text', )) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '11', + 'revision_id' => '11', + 'language' => 'und', + 'delta' => '0', + 'field_text_list_value' => 'Some Text', +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '12', + 'revision_id' => '17', + 'language' => 'und', + 'delta' => '0', + 'field_text_list_value' => 'Some Text', +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '13', + 'revision_id' => '19', + 'language' => 'und', + 'delta' => '0', + 'field_text_list_value' => 'Some more text', +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '14', + 'revision_id' => '14', + 'language' => 'und', + 'delta' => '0', + 'field_text_list_value' => 'Some Text', +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '15', + 'revision_id' => '15', + 'language' => 'und', + 'delta' => '0', + 'field_text_list_value' => 'Some Text', +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '16', + 'revision_id' => '16', + 'language' => 'und', + 'delta' => '0', + 'field_text_list_value' => 'Some more text', +)) ->execute(); $connection->schema()->createTable('field_data_field_text_long_filtered', array( @@ -8735,59 +7823,15 @@ $connection->schema()->createTable('field_data_field_text_plain', array( 'language', ), 'field_text_plain_format' => array( - 'field_text_plain_format', + array( + 'field_text_plain_format', + '191', + ), ), ), 'mysql_character_set' => 'utf8', )); -$connection->insert('field_data_field_text_plain') -->fields(array( - 'entity_type', - 'bundle', - 'deleted', - 'entity_id', - 'revision_id', - 'language', - 'delta', - 'field_text_plain_value', - 'field_text_plain_format', -)) -->values(array( - 'entity_type' => 'field_collection_item', - 'bundle' => 'field_field_collection_test', - 'deleted' => '0', - 'entity_id' => '1', - 'revision_id' => '1', - 'language' => 'und', - 'delta' => '0', - 'field_text_plain_value' => 'Field Collection Text Plain Data', - 'field_text_plain_format' => NULL, -)) -->values(array( - 'entity_type' => 'field_collection_item', - 'bundle' => 'field_field_collection_test', - 'deleted' => '0', - 'entity_id' => '2', - 'revision_id' => '2', - 'language' => 'und', - 'delta' => '0', - 'field_text_plain_value' => 'Field Collection Text Plain Data', - 'field_text_plain_format' => NULL, -)) -->values(array( - 'entity_type' => 'field_collection_item', - 'bundle' => 'field_field_collection_test', - 'deleted' => '0', - 'entity_id' => '3', - 'revision_id' => '3', - 'language' => 'und', - 'delta' => '0', - 'field_text_plain_value' => 'Field Collection Text Plain Data Icelandic', - 'field_text_plain_format' => NULL, -)) -->execute(); - $connection->schema()->createTable('field_data_field_text_plain_filtered', array( 'fields' => array( 'entity_type' => array( @@ -9502,37 +8546,49 @@ $connection->insert('field_revision_body') )) ->values(array( 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', + 'bundle' => 'paragraphs_test', 'deleted' => '0', 'entity_id' => '8', 'revision_id' => '8', 'language' => 'und', 'delta' => '0', - 'body_value' => 'Paragraphs Migration Test Body', + 'body_value' => 'Aliquam nec adipiscing tincidunt turpis habitasse scelerisque eros montes, diam? Tincidunt magna rhoncus urna pulvinar! In mauris urna nunc a, pellentesque hac eros mid, a etiam nunc, vel tempor nascetur sit elit cras ridiculus ridiculus, proin rhoncus cras mattis tempor turpis, odio adipiscing ac cum ac placerat magna. Mauris magnis rhoncus urna placerat ut elementum risus a eu augue arcu, urna dictumst, porta, sociis mattis, sed hac aliquam placerat augue hac turpis. Risus tortor risus natoque amet pid habitasse in.', + 'body_summary' => '', + 'body_format' => 'filtered_html', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', + 'deleted' => '0', + 'entity_id' => '8', + 'revision_id' => '11', + 'language' => 'und', + 'delta' => '0', + 'body_value' => 'Aliquam nec adipiscing tincidunt turpis habitasse scelerisque eros montes, diam? Tincidunt magna rhoncus urna pulvinar! In mauris urna nunc a, pellentesque hac eros mid, a etiam nunc, vel tempor nascetur sit elit cras ridiculus ridiculus, proin rhoncus cras mattis tempor turpis, odio adipiscing ac cum ac placerat magna. Mauris magnis rhoncus urna placerat ut elementum risus a eu augue arcu, urna dictumst, porta, sociis mattis, sed hac aliquam placerat augue hac turpis. Risus tortor risus natoque amet pid habitasse in.', 'body_summary' => '', 'body_format' => 'filtered_html', )) ->values(array( 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', + 'bundle' => 'paragraphs_test', 'deleted' => '0', 'entity_id' => '9', 'revision_id' => '9', 'language' => 'und', 'delta' => '0', - 'body_value' => 'Paragraphs Migration Test Translatable English Body', + 'body_value' => 'Aliquam nec adipiscing tincidunt turpis habitasse scelerisque eros montes, diam? Tincidunt magna rhoncus urna pulvinar! In mauris urna nunc a, pellentesque hac eros mid, a etiam nunc, vel tempor nascetur sit elit cras ridiculus ridiculus, proin rhoncus cras mattis tempor turpis, odio adipiscing ac cum ac placerat magna. Mauris magnis rhoncus urna placerat ut elementum risus a eu augue arcu, urna dictumst, porta, sociis mattis, sed hac aliquam placerat augue hac turpis. Risus tortor risus natoque amet pid habitasse in.', 'body_summary' => '', 'body_format' => 'filtered_html', )) ->values(array( 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', + 'bundle' => 'paragraphs_test', 'deleted' => '0', 'entity_id' => '10', 'revision_id' => '10', 'language' => 'und', 'delta' => '0', - 'body_value' => 'Paragraphs Migration Test Translatable Icelandic Body', + 'body_value' => 'Aliquam nec adipiscing tincidunt turpis habitasse scelerisque eros montes, diam? Tincidunt magna rhoncus urna pulvinar! In mauris urna nunc a, pellentesque hac eros mid, a etiam nunc, vel tempor nascetur sit elit cras ridiculus ridiculus, proin rhoncus cras mattis tempor turpis, odio adipiscing ac cum ac placerat magna. Mauris magnis rhoncus urna placerat ut elementum risus a eu augue arcu, urna dictumst, porta, sociis mattis, sed hac aliquam placerat augue hac turpis. Risus tortor risus natoque amet pid habitasse in.', 'body_summary' => '', 'body_format' => 'filtered_html', )) @@ -9629,7 +8685,7 @@ $connection->insert('field_revision_comment_body') )) ->execute(); -$connection->schema()->createTable('field_revision_field_boolean', array( +$connection->schema()->createTable('field_revision_field_any_paragraph', array( 'fields' => array( 'entity_type' => array( 'type' => 'varchar', @@ -9646,7 +8702,7 @@ $connection->schema()->createTable('field_revision_field_boolean', array( 'deleted' => array( 'type' => 'int', 'not null' => TRUE, - 'size' => 'normal', + 'size' => 'tiny', 'default' => '0', ), 'entity_id' => array( @@ -9673,7 +8729,12 @@ $connection->schema()->createTable('field_revision_field_boolean', array( 'size' => 'normal', 'unsigned' => TRUE, ), - 'field_boolean_value' => array( + 'field_any_paragraph_value' => array( + 'type' => 'int', + 'not null' => FALSE, + 'size' => 'normal', + ), + 'field_any_paragraph_revision_id' => array( 'type' => 'int', 'not null' => FALSE, 'size' => 'normal', @@ -9681,100 +8742,36 @@ $connection->schema()->createTable('field_revision_field_boolean', array( ), 'primary key' => array( 'entity_type', - 'deleted', 'entity_id', 'revision_id', - 'language', + 'deleted', 'delta', + 'language', ), - 'mysql_character_set' => 'utf8', -)); - -$connection->insert('field_revision_field_boolean') -->fields(array( - 'entity_type', - 'bundle', - 'deleted', - 'entity_id', - 'revision_id', - 'language', - 'delta', - 'field_boolean_value', -)) -->values(array( - 'entity_type' => 'node', - 'bundle' => 'test_content_type', - 'deleted' => '0', - 'entity_id' => '1', - 'revision_id' => '1', - 'language' => 'und', - 'delta' => '0', - 'field_boolean_value' => '1', -)) -->execute(); - -$connection->schema()->createTable('field_revision_field_date', array( - 'fields' => array( + 'indexes' => array( 'entity_type' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '128', - 'default' => '', + 'entity_type', ), 'bundle' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '128', - 'default' => '', + 'bundle', ), 'deleted' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', + 'deleted', ), 'entity_id' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'unsigned' => TRUE, + 'entity_id', ), 'revision_id' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'unsigned' => TRUE, + 'revision_id', ), 'language' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '32', - 'default' => '', - ), - 'delta' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'unsigned' => TRUE, - ), - 'field_date_value' => array( - 'type' => 'varchar', - 'not null' => FALSE, - 'length' => '100', + 'language', ), ), - 'primary key' => array( - 'entity_type', - 'deleted', - 'entity_id', - 'revision_id', - 'language', - 'delta', - ), 'mysql_character_set' => 'utf8', )); -$connection->insert('field_revision_field_date') +$connection->insert('field_revision_field_any_paragraph') ->fields(array( 'entity_type', 'bundle', @@ -9783,21 +8780,111 @@ $connection->insert('field_revision_field_date') 'revision_id', 'language', 'delta', - 'field_date_value', + 'field_any_paragraph_value', + 'field_any_paragraph_revision_id', )) ->values(array( 'entity_type' => 'node', - 'bundle' => 'test_content_type', + 'bundle' => 'paragraphs_test', 'deleted' => '0', - 'entity_id' => '1', - 'revision_id' => '1', + 'entity_id' => '8', + 'revision_id' => '8', 'language' => 'und', 'delta' => '0', - 'field_date_value' => '2015-01-20 04:15:00', + 'field_any_paragraph_value' => '12', + 'field_any_paragraph_revision_id' => '12', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', + 'deleted' => '0', + 'entity_id' => '8', + 'revision_id' => '11', + 'language' => 'und', + 'delta' => '0', + 'field_any_paragraph_value' => '12', + 'field_any_paragraph_revision_id' => '17', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', + 'deleted' => '0', + 'entity_id' => '9', + 'revision_id' => '9', + 'language' => 'und', + 'delta' => '0', + 'field_any_paragraph_value' => '14', + 'field_any_paragraph_revision_id' => '14', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', + 'deleted' => '0', + 'entity_id' => '10', + 'revision_id' => '10', + 'language' => 'und', + 'delta' => '0', + 'field_any_paragraph_value' => '11', + 'field_any_paragraph_revision_id' => '11', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', + 'deleted' => '0', + 'entity_id' => '8', + 'revision_id' => '8', + 'language' => 'und', + 'delta' => '1', + 'field_any_paragraph_value' => '2', + 'field_any_paragraph_revision_id' => '2', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', + 'deleted' => '0', + 'entity_id' => '8', + 'revision_id' => '11', + 'language' => 'und', + 'delta' => '1', + 'field_any_paragraph_value' => '2', + 'field_any_paragraph_revision_id' => '18', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', + 'deleted' => '0', + 'entity_id' => '9', + 'revision_id' => '9', + 'language' => 'und', + 'delta' => '1', + 'field_any_paragraph_value' => '5', + 'field_any_paragraph_revision_id' => '5', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', + 'deleted' => '0', + 'entity_id' => '10', + 'revision_id' => '10', + 'language' => 'und', + 'delta' => '1', + 'field_any_paragraph_value' => '8', + 'field_any_paragraph_revision_id' => '8', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', + 'deleted' => '0', + 'entity_id' => '10', + 'revision_id' => '10', + 'language' => 'und', + 'delta' => '2', + 'field_any_paragraph_value' => '10', + 'field_any_paragraph_revision_id' => '10', )) ->execute(); -$connection->schema()->createTable('field_revision_field_date_with_end_time', array( +$connection->schema()->createTable('field_revision_field_boolean', array( 'fields' => array( 'entity_type' => array( 'type' => 'varchar', @@ -9841,12 +8928,7 @@ $connection->schema()->createTable('field_revision_field_date_with_end_time', ar 'size' => 'normal', 'unsigned' => TRUE, ), - 'field_date_with_end_time_value' => array( - 'type' => 'int', - 'not null' => FALSE, - 'size' => 'normal', - ), - 'field_date_with_end_time_value2' => array( + 'field_boolean_value' => array( 'type' => 'int', 'not null' => FALSE, 'size' => 'normal', @@ -9863,7 +8945,7 @@ $connection->schema()->createTable('field_revision_field_date_with_end_time', ar 'mysql_character_set' => 'utf8', )); -$connection->insert('field_revision_field_date_with_end_time') +$connection->insert('field_revision_field_boolean') ->fields(array( 'entity_type', 'bundle', @@ -9872,8 +8954,7 @@ $connection->insert('field_revision_field_date_with_end_time') 'revision_id', 'language', 'delta', - 'field_date_with_end_time_value', - 'field_date_with_end_time_value2', + 'field_boolean_value', )) ->values(array( 'entity_type' => 'node', @@ -9883,12 +8964,11 @@ $connection->insert('field_revision_field_date_with_end_time') 'revision_id' => '1', 'language' => 'und', 'delta' => '0', - 'field_date_with_end_time_value' => '1421727300', - 'field_date_with_end_time_value2' => '1421727300', + 'field_boolean_value' => '1', )) ->execute(); -$connection->schema()->createTable('field_revision_field_date_without_time', array( +$connection->schema()->createTable('field_revision_field_date', array( 'fields' => array( 'entity_type' => array( 'type' => 'varchar', @@ -9932,7 +9012,7 @@ $connection->schema()->createTable('field_revision_field_date_without_time', arr 'size' => 'normal', 'unsigned' => TRUE, ), - 'field_date_without_time_value' => array( + 'field_date_value' => array( 'type' => 'varchar', 'not null' => FALSE, 'length' => '100', @@ -9949,7 +9029,7 @@ $connection->schema()->createTable('field_revision_field_date_without_time', arr 'mysql_character_set' => 'utf8', )); -$connection->insert('field_revision_field_date_without_time') +$connection->insert('field_revision_field_date') ->fields(array( 'entity_type', 'bundle', @@ -9958,7 +9038,7 @@ $connection->insert('field_revision_field_date_without_time') 'revision_id', 'language', 'delta', - 'field_date_without_time_value', + 'field_date_value', )) ->values(array( 'entity_type' => 'node', @@ -9968,11 +9048,11 @@ $connection->insert('field_revision_field_date_without_time') 'revision_id' => '1', 'language' => 'und', 'delta' => '0', - 'field_date_without_time_value' => '2015-01-20T00:00:00', + 'field_date_value' => '2015-01-20 04:15:00', )) ->execute(); -$connection->schema()->createTable('field_revision_field_datetime_without_time', array( +$connection->schema()->createTable('field_revision_field_date_with_end_time', array( 'fields' => array( 'entity_type' => array( 'type' => 'varchar', @@ -10016,10 +9096,15 @@ $connection->schema()->createTable('field_revision_field_datetime_without_time', 'size' => 'normal', 'unsigned' => TRUE, ), - 'field_datetime_without_time_value' => array( - 'type' => 'varchar', + 'field_date_with_end_time_value' => array( + 'type' => 'int', 'not null' => FALSE, - 'length' => '100', + 'size' => 'normal', + ), + 'field_date_with_end_time_value2' => array( + 'type' => 'int', + 'not null' => FALSE, + 'size' => 'normal', ), ), 'primary key' => array( @@ -10033,7 +9118,7 @@ $connection->schema()->createTable('field_revision_field_datetime_without_time', 'mysql_character_set' => 'utf8', )); -$connection->insert('field_revision_field_datetime_without_time') +$connection->insert('field_revision_field_date_with_end_time') ->fields(array( 'entity_type', 'bundle', @@ -10042,7 +9127,8 @@ $connection->insert('field_revision_field_datetime_without_time') 'revision_id', 'language', 'delta', - 'field_datetime_without_time_value', + 'field_date_with_end_time_value', + 'field_date_with_end_time_value2', )) ->values(array( 'entity_type' => 'node', @@ -10052,11 +9138,180 @@ $connection->insert('field_revision_field_datetime_without_time') 'revision_id' => '1', 'language' => 'und', 'delta' => '0', - 'field_datetime_without_time_value' => '2015-01-20 00:00:00', + 'field_date_with_end_time_value' => '1421727300', + 'field_date_with_end_time_value2' => '1421727300', )) ->execute(); -$connection->schema()->createTable('field_revision_field_email', array( +$connection->schema()->createTable('field_revision_field_date_without_time', array( + 'fields' => array( + 'entity_type' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '128', + 'default' => '', + ), + 'bundle' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '128', + 'default' => '', + ), + 'deleted' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'entity_id' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'unsigned' => TRUE, + ), + 'revision_id' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'unsigned' => TRUE, + ), + 'language' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '32', + 'default' => '', + ), + 'delta' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'unsigned' => TRUE, + ), + 'field_date_without_time_value' => array( + 'type' => 'varchar', + 'not null' => FALSE, + 'length' => '100', + ), + ), + 'primary key' => array( + 'entity_type', + 'deleted', + 'entity_id', + 'revision_id', + 'language', + 'delta', + ), + 'mysql_character_set' => 'utf8', +)); + +$connection->insert('field_revision_field_date_without_time') +->fields(array( + 'entity_type', + 'bundle', + 'deleted', + 'entity_id', + 'revision_id', + 'language', + 'delta', + 'field_date_without_time_value', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'test_content_type', + 'deleted' => '0', + 'entity_id' => '1', + 'revision_id' => '1', + 'language' => 'und', + 'delta' => '0', + 'field_date_without_time_value' => '2015-01-20T00:00:00', +)) +->execute(); + +$connection->schema()->createTable('field_revision_field_datetime_without_time', array( + 'fields' => array( + 'entity_type' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '128', + 'default' => '', + ), + 'bundle' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '128', + 'default' => '', + ), + 'deleted' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'entity_id' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'unsigned' => TRUE, + ), + 'revision_id' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'unsigned' => TRUE, + ), + 'language' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '32', + 'default' => '', + ), + 'delta' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'unsigned' => TRUE, + ), + 'field_datetime_without_time_value' => array( + 'type' => 'varchar', + 'not null' => FALSE, + 'length' => '100', + ), + ), + 'primary key' => array( + 'entity_type', + 'deleted', + 'entity_id', + 'revision_id', + 'language', + 'delta', + ), + 'mysql_character_set' => 'utf8', +)); + +$connection->insert('field_revision_field_datetime_without_time') +->fields(array( + 'entity_type', + 'bundle', + 'deleted', + 'entity_id', + 'revision_id', + 'language', + 'delta', + 'field_datetime_without_time_value', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'test_content_type', + 'deleted' => '0', + 'entity_id' => '1', + 'revision_id' => '1', + 'language' => 'und', + 'delta' => '0', + 'field_datetime_without_time_value' => '2015-01-20 00:00:00', +)) +->execute(); + +$connection->schema()->createTable('field_revision_field_email', array( 'fields' => array( 'entity_type' => array( 'type' => 'varchar', @@ -10140,53 +9395,53 @@ $connection->insert('field_revision_field_email') )) ->values(array( 'entity_type' => 'paragraphs_item', - 'bundle' => 'paragraph_bundle_test', + 'bundle' => 'paragraph_bundle_two', 'deleted' => '0', - 'entity_id' => '1', - 'revision_id' => '1', + 'entity_id' => '2', + 'revision_id' => '2', 'language' => 'und', 'delta' => '0', 'field_email_email' => 'joe@joe.com', )) ->values(array( 'entity_type' => 'paragraphs_item', - 'bundle' => 'paragraph_bundle_test', + 'bundle' => 'paragraph_bundle_two', 'deleted' => '0', 'entity_id' => '2', - 'revision_id' => '2', + 'revision_id' => '18', 'language' => 'und', 'delta' => '0', - 'field_email_email' => 'John@john.com', + 'field_email_email' => 'joe@joe.com', )) ->values(array( 'entity_type' => 'paragraphs_item', - 'bundle' => 'paragraph_bundle_test', + 'bundle' => 'paragraph_bundle_two', 'deleted' => '0', - 'entity_id' => '3', - 'revision_id' => '3', + 'entity_id' => '5', + 'revision_id' => '5', 'language' => 'und', 'delta' => '0', - 'field_email_email' => 'joe@joe.com', + 'field_email_email' => 'jose@jose.com', )) ->values(array( 'entity_type' => 'paragraphs_item', - 'bundle' => 'paragraph_bundle_test', + 'bundle' => 'paragraph_bundle_two', 'deleted' => '0', - 'entity_id' => '4', - 'revision_id' => '4', + 'entity_id' => '8', + 'revision_id' => '8', 'language' => 'und', 'delta' => '0', - 'field_email_email' => 'Joe@jo.is', + 'field_email_email' => 'jose@jose.com', )) ->values(array( 'entity_type' => 'paragraphs_item', - 'bundle' => 'paragraph_bundle_test', + 'bundle' => 'paragraph_bundle_two', 'deleted' => '0', - 'entity_id' => '5', - 'revision_id' => '5', + 'entity_id' => '10', + 'revision_id' => '10', 'language' => 'und', 'delta' => '0', - 'field_email_email' => 'jeff@jeff.is', + 'field_email_email' => 'john@john.com', )) ->values(array( 'entity_type' => 'node', @@ -10198,16 +9453,6 @@ $connection->insert('field_revision_field_email') 'delta' => '1', 'field_email_email' => 'another@example.com', )) -->values(array( - 'entity_type' => 'paragraphs_item', - 'bundle' => 'paragraph_bundle_test', - 'deleted' => '0', - 'entity_id' => '1', - 'revision_id' => '1', - 'language' => 'und', - 'delta' => '1', - 'field_email_email' => 'jeff@jeff.com', -)) ->execute(); $connection->schema()->createTable('field_revision_field_field_collection_test', array( @@ -10316,7 +9561,7 @@ $connection->insert('field_revision_field_field_collection_test') )) ->values(array( 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', + 'bundle' => 'paragraphs_test', 'deleted' => '0', 'entity_id' => '8', 'revision_id' => '8', @@ -10327,25 +9572,80 @@ $connection->insert('field_revision_field_field_collection_test') )) ->values(array( 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', + 'bundle' => 'paragraphs_test', + 'deleted' => '0', + 'entity_id' => '8', + 'revision_id' => '11', + 'language' => 'und', + 'delta' => '0', + 'field_field_collection_test_value' => '1', + 'field_field_collection_test_revision_id' => '8', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', 'deleted' => '0', 'entity_id' => '9', 'revision_id' => '9', 'language' => 'und', 'delta' => '0', + 'field_field_collection_test_value' => '4', + 'field_field_collection_test_revision_id' => '4', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', + 'deleted' => '0', + 'entity_id' => '10', + 'revision_id' => '10', + 'language' => 'und', + 'delta' => '0', + 'field_field_collection_test_value' => '5', + 'field_field_collection_test_revision_id' => '5', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', + 'deleted' => '0', + 'entity_id' => '8', + 'revision_id' => '8', + 'language' => 'und', + 'delta' => '1', 'field_field_collection_test_value' => '2', 'field_field_collection_test_revision_id' => '2', )) ->values(array( 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', + 'bundle' => 'paragraphs_test', + 'deleted' => '0', + 'entity_id' => '8', + 'revision_id' => '11', + 'language' => 'und', + 'delta' => '1', + 'field_field_collection_test_value' => '2', + 'field_field_collection_test_revision_id' => '9', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', 'deleted' => '0', 'entity_id' => '10', 'revision_id' => '10', 'language' => 'und', - 'delta' => '0', - 'field_field_collection_test_value' => '3', - 'field_field_collection_test_revision_id' => '3', + 'delta' => '1', + 'field_field_collection_test_value' => '6', + 'field_field_collection_test_revision_id' => '6', +)) +->values(array( + 'entity_type' => 'node', + 'bundle' => 'paragraphs_test', + 'deleted' => '0', + 'entity_id' => '10', + 'revision_id' => '10', + 'language' => 'und', + 'delta' => '2', + 'field_field_collection_test_value' => '7', + 'field_field_collection_test_revision_id' => '7', )) ->execute(); @@ -10922,6 +10222,26 @@ $connection->insert('field_revision_field_integer_list') 'delta', 'field_integer_list_value', )) +->values(array( + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', + 'deleted' => '0', + 'entity_id' => '1', + 'revision_id' => '1', + 'language' => 'und', + 'delta' => '0', + 'field_integer_list_value' => '1', +)) +->values(array( + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', + 'deleted' => '0', + 'entity_id' => '1', + 'revision_id' => '8', + 'language' => 'und', + 'delta' => '0', + 'field_integer_list_value' => '1', +)) ->values(array( 'entity_type' => 'node', 'bundle' => 'test_content_type', @@ -10932,6 +10252,56 @@ $connection->insert('field_revision_field_integer_list') 'delta' => '0', 'field_integer_list_value' => '7', )) +->values(array( + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', + 'deleted' => '0', + 'entity_id' => '3', + 'revision_id' => '3', + 'language' => 'und', + 'delta' => '0', + 'field_integer_list_value' => '1', +)) +->values(array( + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', + 'deleted' => '0', + 'entity_id' => '4', + 'revision_id' => '4', + 'language' => 'und', + 'delta' => '0', + 'field_integer_list_value' => '2', +)) +->values(array( + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', + 'deleted' => '0', + 'entity_id' => '5', + 'revision_id' => '5', + 'language' => 'und', + 'delta' => '0', + 'field_integer_list_value' => '1', +)) +->values(array( + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', + 'deleted' => '0', + 'entity_id' => '6', + 'revision_id' => '6', + 'language' => 'und', + 'delta' => '0', + 'field_integer_list_value' => '2', +)) +->values(array( + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', + 'deleted' => '0', + 'entity_id' => '7', + 'revision_id' => '7', + 'language' => 'und', + 'delta' => '0', + 'field_integer_list_value' => '3', +)) ->execute(); $connection->schema()->createTable('field_revision_field_link', array( @@ -11235,7 +10605,7 @@ $connection->insert('field_revision_field_node_entityreference') )) ->execute(); -$connection->schema()->createTable('field_revision_field_paragraph_test', array( +$connection->schema()->createTable('field_revision_field_paragraph_one_only', array( 'fields' => array( 'entity_type' => array( 'type' => 'varchar', @@ -11279,12 +10649,12 @@ $connection->schema()->createTable('field_revision_field_paragraph_test', array( 'size' => 'normal', 'unsigned' => TRUE, ), - 'field_paragraph_test_value' => array( + 'field_paragraph_one_only_value' => array( 'type' => 'int', 'not null' => FALSE, 'size' => 'normal', ), - 'field_paragraph_test_revision_id' => array( + 'field_paragraph_one_only_revision_id' => array( 'type' => 'int', 'not null' => FALSE, 'size' => 'normal', @@ -11321,7 +10691,7 @@ $connection->schema()->createTable('field_revision_field_paragraph_test', array( 'mysql_character_set' => 'utf8', )); -$connection->insert('field_revision_field_paragraph_test') +$connection->insert('field_revision_field_paragraph_one_only') ->fields(array( 'entity_type', 'bundle', @@ -11330,63 +10700,52 @@ $connection->insert('field_revision_field_paragraph_test') 'revision_id', 'language', 'delta', - 'field_paragraph_test_value', - 'field_paragraph_test_revision_id', + 'field_paragraph_one_only_value', + 'field_paragraph_one_only_revision_id', )) ->values(array( 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', + 'bundle' => 'paragraphs_test', 'deleted' => '0', 'entity_id' => '8', 'revision_id' => '8', 'language' => 'und', 'delta' => '0', - 'field_paragraph_test_value' => '1', - 'field_paragraph_test_revision_id' => '1', + 'field_paragraph_one_only_value' => '13', + 'field_paragraph_one_only_revision_id' => '13', )) ->values(array( 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', + 'bundle' => 'paragraphs_test', 'deleted' => '0', - 'entity_id' => '9', - 'revision_id' => '9', + 'entity_id' => '8', + 'revision_id' => '11', 'language' => 'und', 'delta' => '0', - 'field_paragraph_test_value' => '3', - 'field_paragraph_test_revision_id' => '3', + 'field_paragraph_one_only_value' => '13', + 'field_paragraph_one_only_revision_id' => '19', )) ->values(array( 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', + 'bundle' => 'paragraphs_test', 'deleted' => '0', - 'entity_id' => '10', - 'revision_id' => '10', + 'entity_id' => '9', + 'revision_id' => '9', 'language' => 'und', 'delta' => '0', - 'field_paragraph_test_value' => '4', - 'field_paragraph_test_revision_id' => '4', -)) -->values(array( - 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', - 'deleted' => '0', - 'entity_id' => '8', - 'revision_id' => '8', - 'language' => 'und', - 'delta' => '1', - 'field_paragraph_test_value' => '2', - 'field_paragraph_test_revision_id' => '2', + 'field_paragraph_one_only_value' => '15', + 'field_paragraph_one_only_revision_id' => '15', )) ->values(array( 'entity_type' => 'node', - 'bundle' => 'paragraphs_migration_test', + 'bundle' => 'paragraphs_test', 'deleted' => '0', 'entity_id' => '10', 'revision_id' => '10', 'language' => 'und', - 'delta' => '1', - 'field_paragraph_test_value' => '5', - 'field_paragraph_test_revision_id' => '5', + 'delta' => '0', + 'field_paragraph_one_only_value' => '16', + 'field_paragraph_one_only_revision_id' => '16', )) ->execute(); @@ -12042,7 +11401,18 @@ $connection->insert('field_revision_field_text') 'revision_id' => '1', 'language' => 'und', 'delta' => '0', - 'field_text_value' => 'Field Collection Text Data', + 'field_text_value' => 'Field Collection Text Data One UND', + 'field_text_format' => NULL, +)) +->values(array( + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', + 'deleted' => '0', + 'entity_id' => '1', + 'revision_id' => '8', + 'language' => 'und', + 'delta' => '0', + 'field_text_value' => 'Field Collection Text Data One UND', 'field_text_format' => NULL, )) ->values(array( @@ -12057,14 +11427,14 @@ $connection->insert('field_revision_field_text') 'field_text_format' => NULL, )) ->values(array( - 'entity_type' => 'paragraphs_item', - 'bundle' => 'paragraph_bundle_test', + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', 'deleted' => '0', - 'entity_id' => '1', - 'revision_id' => '1', + 'entity_id' => '2', + 'revision_id' => '2', 'language' => 'und', 'delta' => '0', - 'field_text_value' => 'Paragraph Text one', + 'field_text_value' => 'Field Collection Text Data Two UND', 'field_text_format' => NULL, )) ->values(array( @@ -12072,65 +11442,208 @@ $connection->insert('field_revision_field_text') 'bundle' => 'field_field_collection_test', 'deleted' => '0', 'entity_id' => '2', - 'revision_id' => '2', + 'revision_id' => '9', 'language' => 'und', 'delta' => '0', - 'field_text_value' => 'Field Collection Text Data English', + 'field_text_value' => 'Field Collection Text Data Two UND', 'field_text_format' => NULL, )) ->values(array( 'entity_type' => 'paragraphs_item', - 'bundle' => 'paragraph_bundle_test', + 'bundle' => 'paragraph_bundle_two', 'deleted' => '0', 'entity_id' => '2', 'revision_id' => '2', 'language' => 'und', 'delta' => '0', - 'field_text_value' => 'Paragraph Text two', + 'field_text_value' => 'Paragraph Field One Bundle Two UND', 'field_text_format' => NULL, )) ->values(array( - 'entity_type' => 'field_collection_item', - 'bundle' => 'field_field_collection_test', + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_two', 'deleted' => '0', - 'entity_id' => '3', - 'revision_id' => '3', + 'entity_id' => '2', + 'revision_id' => '18', 'language' => 'und', 'delta' => '0', - 'field_text_value' => 'Field Collection Text Data Icelandic', + 'field_text_value' => 'Paragraph Field One Bundle Two UND', 'field_text_format' => NULL, )) ->values(array( - 'entity_type' => 'paragraphs_item', - 'bundle' => 'paragraph_bundle_test', + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', 'deleted' => '0', 'entity_id' => '3', 'revision_id' => '3', 'language' => 'und', 'delta' => '0', - 'field_text_value' => 'Paragraph Text English', + 'field_text_value' => 'Field Collection Text Data One EN', 'field_text_format' => NULL, )) ->values(array( - 'entity_type' => 'paragraphs_item', - 'bundle' => 'paragraph_bundle_test', + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', 'deleted' => '0', 'entity_id' => '4', 'revision_id' => '4', 'language' => 'und', 'delta' => '0', - 'field_text_value' => 'Paragraph Text Icelandic 1', + 'field_text_value' => 'Field Collection Text Data Two EN', + 'field_text_format' => NULL, +)) +->values(array( + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', + 'deleted' => '0', + 'entity_id' => '5', + 'revision_id' => '5', + 'language' => 'und', + 'delta' => '0', + 'field_text_value' => 'Field Collection Text Data One IS', 'field_text_format' => NULL, )) ->values(array( 'entity_type' => 'paragraphs_item', - 'bundle' => 'paragraph_bundle_test', + 'bundle' => 'paragraph_bundle_two', 'deleted' => '0', 'entity_id' => '5', 'revision_id' => '5', 'language' => 'und', 'delta' => '0', - 'field_text_value' => 'Paragraph Text Icelandic 2', + 'field_text_value' => 'Paragraph Field One Bundle Two EN', + 'field_text_format' => NULL, +)) +->values(array( + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', + 'deleted' => '0', + 'entity_id' => '6', + 'revision_id' => '6', + 'language' => 'und', + 'delta' => '0', + 'field_text_value' => 'Field Collection Text Data Two IS', + 'field_text_format' => NULL, +)) +->values(array( + 'entity_type' => 'field_collection_item', + 'bundle' => 'field_field_collection_test', + 'deleted' => '0', + 'entity_id' => '7', + 'revision_id' => '7', + 'language' => 'und', + 'delta' => '0', + 'field_text_value' => 'Field Collection Text Data Three IS', + 'field_text_format' => NULL, +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_two', + 'deleted' => '0', + 'entity_id' => '8', + 'revision_id' => '8', + 'language' => 'und', + 'delta' => '0', + 'field_text_value' => 'Paragraph Field One Bundle Two IS', + 'field_text_format' => NULL, +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_two', + 'deleted' => '0', + 'entity_id' => '10', + 'revision_id' => '10', + 'language' => 'und', + 'delta' => '0', + 'field_text_value' => 'Paragraph Field One Bundle Two Delta 3 IS', + 'field_text_format' => NULL, +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '11', + 'revision_id' => '11', + 'language' => 'und', + 'delta' => '0', + 'field_text_value' => 'Paragraph Field One Bundle One IS', + 'field_text_format' => NULL, +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '12', + 'revision_id' => '12', + 'language' => 'und', + 'delta' => '0', + 'field_text_value' => 'Paragraph Field One Bundle One UND', + 'field_text_format' => NULL, +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '12', + 'revision_id' => '17', + 'language' => 'und', + 'delta' => '0', + 'field_text_value' => 'Paragraph Field One Bundle One UND', + 'field_text_format' => NULL, +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '13', + 'revision_id' => '13', + 'language' => 'und', + 'delta' => '0', + 'field_text_value' => 'Paragraph Field Two Bundle One UND', + 'field_text_format' => NULL, +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '13', + 'revision_id' => '19', + 'language' => 'und', + 'delta' => '0', + 'field_text_value' => 'Paragraph Field Two Bundle One Revision Two UND', + 'field_text_format' => NULL, +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '14', + 'revision_id' => '14', + 'language' => 'und', + 'delta' => '0', + 'field_text_value' => 'Paragraph Field One Bundle One EN', + 'field_text_format' => NULL, +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '15', + 'revision_id' => '15', + 'language' => 'und', + 'delta' => '0', + 'field_text_value' => 'Paragraph Field Two Bundle One EN', + 'field_text_format' => NULL, +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '16', + 'revision_id' => '16', + 'language' => 'und', + 'delta' => '0', + 'field_text_value' => 'Paragraph Field Two Bundle One IS', 'field_text_format' => NULL, )) ->execute(); @@ -12309,6 +11822,86 @@ $connection->insert('field_revision_field_text_list') 'delta' => '0', 'field_text_list_value' => 'Some more text', )) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '11', + 'revision_id' => '11', + 'language' => 'und', + 'delta' => '0', + 'field_text_list_value' => 'Some Text', +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '12', + 'revision_id' => '12', + 'language' => 'und', + 'delta' => '0', + 'field_text_list_value' => 'Some Text', +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '12', + 'revision_id' => '17', + 'language' => 'und', + 'delta' => '0', + 'field_text_list_value' => 'Some Text', +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '13', + 'revision_id' => '13', + 'language' => 'und', + 'delta' => '0', + 'field_text_list_value' => 'Some more text', +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '13', + 'revision_id' => '19', + 'language' => 'und', + 'delta' => '0', + 'field_text_list_value' => 'Some more text', +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '14', + 'revision_id' => '14', + 'language' => 'und', + 'delta' => '0', + 'field_text_list_value' => 'Some Text', +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '15', + 'revision_id' => '15', + 'language' => 'und', + 'delta' => '0', + 'field_text_list_value' => 'Some Text', +)) +->values(array( + 'entity_type' => 'paragraphs_item', + 'bundle' => 'paragraph_bundle_one', + 'deleted' => '0', + 'entity_id' => '16', + 'revision_id' => '16', + 'language' => 'und', + 'delta' => '0', + 'field_text_list_value' => 'Some more text', +)) ->execute(); $connection->schema()->createTable('field_revision_field_text_long_filtered', array( @@ -12670,59 +12263,15 @@ $connection->schema()->createTable('field_revision_field_text_plain', array( 'language', ), 'field_text_plain_format' => array( - 'field_text_plain_format', + array( + 'field_text_plain_format', + '191', + ), ), ), 'mysql_character_set' => 'utf8', )); -$connection->insert('field_revision_field_text_plain') -->fields(array( - 'entity_type', - 'bundle', - 'deleted', - 'entity_id', - 'revision_id', - 'language', - 'delta', - 'field_text_plain_value', - 'field_text_plain_format', -)) -->values(array( - 'entity_type' => 'field_collection_item', - 'bundle' => 'field_field_collection_test', - 'deleted' => '0', - 'entity_id' => '1', - 'revision_id' => '1', - 'language' => 'und', - 'delta' => '0', - 'field_text_plain_value' => 'Field Collection Text Plain Data', - 'field_text_plain_format' => NULL, -)) -->values(array( - 'entity_type' => 'field_collection_item', - 'bundle' => 'field_field_collection_test', - 'deleted' => '0', - 'entity_id' => '2', - 'revision_id' => '2', - 'language' => 'und', - 'delta' => '0', - 'field_text_plain_value' => 'Field Collection Text Plain Data', - 'field_text_plain_format' => NULL, -)) -->values(array( - 'entity_type' => 'field_collection_item', - 'bundle' => 'field_field_collection_test', - 'deleted' => '0', - 'entity_id' => '3', - 'revision_id' => '3', - 'language' => 'und', - 'delta' => '0', - 'field_text_plain_value' => 'Field Collection Text Plain Data Icelandic', - 'field_text_plain_format' => NULL, -)) -->execute(); - $connection->schema()->createTable('field_revision_field_text_plain_filtered', array( 'fields' => array( 'entity_type' => array( @@ -14046,1255 +13595,17 @@ $connection->insert('history') ->values(array( 'uid' => '1', 'nid' => '8', - 'timestamp' => '1517542515', + 'timestamp' => '1518106402', )) ->values(array( 'uid' => '1', 'nid' => '9', - 'timestamp' => '1517542607', + 'timestamp' => '1518106216', )) ->values(array( 'uid' => '1', 'nid' => '10', - 'timestamp' => '1517542889', -)) -->execute(); - -$connection->schema()->createTable('i18n_string', array( - 'fields' => array( - 'lid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'textgroup' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '50', - 'default' => 'default', - ), - 'context' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'objectid' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'type' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'property' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'objectindex' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'big', - 'default' => '0', - ), - 'format' => array( - 'type' => 'varchar', - 'not null' => FALSE, - 'length' => '255', - ), - ), - 'primary key' => array( - 'lid', - ), - 'indexes' => array( - 'group_context' => array( - 'textgroup', - array( - 'context', - '50', - ), - ), - ), - 'mysql_character_set' => 'utf8', -)); - -$connection->insert('i18n_string') -->fields(array( - 'lid', - 'textgroup', - 'context', - 'objectid', - 'type', - 'property', - 'objectindex', - 'format', -)) -->values(array( - 'lid' => '1822', - 'textgroup' => 'field', - 'context' => 'comment_body:comment_node_page:label', - 'objectid' => 'comment_node_page', - 'type' => 'comment_body', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1823', - 'textgroup' => 'field', - 'context' => 'comment_body:comment_node_article:label', - 'objectid' => 'comment_node_article', - 'type' => 'comment_body', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1824', - 'textgroup' => 'field', - 'context' => 'comment_body:comment_node_blog:label', - 'objectid' => 'comment_node_blog', - 'type' => 'comment_body', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1825', - 'textgroup' => 'field', - 'context' => 'comment_body:comment_node_book:label', - 'objectid' => 'comment_node_book', - 'type' => 'comment_body', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1826', - 'textgroup' => 'field', - 'context' => 'comment_body:comment_node_forum:label', - 'objectid' => 'comment_node_forum', - 'type' => 'comment_body', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1827', - 'textgroup' => 'field', - 'context' => 'comment_body:comment_node_test_content_type:label', - 'objectid' => 'comment_node_test_content_type', - 'type' => 'comment_body', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1828', - 'textgroup' => 'field', - 'context' => 'comment_body:comment_node_paragraphs_migration_test:label', - 'objectid' => 'comment_node_paragraphs_migration_test', - 'type' => 'comment_body', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1829', - 'textgroup' => 'field', - 'context' => 'body:page:label', - 'objectid' => 'page', - 'type' => 'body', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1830', - 'textgroup' => 'field', - 'context' => 'body:article:label', - 'objectid' => 'article', - 'type' => 'body', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1831', - 'textgroup' => 'field', - 'context' => 'body:blog:label', - 'objectid' => 'blog', - 'type' => 'body', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1832', - 'textgroup' => 'field', - 'context' => 'body:book:label', - 'objectid' => 'book', - 'type' => 'body', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1833', - 'textgroup' => 'field', - 'context' => 'body:forum:label', - 'objectid' => 'forum', - 'type' => 'body', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1834', - 'textgroup' => 'field', - 'context' => 'body:paragraphs_migration_test:label', - 'objectid' => 'paragraphs_migration_test', - 'type' => 'body', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1835', - 'textgroup' => 'field', - 'context' => 'field_tags:article:label', - 'objectid' => 'article', - 'type' => 'field_tags', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1836', - 'textgroup' => 'field', - 'context' => 'field_tags:article:description', - 'objectid' => 'article', - 'type' => 'field_tags', - 'property' => 'description', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1837', - 'textgroup' => 'field', - 'context' => 'field_image:article:label', - 'objectid' => 'article', - 'type' => 'field_image', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1838', - 'textgroup' => 'field', - 'context' => 'field_image:article:description', - 'objectid' => 'article', - 'type' => 'field_image', - 'property' => 'description', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1839', - 'textgroup' => 'field', - 'context' => 'taxonomy_forums:forum:label', - 'objectid' => 'forum', - 'type' => 'taxonomy_forums', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1840', - 'textgroup' => 'field', - 'context' => 'field_boolean:#allowed_values:0', - 'objectid' => '#allowed_values', - 'type' => 'field_boolean', - 'property' => '0', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1841', - 'textgroup' => 'field', - 'context' => 'field_boolean:#allowed_values:1', - 'objectid' => '#allowed_values', - 'type' => 'field_boolean', - 'property' => '1', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1842', - 'textgroup' => 'field', - 'context' => 'field_boolean:test_content_type:label', - 'objectid' => 'test_content_type', - 'type' => 'field_boolean', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1843', - 'textgroup' => 'field', - 'context' => 'field_boolean:test_content_type:description', - 'objectid' => 'test_content_type', - 'type' => 'field_boolean', - 'property' => 'description', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1844', - 'textgroup' => 'field', - 'context' => 'field_email:test_content_type:label', - 'objectid' => 'test_content_type', - 'type' => 'field_email', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1845', - 'textgroup' => 'field', - 'context' => 'field_email:test_content_type:description', - 'objectid' => 'test_content_type', - 'type' => 'field_email', - 'property' => 'description', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1846', - 'textgroup' => 'field', - 'context' => 'field_email:paragraph_bundle_test:label', - 'objectid' => 'paragraph_bundle_test', - 'type' => 'field_email', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1847', - 'textgroup' => 'field', - 'context' => 'field_phone:test_content_type:label', - 'objectid' => 'test_content_type', - 'type' => 'field_phone', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1848', - 'textgroup' => 'field', - 'context' => 'field_date:test_content_type:label', - 'objectid' => 'test_content_type', - 'type' => 'field_date', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1849', - 'textgroup' => 'field', - 'context' => 'field_date_with_end_time:test_content_type:label', - 'objectid' => 'test_content_type', - 'type' => 'field_date_with_end_time', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1850', - 'textgroup' => 'field', - 'context' => 'field_file:test_content_type:label', - 'objectid' => 'test_content_type', - 'type' => 'field_file', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1851', - 'textgroup' => 'field', - 'context' => 'field_file:user:label', - 'objectid' => 'user', - 'type' => 'field_file', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1852', - 'textgroup' => 'field', - 'context' => 'field_float:test_content_type:label', - 'objectid' => 'test_content_type', - 'type' => 'field_float', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1853', - 'textgroup' => 'field', - 'context' => 'field_float:test_content_type:description', - 'objectid' => 'test_content_type', - 'type' => 'field_float', - 'property' => 'description', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1854', - 'textgroup' => 'field', - 'context' => 'field_images:test_content_type:label', - 'objectid' => 'test_content_type', - 'type' => 'field_images', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1855', - 'textgroup' => 'field', - 'context' => 'field_integer:test_content_type:label', - 'objectid' => 'test_content_type', - 'type' => 'field_integer', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1856', - 'textgroup' => 'field', - 'context' => 'field_integer:comment_node_test_content_type:label', - 'objectid' => 'comment_node_test_content_type', - 'type' => 'field_integer', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1857', - 'textgroup' => 'field', - 'context' => 'field_integer:test_vocabulary:label', - 'objectid' => 'test_vocabulary', - 'type' => 'field_integer', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1858', - 'textgroup' => 'field', - 'context' => 'field_integer:user:label', - 'objectid' => 'user', - 'type' => 'field_integer', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1859', - 'textgroup' => 'field', - 'context' => 'field_link:test_content_type:label', - 'objectid' => 'test_content_type', - 'type' => 'field_link', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1860', - 'textgroup' => 'field', - 'context' => 'field_link:test_content_type:title_value', - 'objectid' => 'test_content_type', - 'type' => 'field_link', - 'property' => 'title_value', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1861', - 'textgroup' => 'field', - 'context' => 'field_link:article:label', - 'objectid' => 'article', - 'type' => 'field_link', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1862', - 'textgroup' => 'field', - 'context' => 'field_link:article:title_value', - 'objectid' => 'article', - 'type' => 'field_link', - 'property' => 'title_value', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1863', - 'textgroup' => 'field', - 'context' => 'field_link:blog:label', - 'objectid' => 'blog', - 'type' => 'field_link', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1864', - 'textgroup' => 'field', - 'context' => 'field_link:blog:title_value', - 'objectid' => 'blog', - 'type' => 'field_link', - 'property' => 'title_value', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1865', - 'textgroup' => 'field', - 'context' => 'field_text_list:#allowed_values:Some Text', - 'objectid' => '#allowed_values', - 'type' => 'field_text_list', - 'property' => 'Some Text', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1866', - 'textgroup' => 'field', - 'context' => 'field_text_list:#allowed_values:Some more text', - 'objectid' => '#allowed_values', - 'type' => 'field_text_list', - 'property' => 'Some more text', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1867', - 'textgroup' => 'field', - 'context' => 'field_text_list:#allowed_values:The key', - 'objectid' => '#allowed_values', - 'type' => 'field_text_list', - 'property' => 'The key', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1868', - 'textgroup' => 'field', - 'context' => 'field_text_list:test_content_type:label', - 'objectid' => 'test_content_type', - 'type' => 'field_text_list', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1869', - 'textgroup' => 'field', - 'context' => 'field_integer_list:#allowed_values:1', - 'objectid' => '#allowed_values', - 'type' => 'field_integer_list', - 'property' => '1', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1870', - 'textgroup' => 'field', - 'context' => 'field_integer_list:#allowed_values:2', - 'objectid' => '#allowed_values', - 'type' => 'field_integer_list', - 'property' => '2', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1871', - 'textgroup' => 'field', - 'context' => 'field_integer_list:#allowed_values:3', - 'objectid' => '#allowed_values', - 'type' => 'field_integer_list', - 'property' => '3', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1872', - 'textgroup' => 'field', - 'context' => 'field_integer_list:#allowed_values:6', - 'objectid' => '#allowed_values', - 'type' => 'field_integer_list', - 'property' => '6', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1873', - 'textgroup' => 'field', - 'context' => 'field_integer_list:#allowed_values:7', - 'objectid' => '#allowed_values', - 'type' => 'field_integer_list', - 'property' => '7', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1874', - 'textgroup' => 'field', - 'context' => 'field_integer_list:test_content_type:label', - 'objectid' => 'test_content_type', - 'type' => 'field_integer_list', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1875', - 'textgroup' => 'field', - 'context' => 'field_long_text:test_content_type:label', - 'objectid' => 'test_content_type', - 'type' => 'field_long_text', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1876', - 'textgroup' => 'field', - 'context' => 'field_term_reference:test_content_type:label', - 'objectid' => 'test_content_type', - 'type' => 'field_term_reference', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1877', - 'textgroup' => 'field', - 'context' => 'field_term_reference:test_vocabulary:label', - 'objectid' => 'test_vocabulary', - 'type' => 'field_term_reference', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1878', - 'textgroup' => 'field', - 'context' => 'field_text:test_content_type:label', - 'objectid' => 'test_content_type', - 'type' => 'field_text', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1879', - 'textgroup' => 'field', - 'context' => 'field_text:paragraph_bundle_test:label', - 'objectid' => 'paragraph_bundle_test', - 'type' => 'field_text', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1880', - 'textgroup' => 'field', - 'context' => 'field_text:field_field_collection_test:label', - 'objectid' => 'field_field_collection_test', - 'type' => 'field_text', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1881', - 'textgroup' => 'field', - 'context' => 'field_node_entityreference:test_content_type:label', - 'objectid' => 'test_content_type', - 'type' => 'field_node_entityreference', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1882', - 'textgroup' => 'field', - 'context' => 'field_user_entityreference:test_content_type:label', - 'objectid' => 'test_content_type', - 'type' => 'field_user_entityreference', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1883', - 'textgroup' => 'field', - 'context' => 'field_term_entityreference:test_content_type:label', - 'objectid' => 'test_content_type', - 'type' => 'field_term_entityreference', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1884', - 'textgroup' => 'field', - 'context' => 'field_private_file:test_content_type:label', - 'objectid' => 'test_content_type', - 'type' => 'field_private_file', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1885', - 'textgroup' => 'field', - 'context' => 'field_text_plain:article:label', - 'objectid' => 'article', - 'type' => 'field_text_plain', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1886', - 'textgroup' => 'field', - 'context' => 'field_text_plain:page:label', - 'objectid' => 'page', - 'type' => 'field_text_plain', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1887', - 'textgroup' => 'field', - 'context' => 'field_text_plain:field_field_collection_test:label', - 'objectid' => 'field_field_collection_test', - 'type' => 'field_text_plain', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1888', - 'textgroup' => 'field', - 'context' => 'field_text_filtered:article:label', - 'objectid' => 'article', - 'type' => 'field_text_filtered', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1889', - 'textgroup' => 'field', - 'context' => 'field_text_filtered:page:label', - 'objectid' => 'page', - 'type' => 'field_text_filtered', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1890', - 'textgroup' => 'field', - 'context' => 'field_text_plain_filtered:article:label', - 'objectid' => 'article', - 'type' => 'field_text_plain_filtered', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1891', - 'textgroup' => 'field', - 'context' => 'field_text_plain_filtered:page:label', - 'objectid' => 'page', - 'type' => 'field_text_plain_filtered', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1892', - 'textgroup' => 'field', - 'context' => 'field_text_long_plain:article:label', - 'objectid' => 'article', - 'type' => 'field_text_long_plain', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1893', - 'textgroup' => 'field', - 'context' => 'field_text_long_plain:page:label', - 'objectid' => 'page', - 'type' => 'field_text_long_plain', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1894', - 'textgroup' => 'field', - 'context' => 'field_text_long_filtered:article:label', - 'objectid' => 'article', - 'type' => 'field_text_long_filtered', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1895', - 'textgroup' => 'field', - 'context' => 'field_text_long_filtered:page:label', - 'objectid' => 'page', - 'type' => 'field_text_long_filtered', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1896', - 'textgroup' => 'field', - 'context' => 'field_text_long_plain_filtered:article:label', - 'objectid' => 'article', - 'type' => 'field_text_long_plain_filtered', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1897', - 'textgroup' => 'field', - 'context' => 'field_text_long_plain_filtered:page:label', - 'objectid' => 'page', - 'type' => 'field_text_long_plain_filtered', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1898', - 'textgroup' => 'field', - 'context' => 'field_text_sum_plain:article:label', - 'objectid' => 'article', - 'type' => 'field_text_sum_plain', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1899', - 'textgroup' => 'field', - 'context' => 'field_text_sum_plain:page:label', - 'objectid' => 'page', - 'type' => 'field_text_sum_plain', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1900', - 'textgroup' => 'field', - 'context' => 'field_text_sum_filtered:article:label', - 'objectid' => 'article', - 'type' => 'field_text_sum_filtered', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1901', - 'textgroup' => 'field', - 'context' => 'field_text_sum_filtered:page:label', - 'objectid' => 'page', - 'type' => 'field_text_sum_filtered', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1902', - 'textgroup' => 'field', - 'context' => 'field_text_sum_plain_filtered:article:label', - 'objectid' => 'article', - 'type' => 'field_text_sum_plain_filtered', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1903', - 'textgroup' => 'field', - 'context' => 'field_text_sum_plain_filtered:page:label', - 'objectid' => 'page', - 'type' => 'field_text_sum_plain_filtered', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1904', - 'textgroup' => 'field', - 'context' => 'field_datetime_without_time:test_content_type:label', - 'objectid' => 'test_content_type', - 'type' => 'field_datetime_without_time', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1905', - 'textgroup' => 'field', - 'context' => 'field_date_without_time:test_content_type:label', - 'objectid' => 'test_content_type', - 'type' => 'field_date_without_time', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1906', - 'textgroup' => 'field', - 'context' => 'field_field_collection_test:paragraphs_migration_test:label', - 'objectid' => 'paragraphs_migration_test', - 'type' => 'field_field_collection_test', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1907', - 'textgroup' => 'field', - 'context' => 'field_field_collection_test:paragraphs_migration_test:setting_edit', - 'objectid' => 'paragraphs_migration_test', - 'type' => 'field_field_collection_test', - 'property' => 'setting_edit', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1908', - 'textgroup' => 'field', - 'context' => 'field_field_collection_test:paragraphs_migration_test:setting_translate', - 'objectid' => 'paragraphs_migration_test', - 'type' => 'field_field_collection_test', - 'property' => 'setting_translate', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1909', - 'textgroup' => 'field', - 'context' => 'field_field_collection_test:paragraphs_migration_test:setting_delete', - 'objectid' => 'paragraphs_migration_test', - 'type' => 'field_field_collection_test', - 'property' => 'setting_delete', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1910', - 'textgroup' => 'field', - 'context' => 'field_field_collection_test:paragraphs_migration_test:setting_add', - 'objectid' => 'paragraphs_migration_test', - 'type' => 'field_field_collection_test', - 'property' => 'setting_add', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1911', - 'textgroup' => 'field', - 'context' => 'field_paragraph_test:paragraphs_migration_test:label', - 'objectid' => 'paragraphs_migration_test', - 'type' => 'field_paragraph_test', - 'property' => 'label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1912', - 'textgroup' => 'node', - 'context' => 'type:blog:name', - 'objectid' => 'blog', - 'type' => 'type', - 'property' => 'name', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1913', - 'textgroup' => 'node', - 'context' => 'type:blog:title_label', - 'objectid' => 'blog', - 'type' => 'type', - 'property' => 'title_label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1914', - 'textgroup' => 'node', - 'context' => 'type:blog:description', - 'objectid' => 'blog', - 'type' => 'type', - 'property' => 'description', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1915', - 'textgroup' => 'node', - 'context' => 'type:blog:help', - 'objectid' => 'blog', - 'type' => 'type', - 'property' => 'help', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1916', - 'textgroup' => 'node', - 'context' => 'type:forum:name', - 'objectid' => 'forum', - 'type' => 'type', - 'property' => 'name', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1917', - 'textgroup' => 'node', - 'context' => 'type:forum:title_label', - 'objectid' => 'forum', - 'type' => 'type', - 'property' => 'title_label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1918', - 'textgroup' => 'node', - 'context' => 'type:forum:description', - 'objectid' => 'forum', - 'type' => 'type', - 'property' => 'description', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1919', - 'textgroup' => 'node', - 'context' => 'type:forum:help', - 'objectid' => 'forum', - 'type' => 'type', - 'property' => 'help', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1920', - 'textgroup' => 'node', - 'context' => 'type:article:name', - 'objectid' => 'article', - 'type' => 'type', - 'property' => 'name', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1921', - 'textgroup' => 'node', - 'context' => 'type:article:title_label', - 'objectid' => 'article', - 'type' => 'type', - 'property' => 'title_label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1922', - 'textgroup' => 'node', - 'context' => 'type:article:description', - 'objectid' => 'article', - 'type' => 'type', - 'property' => 'description', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1923', - 'textgroup' => 'node', - 'context' => 'type:article:help', - 'objectid' => 'article', - 'type' => 'type', - 'property' => 'help', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1924', - 'textgroup' => 'node', - 'context' => 'type:book:name', - 'objectid' => 'book', - 'type' => 'type', - 'property' => 'name', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1925', - 'textgroup' => 'node', - 'context' => 'type:book:title_label', - 'objectid' => 'book', - 'type' => 'type', - 'property' => 'title_label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1926', - 'textgroup' => 'node', - 'context' => 'type:book:description', - 'objectid' => 'book', - 'type' => 'type', - 'property' => 'description', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1927', - 'textgroup' => 'node', - 'context' => 'type:page:name', - 'objectid' => 'page', - 'type' => 'type', - 'property' => 'name', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1928', - 'textgroup' => 'node', - 'context' => 'type:page:title_label', - 'objectid' => 'page', - 'type' => 'type', - 'property' => 'title_label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1929', - 'textgroup' => 'node', - 'context' => 'type:page:description', - 'objectid' => 'page', - 'type' => 'type', - 'property' => 'description', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1930', - 'textgroup' => 'node', - 'context' => 'type:page:help', - 'objectid' => 'page', - 'type' => 'type', - 'property' => 'help', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1931', - 'textgroup' => 'node', - 'context' => 'type:paragraphs_migration_test:name', - 'objectid' => 'paragraphs_migration_test', - 'type' => 'type', - 'property' => 'name', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1932', - 'textgroup' => 'node', - 'context' => 'type:paragraphs_migration_test:title_label', - 'objectid' => 'paragraphs_migration_test', - 'type' => 'type', - 'property' => 'title_label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1933', - 'textgroup' => 'node', - 'context' => 'type:paragraphs_migration_test:description', - 'objectid' => 'paragraphs_migration_test', - 'type' => 'type', - 'property' => 'description', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1934', - 'textgroup' => 'node', - 'context' => 'type:test_content_type:name', - 'objectid' => 'test_content_type', - 'type' => 'type', - 'property' => 'name', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1935', - 'textgroup' => 'node', - 'context' => 'type:test_content_type:title_label', - 'objectid' => 'test_content_type', - 'type' => 'type', - 'property' => 'title_label', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1936', - 'textgroup' => 'node', - 'context' => 'type:test_content_type:description', - 'objectid' => 'test_content_type', - 'type' => 'type', - 'property' => 'description', - 'objectindex' => '0', - 'format' => '', -)) -->values(array( - 'lid' => '1937', - 'textgroup' => 'node', - 'context' => 'type:test_content_type:help', - 'objectid' => 'test_content_type', - 'type' => 'type', - 'property' => 'help', - 'objectindex' => '0', - 'format' => '', + 'timestamp' => '1518106648', )) ->execute(); @@ -15593,15 +13904,6 @@ $connection->schema()->createTable('locales_source', array( 'primary key' => array( 'lid', ), - 'indexes' => array( - 'textgroup_context' => array( - 'textgroup', - array( - 'context', - '50', - ), - ), - ), 'mysql_character_set' => 'utf8', )); @@ -15728,7 +14030,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '15', - 'location' => 'misc/vertical-tabs.js; modules/overlay/overlay-child.js', + 'location' => 'misc/vertical-tabs.js', 'textgroup' => 'default', 'source' => '(active tab)', 'context' => '', @@ -15748,7 +14050,7 @@ $connection->insert('locales_source') 'textgroup' => 'default', 'source' => 'Not published', 'context' => '', - 'version' => '7.56', + 'version' => 'none', )) ->values(array( 'lid' => '18', @@ -15804,7 +14106,7 @@ $connection->insert('locales_source') 'textgroup' => 'default', 'source' => 'Other', 'context' => '', - 'version' => '7.56', + 'version' => 'none', )) ->values(array( 'lid' => '25', @@ -15876,7 +14178,7 @@ $connection->insert('locales_source') 'textgroup' => 'default', 'source' => 'Configure', 'context' => '', - 'version' => '7.56', + 'version' => 'none', )) ->values(array( 'lid' => '34', @@ -16016,7 +14318,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '51', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Public files', 'context' => '', @@ -16024,7 +14326,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '52', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Public local files served by the webserver.', 'context' => '', @@ -16032,7 +14334,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '53', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Temporary files', 'context' => '', @@ -16040,7 +14342,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '54', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Temporary local files for upload and previews.', 'context' => '', @@ -16048,7 +14350,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '55', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Private files', 'context' => '', @@ -16056,7 +14358,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '56', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Private local files served by Drupal.', 'context' => '', @@ -16064,15 +14366,15 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '57', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Paragraphs migration test content type', + 'source' => 'A Content Type for Testing Paragraphs and Field Collection Migrations', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '58', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Long', 'context' => '', @@ -16080,7 +14382,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '59', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Medium', 'context' => '', @@ -16088,7 +14390,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '60', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Short', 'context' => '', @@ -16096,7 +14398,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '61', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Blog entry', 'context' => '', @@ -16104,7 +14406,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '62', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Use for multi-user blogs. Every user gets a personal blog.', 'context' => '', @@ -16112,7 +14414,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '63', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Forum topic', 'context' => '', @@ -16120,7 +14422,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '64', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'A forum topic starts a new discussion thread within a forum.', 'context' => '', @@ -16128,7 +14430,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '65', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Subject', 'context' => '', @@ -16136,7 +14438,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '66', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Create @name', 'context' => '', @@ -16144,7 +14446,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '67', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'When either saving new content or updating existing content', 'context' => '', @@ -16152,7 +14454,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '68', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'After saving new content', 'context' => '', @@ -16160,7 +14462,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '69', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'After saving updated content', 'context' => '', @@ -16168,7 +14470,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '70', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'After deleting content', 'context' => '', @@ -16176,7 +14478,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '71', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'When content is viewed by an authenticated user', 'context' => '', @@ -16184,7 +14486,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '72', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'When either saving a new comment or updating an existing comment', 'context' => '', @@ -16192,7 +14494,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '73', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'After saving a new comment', 'context' => '', @@ -16200,7 +14502,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '74', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'After saving an updated comment', 'context' => '', @@ -16208,7 +14510,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '75', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'After deleting a comment', 'context' => '', @@ -16216,7 +14518,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '76', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'When a comment is being viewed by an authenticated user', 'context' => '', @@ -16224,7 +14526,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '77', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'After saving a new term to the database', 'context' => '', @@ -16232,7 +14534,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '78', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'After saving an updated term to the database', 'context' => '', @@ -16240,7 +14542,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '79', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'After deleting a term', 'context' => '', @@ -16248,7 +14550,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '80', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'When cron runs', 'context' => '', @@ -16256,7 +14558,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '81', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'After creating a new user account', 'context' => '', @@ -16264,7 +14566,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '82', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'After updating a user account', 'context' => '', @@ -16272,7 +14574,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '83', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'After a user has been deleted', 'context' => '', @@ -16280,7 +14582,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '84', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'After a user has logged in', 'context' => '', @@ -16288,7 +14590,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '85', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'After a user has logged out', 'context' => '', @@ -16296,7 +14598,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '86', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => "When a user's profile is being viewed", 'context' => '', @@ -16304,7 +14606,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '87', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Comment', 'context' => '', @@ -16312,7 +14614,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '88', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Full comment', 'context' => '', @@ -16320,7 +14622,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '89', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => '@node_type comment', 'context' => '', @@ -16328,7 +14630,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '90', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Field collection item', 'context' => '', @@ -16336,7 +14638,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '91', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Full content', 'context' => '', @@ -16344,7 +14646,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '92', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Field collection @field', 'context' => '', @@ -16352,7 +14654,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '93', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Node', 'context' => '', @@ -16360,7 +14662,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '94', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Teaser', 'context' => '', @@ -16368,7 +14670,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '95', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'RSS', 'context' => '', @@ -16376,7 +14678,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '96', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Search index', 'context' => '', @@ -16384,7 +14686,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '97', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Search result highlighting input', 'context' => '', @@ -16392,7 +14694,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '98', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Paragraphs item', 'context' => '', @@ -16400,7 +14702,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '99', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Paragraphs Editor Preview', 'context' => '', @@ -16408,7 +14710,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '100', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Paragraphs bundle @bundle', 'context' => '', @@ -16416,7 +14718,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '101', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'File', 'context' => '', @@ -16424,7 +14726,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '102', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Taxonomy term', 'context' => '', @@ -16432,7 +14734,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '103', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Taxonomy term page', 'context' => '', @@ -16440,7 +14742,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '104', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Taxonomy vocabulary', 'context' => '', @@ -16448,7 +14750,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '105', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'User', 'context' => '', @@ -16456,7 +14758,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '106', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'User account', 'context' => '', @@ -16464,7 +14766,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '107', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Print', 'context' => '', @@ -16472,7 +14774,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '108', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Nodes', 'context' => '', @@ -16480,7 +14782,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '109', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Users', 'context' => '', @@ -16488,7 +14790,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '110', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Files', 'context' => '', @@ -16496,7 +14798,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '111', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Nodes represent the main site content items.', 'context' => '', @@ -16504,7 +14806,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '112', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Users who have created accounts on your site.', 'context' => '', @@ -16512,7 +14814,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '113', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Uploaded file.', 'context' => '', @@ -16520,7 +14822,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '114', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Comments', 'context' => '', @@ -16528,7 +14830,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '115', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Remark or note that refers to a node.', 'context' => '', @@ -16536,7 +14838,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '116', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Taxonomy terms', 'context' => '', @@ -16544,7 +14846,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '117', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Taxonomy terms are used for classifying content.', 'context' => '', @@ -16552,7 +14854,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '118', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Taxonomy vocabularies', 'context' => '', @@ -16560,7 +14862,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '119', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Vocabularies contain related taxonomy terms, which are used for classifying content.', 'context' => '', @@ -16568,911 +14870,911 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '120', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Revision information', + 'source' => 'Date', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '121', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Create new revision', + 'source' => 'Store a date in the database as a datetime field, recommended for complete dates and times that may need timezone conversion.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '122', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Revision log message', + 'source' => 'Date (ISO format)', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '123', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Provide an explanation of the changes you are making. This will help other authors understand your motivations.', + 'source' => 'Store a date in the database as an ISO date, recommended for historical or partial dates.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '124', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Authoring information', + 'source' => 'Date (Unix timestamp)', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '125', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Anonymous', + 'source' => 'Store a date in the database as a timestamp, deprecated format to support legacy data.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '126', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Authored by', + 'source' => 'This field stores and renders email addresses.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '127', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Leave blank for %anonymous.', + 'source' => 'Entity Reference', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '128', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Authored on', + 'source' => 'This field reference another entity.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '129', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Format: %time. The date format is YYYY-MM-DD and %timezone is the time zone offset from UTC. Leave blank to use the time of form submission.', + 'source' => 'Field collection', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '130', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Publishing options', + 'source' => 'This field stores references to embedded entities, which itself may contain any number of fields.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '131', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Published', + 'source' => 'This field stores the ID of a file as an integer value.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '132', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Promoted to front page', + 'source' => 'Image', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '133', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Sticky at top of lists', + 'source' => 'This field stores the ID of an image file as an integer value.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '134', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Save', + 'source' => 'Link', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '135', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Preview', + 'source' => 'Store a title, href, and attributes in the database to assemble a link.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '136', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Date', + 'source' => 'List (integer)', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '137', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Store a date in the database as a datetime field, recommended for complete dates and times that may need timezone conversion.', + 'source' => "This field stores integer values from a list of allowed 'value => label' pairs, i.e. 'Lifetime in days': 1 => 1 day, 7 => 1 week, 31 => 1 month.", 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '138', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Date (ISO format)', + 'source' => 'List (float)', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '139', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Store a date in the database as an ISO date, recommended for historical or partial dates.', + 'source' => "This field stores float values from a list of allowed 'value => label' pairs, i.e. 'Fraction': 0 => 0, .25 => 1/4, .75 => 3/4, 1 => 1.", 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '140', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Date (Unix timestamp)', + 'source' => 'List (text)', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '141', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Store a date in the database as a timestamp, deprecated format to support legacy data.', + 'source' => "This field stores text values from a list of allowed 'value => label' pairs, i.e. 'US States': IL => Illinois, IA => Iowa, IN => Indiana.", 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '142', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'This field stores and renders email addresses.', + 'source' => 'Boolean', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '143', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Entity Reference', + 'source' => 'This field stores simple on/off or yes/no options.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '144', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'This field reference another entity.', + 'source' => 'Integer', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '145', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Field collection', + 'source' => 'This field stores a number in the database as an integer.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '146', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'This field stores references to embedded entities, which itself may contain any number of fields.', + 'source' => 'Decimal', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '147', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'This field stores the ID of a file as an integer value.', + 'source' => 'This field stores a number in the database in a fixed decimal format.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '148', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Image', + 'source' => 'Float', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '149', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'This field stores the ID of an image file as an integer value.', + 'source' => 'This field stores a number in the database in a floating point format.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '150', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Link', + 'source' => 'Paragraphs', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '151', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Store a title, href, and attributes in the database to assemble a link.', + 'source' => 'Paragraphs field using the paragraph bundles.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '152', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'List (integer)', + 'source' => 'Phone Number', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '153', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => "This field stores integer values from a list of allowed 'value => label' pairs, i.e. 'Lifetime in days': 1 => 1 day, 7 => 1 week, 31 => 1 month.", + 'source' => 'Term reference', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '154', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'List (float)', + 'source' => 'This field stores a reference to a taxonomy term.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '155', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => "This field stores float values from a list of allowed 'value => label' pairs, i.e. 'Fraction': 0 => 0, .25 => 1/4, .75 => 3/4, 1 => 1.", + 'source' => 'Text', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '156', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'List (text)', + 'source' => 'This field stores varchar text in the database.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '157', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => "This field stores text values from a list of allowed 'value => label' pairs, i.e. 'US States': IL => Illinois, IA => Iowa, IN => Indiana.", + 'source' => 'Long text', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '158', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Boolean', + 'source' => 'This field stores long text in the database.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '159', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'This field stores simple on/off or yes/no options.', + 'source' => 'Long text and summary', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '160', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Integer', + 'source' => 'This field stores long text in the database along with optional summary text.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '161', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'This field stores a number in the database as an integer.', + 'source' => 'Select list', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '162', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Decimal', + 'source' => 'Text field', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '163', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'This field stores a number in the database in a fixed decimal format.', + 'source' => 'Autocomplete', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '164', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Float', + 'source' => 'An autocomplete text field.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '165', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'This field stores a number in the database in a floating point format.', + 'source' => 'Autocomplete (Tags style)', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '166', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Paragraphs', + 'source' => 'Hidden', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '167', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Paragraphs field using the paragraph bundles.', + 'source' => 'Embedded', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '168', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Phone Number', + 'source' => 'Check boxes/radio buttons', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '169', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Term reference', + 'source' => 'Single on/off checkbox', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '170', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'This field stores a reference to a taxonomy term.', + 'source' => 'Autocomplete term widget (tagging)', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '171', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Text', + 'source' => 'Text area (multiple rows)', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '172', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'This field stores varchar text in the database.', + 'source' => 'Text area with a summary', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '173', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Long text', + 'source' => 'Date and time', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '174', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'This field stores long text in the database.', + 'source' => 'Time ago', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '175', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Long text and summary', + 'source' => 'Plain', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '176', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'This field stores long text in the database along with optional summary text.', + 'source' => 'Default email link', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '177', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Select list', + 'source' => 'Display the email address as a mailto link.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '178', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Text field', + 'source' => 'Email contact form', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '179', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Autocomplete', + 'source' => 'Display a contact form.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '180', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'An autocomplete text field.', + 'source' => 'Email plain text', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '181', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Autocomplete (Tags style)', + 'source' => 'Display the email address as plain text.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '182', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Hidden', + 'source' => 'Label', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '183', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Embedded', + 'source' => 'Display the label of the referenced entities.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '184', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Check boxes/radio buttons', + 'source' => 'Entity id', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '185', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Single on/off checkbox', + 'source' => 'Display the id of the referenced entities.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '186', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Autocomplete term widget (tagging)', + 'source' => 'Rendered entity', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '187', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Text area (multiple rows)', + 'source' => 'Display the referenced entities rendered by entity_view().', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '188', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Text area with a summary', + 'source' => 'Links to field collection items', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '189', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Date and time', + 'source' => 'Translate', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '190', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Time ago', + 'source' => 'Delete', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '191', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Plain', + 'source' => 'Add', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '192', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Default email link', + 'source' => 'Field collection items', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '193', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Display the email address as a mailto link.', + 'source' => 'Fields only', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '194', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Email contact form', + 'source' => 'Generic file', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '195', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Display a contact form.', + 'source' => 'Table of files', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '196', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Email plain text', + 'source' => 'URL to file', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '197', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Display the email address as plain text.', + 'source' => 'Title, as link (default)', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '198', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Label', + 'source' => 'Title, as plain text', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '199', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Display the label of the referenced entities.', + 'source' => 'Host, as plain text', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '200', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Entity id', + 'source' => 'URL, as link', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '201', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Display the id of the referenced entities.', + 'source' => 'URL, as plain text', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '202', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Rendered entity', + 'source' => 'URL, absolute', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '203', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Display the referenced entities rendered by entity_view().', + 'source' => 'Domain, as link', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '204', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Links to field collection items', + 'source' => 'Short, as link with title "Link"', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '205', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Translate', + 'source' => 'Label, as link with label as title', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '206', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Delete', + 'source' => 'Separate title and URL', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '207', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Add', + 'source' => 'Default', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '208', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Field collection items', + 'source' => 'Key', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '209', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Fields only', + 'source' => 'Unformatted', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '210', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Generic file', + 'source' => 'Paragraphs items', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '211', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Table of files', + 'source' => 'Plain text', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '212', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'URL to file', + 'source' => 'RSS category', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '213', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Title, as link (default)', + 'source' => 'Trimmed', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '214', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Title, as plain text', + 'source' => 'Summary or trimmed', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '215', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Host, as plain text', + 'source' => 'Default SQL storage', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '216', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'URL, as link', + 'source' => 'Stores fields in the local SQL database, using per-field tables.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '217', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'URL, as plain text', + 'source' => 'Revision information', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '218', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'URL, absolute', + 'source' => 'Create new revision', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '219', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Domain, as link', + 'source' => 'Revision log message', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '220', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Short, as link with title "Link"', + 'source' => 'Provide an explanation of the changes you are making. This will help other authors understand your motivations.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '221', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Label, as link with label as title', + 'source' => 'Authoring information', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '222', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Separate title and URL', + 'source' => 'Anonymous', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '223', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Default', + 'source' => 'Authored by', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '224', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Key', + 'source' => 'Leave blank for %anonymous.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '225', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Unformatted', + 'source' => 'Authored on', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '226', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Paragraphs items', + 'source' => 'Format: %time. The date format is YYYY-MM-DD and %timezone is the time zone offset from UTC. Leave blank to use the time of form submission.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '227', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Plain text', + 'source' => 'Publishing options', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '228', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'RSS category', + 'source' => 'Published', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '229', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Trimmed', + 'source' => 'Promoted to front page', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '230', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Summary or trimmed', + 'source' => 'Sticky at top of lists', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '231', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Default SQL storage', + 'source' => 'Save', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '232', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Stores fields in the local SQL database, using per-field tables.', + 'source' => 'Preview', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '233', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Summary', 'context' => '', @@ -17480,7 +15782,7 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '234', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', 'source' => 'Leave blank to use trimmed value of full text as the summary.', 'context' => '', @@ -17488,801 +15790,801 @@ $connection->insert('locales_source') )) ->values(array( 'lid' => '235', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Paragraph', + 'source' => 'N/A', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '236', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => '!title type', + 'source' => 'Remove', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '237', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Add new !title', + 'source' => 'Weight for row @number', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '238', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Book outline', + 'source' => 'Add another item', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '239', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Weight', + 'source' => 'Paragraph', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '240', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Pages at a given level are ordered first by weight and then by title.', + 'source' => '@title type: %bundle', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '241', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'create a new book', + 'source' => '- None -', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '242', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'none', + 'source' => '!title type', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '243', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Book', + 'source' => 'Add another !title', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '244', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Your page will be a part of the selected book.', + 'source' => 'Book outline', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '245', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Change book (update list of parents)', + 'source' => 'Weight', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '246', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Comment settings', + 'source' => 'Pages at a given level are ordered first by weight and then by title.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '247', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Open', + 'source' => 'create a new book', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '248', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Closed', + 'source' => 'none', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '249', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Users with the "Post comments" permission can post comments.', + 'source' => 'Book', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '250', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Users cannot post comments, but existing comments will be displayed.', + 'source' => 'Your page will be a part of the selected book.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '251', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Comments are hidden from view.', + 'source' => 'Change book (update list of parents)', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '252', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Users cannot post comments.', + 'source' => 'Comment settings', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '253', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Language', + 'source' => 'Open', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '254', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Language neutral', + 'source' => 'Closed', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '255', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'English', + 'source' => 'Users with the "Post comments" permission can post comments.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '256', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Icelandic', + 'source' => 'Users cannot post comments, but existing comments will be displayed.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '257', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Main menu', + 'source' => 'Comments are hidden from view.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '258', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Management', + 'source' => 'Users cannot post comments.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '259', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Test Menu', + 'source' => 'Language', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '260', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Navigation', + 'source' => 'Language neutral', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '261', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'User menu', + 'source' => 'English', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '262', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'URL path settings', + 'source' => 'Icelandic', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '263', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'URL alias', + 'source' => 'Main menu', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '264', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => "Optionally specify an alternative URL by which this content can be accessed. For example, type \"about\" when writing an about page. Use a relative path and don't add a trailing slash or the URL alias won't work.", + 'source' => 'Management', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '265', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'User autocomplete', + 'source' => 'Test Menu', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '266', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Text format', + 'source' => 'Navigation', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '267', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Content', + 'source' => 'User menu', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '268', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Help', + 'source' => 'URL path settings', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '269', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Page top', + 'source' => 'URL alias', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '270', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Page bottom', + 'source' => "Optionally specify an alternative URL by which this content can be accessed. For example, type \"about\" when writing an about page. Use a relative path and don't add a trailing slash or the URL alias won't work.", 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '271', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'First sidebar', + 'source' => 'User autocomplete', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '272', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Add to %shortcut_set shortcuts', + 'source' => 'Text format', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '273', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Home', + 'source' => 'Content', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '274', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Compose tips', + 'source' => 'Help', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '275', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Add content', + 'source' => 'Page top', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '276', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Use articles for time-sensitive content like news, press releases or blog posts.', + 'source' => 'Page bottom', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '277', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => "Use basic pages for your static content, such as an 'About us' page.", + 'source' => 'First sidebar', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '278', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Books have a built-in hierarchical navigation. Use for handbooks or tutorials.', + 'source' => 'Add to %shortcut_set shortcuts', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '279', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'This is the description of the test content type.', + 'source' => 'Home', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '280', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Search', + 'source' => 'Compose tips', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '281', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Blogs', + 'source' => 'Add content', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '282', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Books', + 'source' => 'Use articles for time-sensitive content like news, press releases or blog posts.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '283', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Contact', + 'source' => "Use basic pages for your static content, such as an 'About us' page.", 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '284', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Feed aggregator', + 'source' => 'Books have a built-in hierarchical navigation. Use for handbooks or tutorials.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '285', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Forums', + 'source' => 'This is the description of the test content type.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '286', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Recent content', + 'source' => 'Search', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '287', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'You are here', + 'source' => 'Blogs', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '288', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Status message', + 'source' => 'Books', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '289', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Error message', + 'source' => 'Contact', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '290', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Warning message', + 'source' => 'Feed aggregator', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '291', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'This field is required.', + 'source' => 'Forums', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '292', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => '!title !required', + 'source' => 'Recent content', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '293', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'More information about text formats', + 'source' => 'You are here', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '294', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Limit allowed HTML tags', + 'source' => 'Status message', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '295', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Convert line breaks into HTML (i.e. <br> and <p>)', + 'source' => 'Error message', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '296', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Convert URLs into links', + 'source' => 'Warning message', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '297', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Correct faulty and chopped off HTML', + 'source' => 'This field is required.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '298', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Display any HTML as plain text', + 'source' => '!title !required', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '299', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'PHP evaluator', + 'source' => 'More information about text formats', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '300', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Executes a piece of PHP code. The usage of this filter should be restricted to administrators only!', + 'source' => 'Limit allowed HTML tags', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '301', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Web page addresses and e-mail addresses turn into links automatically.', + 'source' => 'Convert line breaks into HTML (i.e. <br> and <p>)', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '302', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Allowed HTML tags: @tags', + 'source' => 'Convert URLs into links', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '303', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Lines and paragraphs break automatically.', + 'source' => 'Correct faulty and chopped off HTML', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '304', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'No HTML tags allowed.', + 'source' => 'Display any HTML as plain text', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '305', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'You may post PHP code. You should include <?php ?> tags.', + 'source' => 'PHP evaluator', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '306', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Order', + 'source' => 'Executes a piece of PHP code. The usage of this filter should be restricted to administrators only!', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '307', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'No @title_multiple added yet. Select a @title type and press the button below to add one.', + 'source' => 'Web page addresses and e-mail addresses turn into links automatically.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '308', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Vertical Tabs', + 'source' => 'Allowed HTML tags: @tags', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '309', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Appearance', + 'source' => 'Lines and paragraphs break automatically.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '310', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Select and configure your themes.', + 'source' => 'No HTML tags allowed.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '311', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Configuration', + 'source' => 'You may post PHP code. You should include <?php ?> tags.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '312', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Administer settings.', + 'source' => 'Order', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '313', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Administer content and comments.', + 'source' => 'Vertical Tabs', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '314', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Index', + 'source' => 'Appearance', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '315', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Modules', + 'source' => 'Select and configure your themes.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '316', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Extend site functionality.', + 'source' => 'Configuration', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '317', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'People', + 'source' => 'Administer settings.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '318', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Manage user accounts, roles, and permissions.', + 'source' => 'Administer content and comments.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '319', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Reports', + 'source' => 'Index', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '320', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'View reports, updates, and errors.', + 'source' => 'Modules', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '321', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Structure', + 'source' => 'Extend site functionality.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '322', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Administer blocks, content types, menus, etc.', + 'source' => 'People', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '323', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Tasks', + 'source' => 'Manage user accounts, roles, and permissions.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '324', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Reference for usage, configuration, and modules.', + 'source' => 'Reports', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '325', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Administrative toolbar', + 'source' => 'View reports, updates, and errors.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '326', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Hello @username', + 'source' => 'Structure', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '327', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Log out', + 'source' => 'Administer blocks, content types, menus, etc.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '328', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Edit shortcuts', + 'source' => 'Tasks', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '329', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Skip to main content', + 'source' => 'Reference for usage, configuration, and modules.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '330', - 'location' => '/is/system/ajax', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'AHAH callback', + 'source' => 'Administrative toolbar', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '331', - 'location' => '/is/system/ajax', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => '@title type: %bundle', + 'source' => 'Hello @username', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '332', - 'location' => '/is/system/ajax', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Weight for row @number', + 'source' => 'Log out', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '333', - 'location' => '/is/system/ajax', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Add another item', + 'source' => 'Edit shortcuts', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '334', - 'location' => '/is/system/ajax', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Remove', + 'source' => 'Skip to main content', 'context' => '', 'version' => '7.56', )) @@ -18290,24721 +16592,1599 @@ $connection->insert('locales_source') 'lid' => '335', 'location' => '/is/system/ajax', 'textgroup' => 'default', - 'source' => 'Add another !title', + 'source' => 'AHAH callback', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '336', - 'location' => '/is/system/ajax', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'Term name', + 'source' => 'view', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '337', - 'location' => '/is/system/ajax', + 'location' => '/is/node/add/paragraphs-test?translation=9&target=is', 'textgroup' => 'default', - 'source' => 'The name of this taxonomy term.', + 'source' => '@type %title has been created.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '338', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'Term', + 'source' => 'Header', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '339', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'List of related terms', + 'source' => 'Highlighted', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '340', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'Terms related to an existing term; may be child, siblings or top level.', + 'source' => 'Featured', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '341', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'Term description', + 'source' => 'Sidebar first', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '342', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'Term description.', + 'source' => 'Sidebar second', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '343', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'Block', + 'source' => 'Triptych first', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '344', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'Custom content', + 'source' => 'Triptych middle', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '345', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'Existing node', + 'source' => 'Triptych last', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '346', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'Add a node from your site as content.', + 'source' => 'Footer first column', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '347', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'Custom', + 'source' => 'Footer second column', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '348', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'Entity field', + 'source' => 'Footer third column', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '349', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'Entity extra field', + 'source' => 'Footer fourth column', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '350', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'Node last updated date', + 'source' => 'Footer', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '351', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'The date the referenced node was last updated.', + 'source' => 'View', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '352', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'Attached files', + 'source' => 'Outline', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '353', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'A list of files attached to the node.', + 'source' => 'Track', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '354', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'Comment form', + 'source' => 'Enter the terms you wish to search for.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '355', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'A form to add a new comment.', + 'source' => 'Powered by Drupal', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '356', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'Book navigation pager', + 'source' => 'My account', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '357', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'The navigational pager and sub pages of the current book node.', + 'source' => 'Secondary menu', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '358', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'Book children', + 'source' => 'Search form', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '359', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'The children menu the book the node belongs to.', + 'source' => 'Configure block', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '360', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'Node created date', + 'source' => 'List links', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '361', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'The date the referenced node was created.', + 'source' => 'Edit menu', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '362', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'Node terms', + 'source' => 'Primary tabs', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '363', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'Taxonomy terms of the referenced node.', + 'source' => '!local-task-title!active', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '364', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'Book navigation menu', + 'source' => 'Thu', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '365', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'The book menu belonging to the current book node.', + 'source' => 'View user profile.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '366', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'Node title', + 'source' => 'Submitted by !username on !datetime', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '367', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'The title of the referenced node.', + 'source' => '!instance_label @count', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '368', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10/edit', 'textgroup' => 'default', - 'source' => 'Node content', + 'source' => 'Edit @type @title', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '369', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10/edit', 'textgroup' => 'default', - 'source' => 'The content of the referenced node.', + 'source' => 'Add new !title', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '370', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10/edit', 'textgroup' => 'default', - 'source' => 'Node type description', + 'source' => 'Translation settings', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '371', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10/edit', 'textgroup' => 'default', - 'source' => 'Node type description.', + 'source' => 'This translation needs to be updated', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '372', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10/edit', 'textgroup' => 'default', - 'source' => 'Node comments', + 'source' => 'When this option is checked, this translation needs to be updated because the source post has changed. Uncheck when the translation is up to date again.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '373', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10/edit', 'textgroup' => 'default', - 'source' => 'The comments of the referenced node.', + 'source' => 'No @title_multiple added yet. Select a @title type and press the button below to add one.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '374', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10/edit', 'textgroup' => 'default', - 'source' => 'Node links', + 'source' => '@type %title has been updated.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '375', - 'location' => '/is/system/ajax', + 'location' => '/is/node/10', 'textgroup' => 'default', - 'source' => 'Node links of the referenced node.', + 'source' => '1 read', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '376', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure', 'textgroup' => 'default', - 'source' => 'Node body', + 'source' => 'Drupal core update status', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '377', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure', 'textgroup' => 'default', - 'source' => 'The body of the referenced node.', + 'source' => 'There was a problem checking available updates for Drupal.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '378', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure', 'textgroup' => 'default', - 'source' => 'Node author', + 'source' => 'See the available updates page for more information and to install your missing updates.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '379', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure', 'textgroup' => 'default', - 'source' => 'The author of the referenced node.', + 'source' => 'Module and theme update status', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '380', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure', 'textgroup' => 'default', - 'source' => 'Comments and comment form.', + 'source' => 'There was a problem checking available updates for your modules or themes.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '381', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure', 'textgroup' => 'default', - 'source' => 'The comments and comment form for the referenced node.', + 'source' => 'Blocks', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '382', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure', 'textgroup' => 'default', - 'source' => 'Search results', + 'source' => "Configure what block content appears in your site's sidebars and other regions.", 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '383', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure', 'textgroup' => 'default', - 'source' => 'The results of a search using keywords.', + 'source' => 'Content types', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '384', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure', 'textgroup' => 'default', - 'source' => 'Keywords', + 'source' => 'Manage content types, including default status, front page promotion, comment settings, etc.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '385', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure', 'textgroup' => 'default', - 'source' => 'Widgets', + 'source' => 'Menus', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '386', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure', 'textgroup' => 'default', - 'source' => 'Advanced search form', + 'source' => 'Add new menus to your site, edit existing menus, and rename and reorganize menu links.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '387', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure', 'textgroup' => 'default', - 'source' => 'A search form with advanced options.', + 'source' => 'Taxonomy', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '388', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure', 'textgroup' => 'default', - 'source' => 'Vocabulary terms', + 'source' => 'Manage tagging, categorization, and classification of your content.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '389', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure', 'textgroup' => 'default', - 'source' => 'All the terms in a vocabulary.', + 'source' => 'Contact form', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '390', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure', 'textgroup' => 'default', - 'source' => 'Vocabulary', + 'source' => 'Create a system contact form and set up categories for the form to use.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '391', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure', 'textgroup' => 'default', - 'source' => 'Comment created date', + 'source' => 'Control forum hierarchy settings.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '392', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure', 'textgroup' => 'default', - 'source' => 'The date the referenced comment was created.', + 'source' => 'Triggers', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '393', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure', 'textgroup' => 'default', - 'source' => 'Comment Reply Form', + 'source' => 'Configure when to execute actions.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '394', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure', 'textgroup' => 'default', - 'source' => 'A form to add a new comment reply.', + 'source' => 'Field collections', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '395', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure', 'textgroup' => 'default', - 'source' => 'Comment links', + 'source' => 'Manage fields on field collections.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '396', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure', 'textgroup' => 'default', - 'source' => 'Comment links of the referenced comment.', + 'source' => 'Paragraph Bundles', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '397', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure', 'textgroup' => 'default', - 'source' => 'User links', + 'source' => 'Manage Paragraph bundles', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '398', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure', 'textgroup' => 'default', - 'source' => 'User links of the referenced user.', + 'source' => 'Administration', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '399', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/paragraphs', 'textgroup' => 'default', - 'source' => 'User picture', + 'source' => 'Bundle name', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '400', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/paragraphs', 'textgroup' => 'default', - 'source' => 'The picture of a user.', + 'source' => 'Operations', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '401', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/paragraphs', 'textgroup' => 'default', - 'source' => 'User profile', + 'source' => 'manage fields', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '402', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/paragraphs', 'textgroup' => 'default', - 'source' => 'The profile of a user.', + 'source' => 'manage display', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '403', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/paragraphs', 'textgroup' => 'default', - 'source' => 'User signature', + 'source' => 'edit bundle', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '404', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/paragraphs', 'textgroup' => 'default', - 'source' => 'The signature of a user.', + 'source' => 'delete bundle', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '405', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/paragraphs', 'textgroup' => 'default', - 'source' => 'Node form revision log message', + 'source' => 'No paragraph bundles have been defined yet.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '406', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/paragraphs', 'textgroup' => 'default', - 'source' => 'Revision log message for the node.', + 'source' => 'List', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '407', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/paragraphs', 'textgroup' => 'default', - 'source' => 'Form', + 'source' => 'Add Paragraph Bundle', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '408', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types', 'textgroup' => 'default', - 'source' => 'Node form submit buttons', + 'source' => 'Name', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '409', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types', 'textgroup' => 'default', - 'source' => 'Submit buttons for the node form.', + 'source' => '(Machine name: @type)', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '410', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types', 'textgroup' => 'default', - 'source' => 'Node form comment settings', + 'source' => 'edit', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '411', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types', 'textgroup' => 'default', - 'source' => 'Comment settings on the Node form.', + 'source' => 'delete', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '412', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types', 'textgroup' => 'default', - 'source' => 'Node form author information', + 'source' => 'No content types available. Add content type.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '413', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types', 'textgroup' => 'default', - 'source' => 'Author information on the Node form.', + 'source' => 'Add content type', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '414', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Node form title field', + 'source' => 'Manage fields', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '415', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'The node title form.', + 'source' => 'Author', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '416', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Node form menu settings', + 'source' => 'Author textfield', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '417', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Menu settings on the Node form.', + 'source' => 'Subject textfield', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '418', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Node form languages', + 'source' => 'Node module element', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '419', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'The language selection form.', + 'source' => 'Term name textfield', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '420', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Node form publishing options', + 'source' => 'Description', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '421', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Publishing options on the Node form.', + 'source' => 'Term description textarea', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '422', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Node form url path settings', + 'source' => 'Term description', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '423', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Node form book options', + 'source' => 'User name and password', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '424', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Book options for the node.', + 'source' => 'User module account form elements.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '425', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Contact form', + 'source' => 'Timezone', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '426', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'The site contact form that allows users to send a message to site administrators.', + 'source' => 'User module timezone form element.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '427', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'User contact form', + 'source' => 'History', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '428', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'The site contact form that allows users to contact other users.', + 'source' => 'User module history view element.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '429', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'General form', + 'source' => 'Parent', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '430', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Everything in the form that is not displayed by other content.', + 'source' => 'Machine name', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '431', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Tabs', + 'source' => 'Field type', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '432', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Add the tabs (local tasks) as content.', + 'source' => 'Widget', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '433', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Page elements', + 'source' => 'No fields are present yet.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '434', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Page title', + 'source' => 'Weight for @title', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '435', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Add the page title as content.', + 'source' => 'Parent for @title', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '436', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Site slogan', + 'source' => 'Edit field settings.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '437', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => "Add the site's slogan as content.", + 'source' => 'Change widget type.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '438', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Feed icons', + 'source' => 'Edit instance settings.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '439', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Add the site feed_icons statement as content.', + 'source' => 'Delete instance.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '440', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Breadcrumb', + 'source' => 'New field label', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '441', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Add the breadcrumb trail as content.', + 'source' => 'Add new field', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '442', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Site name', + 'source' => 'Weight for new field', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '443', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'The name of the site, optionally links to the front page.', + 'source' => 'Parent for new field', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '444', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Status messages', + 'source' => 'New field name', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '445', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Add the status messages of the current page as content.', + 'source' => 'A unique machine-readable name containing letters, numbers, and underscores.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '446', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Site logo', + 'source' => 'Type of new field', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '447', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Add the logo trail as content.', + 'source' => '- Select a field type -', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '448', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Add the help text of the current page as content.', + 'source' => 'Type of data to store.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '449', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Primary navigation links', + 'source' => 'Widget for new field', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '450', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Add the primary_links (local tasks) as content.', + 'source' => '- Select a widget -', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '451', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Secondary navigation links', + 'source' => 'Form element to edit the data.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '452', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Add the secondary_links (local tasks) as content.', + 'source' => '@type: @field (@label)', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '453', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Actions', + 'source' => '...', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '454', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Add the action links (local tasks) as content.', + 'source' => 'Existing field label', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '455', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Tokens', + 'source' => 'Add existing field', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '456', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Aggregator item', + 'source' => 'Weight for added field', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '457', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Display the aggregator item using the data from the original source.', + 'source' => 'Parent for existing field', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '458', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Book root from current node', + 'source' => 'Existing field to share', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '459', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Display the comment with standard comment view.', + 'source' => '- Select an existing field -', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '460', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Display the comment as RSS.', + 'source' => 'Field to share', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '461', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Aggregator', + 'source' => 'Widget for existing field', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '462', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Aggregator items are imported from external RSS and Atom news feeds.', + 'source' => 'Machine-readable name', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '463', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Feed Item ID', + 'source' => 'A unique machine-readable name. Can only contain lowercase letters, numbers, and underscores.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '464', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'The unique ID of the aggregator item.', + 'source' => 'Manage display', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '465', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Item ID', + 'source' => 'Comment fields', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '466', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields', 'textgroup' => 'default', - 'source' => 'Title', + 'source' => 'Comment display', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '467', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'The title of the aggregator item.', + 'source' => '%type settings', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '468', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'The link to the original source URL of the item.', + 'source' => 'These settings apply only to the %field field when used in the %type type.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '469', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'Author', + 'source' => 'Required field', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '470', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'The author of the original imported item.', + 'source' => 'Help text', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '471', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'GUID', + 'source' => 'Instructions to present to the user below this field on the editing form.
Allowed HTML tags: @tags', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '472', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'The guid of the original imported item.', + 'source' => 'Allowed Paragraph bundles', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '473', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'Body', + 'source' => 'If no bundle is selected, all the bundles will be available.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '474', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'The actual content of the imported item.', + 'source' => 'Item Title', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '475', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'Timestamp', + 'source' => 'Label to appear as title on the button as "Add new [title]", this label is translatable', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '476', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'The date the original feed item was posted. (With some feeds, this will be the date it was imported.)', + 'source' => 'Plural Item Title', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '477', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'Aggregator feed', + 'source' => 'Title in its plural form.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '478', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'Feed ID', + 'source' => 'Default edit mode', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '479', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'The unique ID of the aggregator feed.', + 'source' => 'The default edit mode the paragraph item is in. Preview will render the paragraph in the preview view mode.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '480', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'The title of the aggregator feed.', + 'source' => 'Add mode', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '481', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'The link to the source URL of the feed.', + 'source' => 'The way to add new paragraphs.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '482', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'Last checked', + 'source' => 'Select List', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '483', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'The date the feed was last checked for new content.', + 'source' => 'Buttons', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '484', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'Description', + 'source' => 'Default value', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '485', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'The description of the aggregator feed.', + 'source' => 'To specify a default value, configure it via the regular default value setting of each field that is part of the paragraph bundle. To do so, go to the Manage fields screen of the paragraph bundle.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '486', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'Last modified', + 'source' => 'These settings apply to the %field field everywhere it is used. Because the field already has data, some settings can no longer be changed.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '487', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'The date of the most recent new content on the feed.', + 'source' => '%field field settings', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '488', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'Aggregator category', + 'source' => 'Maximum number of values users can enter for this field.', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '489', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'Category ID', + 'source' => 'Number of values', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '490', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'The unique ID of the aggregator category.', + 'source' => 'Unlimited', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '491', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'Category', + 'source' => 'Save settings', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '492', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'The title of the aggregator category.', + 'source' => 'Field settings', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '493', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'Top level book', + 'source' => 'Widget type', 'context' => '', 'version' => '7.56', )) ->values(array( 'lid' => '494', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The book the node is in.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '495', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The weight of the book page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '496', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Depth', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '497', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The depth of the book page in the hierarchy; top level books have a depth of 1.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '498', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Hierarchy', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '499', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The order of pages in the book hierarchy.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '500', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Parent', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '501', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The parent book node.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '502', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Book parent', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '503', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Comments are responses to node content.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '504', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The title of the comment.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '505', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'ID', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '506', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The comment ID of the field', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '507', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => "The name of the comment's author. Can be rendered as a link to the author's homepage.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '508', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => "Author's website", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '509', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => "The website address of the comment's author. Can be rendered as a link. Will be empty if the author is a registered user.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '510', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Hostname', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '511', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Hostname of user that posted the comment.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '512', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Mail', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '513', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Email of user that posted the comment. Will be empty if the author is a registered user.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '514', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Post date', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '515', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Date and time of when the comment was created.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '516', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Created date', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '517', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Date in the form of CCYYMMDD.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '518', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Created year + month', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '519', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Date in the form of YYYYMM.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '520', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Created year', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '521', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Date in the form of YYYY.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '522', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Created month', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '523', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Date in the form of MM (01 - 12).', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '524', - 'location' => '/is/system/ajax', + 'location' => '/is/admin/structure/types/manage/paragraphs-test/fields/field_any_paragraph', 'textgroup' => 'default', - 'source' => 'Created day', + 'source' => 'Bundle', 'context' => '', 'version' => '7.56', )) -->values(array( - 'lid' => '525', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Date in the form of DD (01 - 31).', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '526', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Created week', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '527', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Date in the form of WW (01 - 53).', - 'context' => '', - 'version' => '7.56', +->execute(); + +$connection->schema()->createTable('locales_target', array( + 'fields' => array( + 'lid' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'translation' => array( + 'type' => 'blob', + 'not null' => TRUE, + 'size' => 'normal', + ), + 'language' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '12', + 'default' => '', + ), + 'plid' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'plural' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + ), + 'primary key' => array( + 'lid', + 'language', + 'plural', + ), + 'mysql_character_set' => 'utf8', +)); + +$connection->schema()->createTable('menu_custom', array( + 'fields' => array( + 'menu_name' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '32', + 'default' => '', + ), + 'title' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + 'default' => '', + ), + 'description' => array( + 'type' => 'text', + 'not null' => FALSE, + 'size' => 'normal', + ), + ), + 'primary key' => array( + 'menu_name', + ), + 'mysql_character_set' => 'utf8', +)); + +$connection->insert('menu_custom') +->fields(array( + 'menu_name', + 'title', + 'description', )) ->values(array( - 'lid' => '528', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The language the comment is in.', - 'context' => '', - 'version' => '7.56', + 'menu_name' => 'main-menu', + 'title' => 'Main menu', + 'description' => 'The Main menu is used on many sites to show the major sections of the site, often in a top navigation bar.', )) ->values(array( - 'lid' => '529', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Updated date', - 'context' => '', - 'version' => '7.56', + 'menu_name' => 'management', + 'title' => 'Management', + 'description' => 'The Management menu contains links for administrative tasks.', )) ->values(array( - 'lid' => '530', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Date and time of when the comment was last updated.', - 'context' => '', - 'version' => '7.56', + 'menu_name' => 'menu-test-menu', + 'title' => 'Test Menu', + 'description' => 'Test menu description.', )) ->values(array( - 'lid' => '531', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Changed date', - 'context' => '', - 'version' => '7.56', + 'menu_name' => 'navigation', + 'title' => 'Navigation', + 'description' => 'The Navigation menu contains links intended for site visitors. Links are added to the Navigation menu automatically by some modules.', )) ->values(array( - 'lid' => '532', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Changed year + month', - 'context' => '', - 'version' => '7.56', + 'menu_name' => 'user-menu', + 'title' => 'User menu', + 'description' => "The User menu contains links related to the user's account, as well as the 'Log out' link.", )) -->values(array( - 'lid' => '533', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Changed year', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '534', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Changed month', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '535', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Changed day', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '536', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Changed week', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '537', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Approved', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '538', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Whether the comment is approved (or still in the moderation queue).', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '539', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Not Approved', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '540', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Approved comment', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '541', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'View link', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '542', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Provide a simple link to view the comment.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '543', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Edit link', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '544', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Provide a simple link to edit the comment.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '545', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Delete link', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '546', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Provide a simple link to delete the comment.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '547', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Approve link', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '548', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Provide a simple link to approve the comment.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '549', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Reply-to link', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '550', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Provide a simple link to reply to the comment.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '551', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Display the depth of the comment if it is threaded.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '552', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Thread', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '553', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Sort by the threaded order. This will keep child comments together with their parents.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '554', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Nid', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '555', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The node ID to which the comment is a reply to.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '556', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The content to which the comment is a reply to.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '557', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Author uid', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '558', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'If you need more fields than the uid add the comment: author relationship', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '559', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => "The User ID of the comment's author.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '560', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'author', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '561', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Parent CID', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '562', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The Comment ID of the parent comment.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '563', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Parent comment', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '564', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The parent comment.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '565', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Last comment time', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '566', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Date and time of when the last comment was posted.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '567', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Last comment author', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '568', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The name of the author of the last posted comment.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '569', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Comment count', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '570', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The number of comments a node has.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '571', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Updated/commented date', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '572', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The most recent of last comment posted or node updated time.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '573', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Last comment CID', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '574', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Display the last comment of a node', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '575', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Last Comment', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '576', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The last comment of a node.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '577', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Last comment uid', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '578', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The User ID of the author of the last comment of a node.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '579', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => '@entity "@property" property.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '580', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => '@entity ID', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '581', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The unique ID of the @entity.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '582', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'URL', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '583', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The URL of the entity.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '584', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Field name', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '585', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The machine-readable name of the field collection field containing this item.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '586', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Host entity', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '587', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The entity containing the field collection field.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '588', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The machine-readable name of the paragraphs field containing this item.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '589', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The entity containing the paragraphs field.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '590', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Comment ID', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '591', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The unique ID of the comment.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '592', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'IP Address', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '593', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The IP address of the computer the comment was posted from.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '594', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Name', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '595', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The name left by the comment author.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '596', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Email address', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '597', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The email address left by the comment author.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '598', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Home page', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '599', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The home page URL left by the comment author.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '600', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The subject of the comment.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '601', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The URL of the comment.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '602', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Edit URL', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '603', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => "The URL of the comment's edit page.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '604', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Date created', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '605', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The date the comment was posted.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '606', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => "The comment's parent, if comment threading is active.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '607', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The node the comment was posted to.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '608', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The author of the comment.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '609', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Status', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '610', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Whether the comment is published or unpublished.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '611', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Field "@name".', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '612', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The file.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '613', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The file description', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '614', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Whether the file is being displayed.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '615', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The image file.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '616', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The "Alt" attribute text', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '617', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The "Title" attribute text', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '618', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Start date', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '619', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'End date', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '620', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Duration', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '621', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The duration of the time period given by the dates.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '622', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The title of the link.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '623', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The URL of the link.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '624', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The attributes of the link.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '625', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Taxonomy index', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '626', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Include the term references created by instances of this field carried by node entities in the core {taxonomy_index} table. This will allow various modules to handle them like core term_reference fields.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '627', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Node ID', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '628', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The unique ID of the node.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '629', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Revision ID', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '630', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => "The unique ID of the node's revision.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '631', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Is new', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '632', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Whether the node is new and not saved to the database yet.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '633', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Content type', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '634', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The type of the node.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '635', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The title of the node.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '636', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The language the node is written in.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '637', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The URL of the node.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '638', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => "The URL of the node's edit page.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '639', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Whether the node is published or unpublished.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '640', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Promoted to frontpage', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '641', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Whether the node is promoted to the frontpage.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '642', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Sticky in lists', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '643', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Whether the node is displayed at the top of lists in which it appears.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '644', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The date the node was posted.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '645', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Date changed', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '646', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The date the node was most recently updated.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '647', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The author of the node.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '648', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Translation source node', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '649', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The original-language version of this node, if one exists.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '650', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'In case a new revision is to be saved, the log entry explaining the changes for this version.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '651', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Creates revision', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '652', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Whether saving this node creates a new revision.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '653', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Term ID', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '654', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The unique ID of the taxonomy term.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '655', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The name of the taxonomy term.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '656', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The optional description of the taxonomy term.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '657', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The weight of the term, which is used for ordering terms during display.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '658', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Node count', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '659', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The number of nodes tagged with the taxonomy term.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '660', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The URL of the taxonomy term.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '661', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The vocabulary the taxonomy term belongs to.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '662', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Parent terms', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '663', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The parent terms of the taxonomy term.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '664', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'All parent terms', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '665', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Ancestors of the term, i.e. parent of all above hierarchy levels.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '666', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Vocabulary ID', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '667', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The unique ID of the taxonomy vocabulary.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '668', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The name of the taxonomy vocabulary.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '669', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Machine name', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '670', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The machine name of the taxonomy vocabulary.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '671', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The optional description of the taxonomy vocabulary.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '672', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Term count', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '673', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The number of terms belonging to the taxonomy vocabulary.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '674', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'User ID', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '675', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The unique ID of the user account.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '676', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The login name of the user account.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '677', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Email', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '678', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The email address of the user account.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '679', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The URL of the account profile page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '680', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The url of the account edit page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '681', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Last access', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '682', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The date the user last accessed the site.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '683', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Last login', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '684', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The date the user last logged in to the site.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '685', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Created', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '686', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The date the user account was created.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '687', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'User roles', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '688', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The roles of the user.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '689', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Whether the user is active or blocked.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '690', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Default theme', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '691', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => "The user's default theme.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '692', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The name of the site.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '693', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Slogan', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '694', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The slogan of the site.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '695', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The administrative email address for the site.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '696', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => "The URL of the site's front page.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '697', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Login page', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '698', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => "The URL of the site's login page.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '699', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Logged in user', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '700', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The currently logged in user.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '701', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Current date', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '702', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The current date and time.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '703', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Current page', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '704', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Information related to the current page request.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '705', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Path', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '706', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The internal Drupal path of the current page request.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '707', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The full URL of the current page request.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '708', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'File ID', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '709', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The unique ID of the uploaded file.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '710', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'File name', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '711', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The name of the file on disk.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '712', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'MIME type', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '713', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The MIME type of the file.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '714', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'File size', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '715', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The size of the file, in kilobytes.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '716', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The web-accessible URL for the file.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '717', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The date the file was most recently changed.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '718', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Owner', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '719', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The user who originally uploaded the file.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '720', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'If part of a book, the book to which this book page belongs.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '721', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Book ancestors', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '722', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'If part of a book, a list of all book pages upwards in the book hierarchy.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '723', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Comments allowed', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '724', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Whether comments are allowed on this node: 0 = no, 1 = closed (read only), 2 = open (read/write).', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '725', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The node comments.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '726', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The number of comments posted on a node.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '727', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'New comment count', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '728', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The number of comments posted on a node since the reader last viewed it.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '729', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The main body text', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '730', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => "This account's default language for e-mails, and preferred language for site presentation.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '731', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Interface language', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '732', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The language code of the current user interface language.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '733', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Content language', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '734', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The language code of the current content language.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '735', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Number of views', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '736', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The number of visitors who have read the node.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '737', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Views today', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '738', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The number of visitors who have read the node today.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '739', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Last view', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '740', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The date on which a visitor last read the node.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '741', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Revisions', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '742', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => '(No information available)', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '743', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Rendered @entity-type', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '744', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The @entity-type of the current relationship rendered using a view mode.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '745', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Entity', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '746', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Displays a single chosen entity.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '747', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Field', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '748', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => '@entity:@bundle', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '749', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Appears in: @bundles.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '750', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'This is an alias of @group: @field.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '751', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => '@group: @field', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '752', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Also known as: !also.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '753', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => '@group (historical data)', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '754', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => '@group (historical data): @field', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '755', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => '@label (!name)', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '756', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => '- No value -', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '757', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => '@label (!name:!column)', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '758', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => '@label:!column', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '759', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => '@label (!name:delta)', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '760', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => '@label:delta', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '761', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Delta - Appears in: @bundles.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '762', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'term from !field_name', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '763', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'image from !field_name', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '764', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'file from !field_name', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '765', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => '@entity entity referenced from !field_name', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '766', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Referenced Entity', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '767', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'A bridge to the @entity entity that is referenced via !field_name', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '768', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'field collection item from !field_name', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '769', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'field collection item revision from !field_name', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '770', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Entity with the @field (@field_name)', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '771', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Relate each @entity using @field.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '772', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => '!field_name', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '773', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Paragraph item from !field_name', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '774', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Locale source', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '775', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'A source string for translation, in English or the default site language.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '776', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'LID', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '777', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The ID of the source string.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '778', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Location', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '779', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'A description of the location or context of the string.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '780', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Group', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '781', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The group the translation is in.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '782', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Source', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '783', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The full original string.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '784', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Version', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '785', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The version of Drupal core that this string is for.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '786', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Provide a simple link to edit the translations.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '787', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Locale target', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '788', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Translation', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '789', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The full translation string.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '790', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The language this translation is in.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '791', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Singular LID', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '792', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The ID of the parent translation.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '793', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Plural', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '794', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Whether or not the translation is plural.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '795', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The node ID.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '796', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The content title.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '797', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The date the content was posted.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '798', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The date the content was last updated.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '799', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Type', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '800', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The content type (for example, "blog entry", "forum post", "story", etc).', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '801', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Whether or not the content is published.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '802', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Published or admin', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '803', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Filters out unpublished content if the current user cannot view it.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '804', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Whether or not the content is promoted to the front page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '805', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Promoted', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '806', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Not promoted', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '807', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Sticky', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '808', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Whether or not the content is sticky.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '809', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Not sticky', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '810', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Whether or not the content is sticky. To list sticky content first, set this to descending.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '811', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Provide a simple link to the content.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '812', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Provide a simple link to edit the content.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '813', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Provide a simple link to delete the content.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '814', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The aliased path to this content.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '815', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Updated year + month', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '816', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Updated year', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '817', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Updated month', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '818', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Updated day', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '819', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Updated week', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '820', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The user authoring the content. If you need more fields than the uid add the content: author relationship', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '821', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Relate content to the user who created it.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '822', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'User has a revision', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '823', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'All nodes where a certain user has a revision', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '824', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Version Count', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '825', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The total count of versions/revisions of a certain node.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '826', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Content revision', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '827', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Content revision is a history of changes to content.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '828', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Relate a content revision to the user who created the revision.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '829', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'revision user', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '830', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The revision NID of the content revision.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '831', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Get the actual content from a content revision.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '832', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Vid', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '833', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The revision ID of the content revision.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '834', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Log message', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '835', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The log message entered when the revision was created.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '836', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The date the node was last updated.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '837', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Provide a simple link to the revision.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '838', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Revert link', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '839', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Provide a simple link to revert to the revision.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '840', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Provide a simple link to delete the content revision.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '841', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Content access', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '842', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Access', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '843', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Filter by access.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '844', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Filter for content by view access. Not necessary if you are using node as your base table.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '845', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Has new content', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '846', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Show a marker if the content is new or updated.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '847', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Show only content that is new or updated.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '848', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Score', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '849', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The score of the search item. This will not be used if the search filter is not also present.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '850', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Links from', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '851', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Other nodes that are linked from the node.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '852', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Links to', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '853', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Other nodes that link to the node.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '854', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Search Terms', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '855', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The terms to search for.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '856', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Content statistics', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '857', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Total views', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '858', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The total number of times the node has been viewed.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '859', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The total number of times the node has been viewed today.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '860', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Most recent view', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '861', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The most recent time the node has been viewed.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '862', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Access log', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '863', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Stores site access information.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '864', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Aid', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '865', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Unique access event ID.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '866', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Session ID', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '867', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Browser session ID of user that visited page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '868', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Title of page visited.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '869', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Internal path to page visited (relative to Drupal root.)', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '870', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Referrer', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '871', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Referrer URI.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '872', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Hostname of user that visited the page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '873', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The user who visited the site.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '874', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Timer', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '875', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Time in milliseconds that the page took to load.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '876', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Timestamp of when the page was visited.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '877', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Files maintained by Drupal and various modules.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '878', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The ID of the file.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '879', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The name of the file.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '880', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The path of the file.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '881', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Mime type', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '882', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The mime type of the file.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '883', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Extension', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '884', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The extension of the file.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '885', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Size', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '886', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The size of the file.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '887', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The status of the file.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '888', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Upload date', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '889', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The date the file was uploaded.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '890', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'User who uploaded', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '891', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The user that uploaded the file.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '892', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'File Usage', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '893', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Content that is associated with this file, usually because this file is in a field on the content.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '894', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'A file that is associated with this node, usually because it is in a field on the node.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '895', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'A user that is associated with this file, usually because this file is in a field on the user.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '896', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'A file that is associated with this user, usually because it is in a field on the user.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '897', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'A comment that is associated with this file, usually because this file is in a field on the comment.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '898', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'A file that is associated with this comment, usually because it is in a field on the comment.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '899', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Taxonomy Term', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '900', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'A taxonomy term that is associated with this file, usually because this file is in a field on the taxonomy term.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '901', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'A file that is associated with this taxonomy term, usually because it is in a field on the taxonomy term.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '902', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Taxonomy Vocabulary', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '903', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'A taxonomy vocabulary that is associated with this file, usually because this file is in a field on the taxonomy vocabulary.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '904', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'A file that is associated with this taxonomy vocabulary, usually because it is in a field on the taxonomy vocabulary.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '905', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Module', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '906', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The module managing this file relationship.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '907', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Entity type', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '908', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The type of entity that is related to the file.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '909', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Entity ID', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '910', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The ID of the entity that is related to the file.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '911', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Use count', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '912', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The number of times the file is used by this entity.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '913', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'System', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '914', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Module/Theme/Theme engine', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '915', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Modules/Themes/Theme engines in your codebase.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '916', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Module/Theme/Theme engine filename', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '917', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The path of the primary file for this item, relative to the Drupal root; e.g. modules/node/node.module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '918', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Module/Theme/Theme engine name', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '919', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The name of the item; e.g. node.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '920', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The type of the item, either module, theme, or theme_engine.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '921', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Boolean indicating whether or not this item is enabled.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '922', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Schema version', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '923', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => "The module's database schema version number. -1 if the module is not installed (its tables do not exist); 0 or the largest N of the module's hook_update_N() function that has either been run or existed when the module was first installed.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '924', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Name of the vocabulary a term is a member of. This will be the vocabulary that whichever term the "Taxonomy: Term" field is; and can similarly cause duplicates.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '925', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The taxonomy vocabulary name', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '926', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Machine-Name of the vocabulary a term is a member of. This will be the vocabulary that whichever term the "Taxonomy: Term" field is; and can similarly cause duplicates.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '927', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Filter the results of "Taxonomy: Term" to a particular vocabulary.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '928', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The taxonomy vocabulary ID', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '929', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The taxonomy vocabulary description', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '930', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The taxonomy vocabulary weight', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '931', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Taxonomy terms are attached to nodes.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '932', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The tid of a taxonomy term.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '933', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Taxonomy term chosen from autocomplete or select widget.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '934', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Representative node', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '935', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Obtains a single representative node for each term, according to a chosen sort criterion.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '936', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The taxonomy term name.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '937', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Taxonomy term name.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '938', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Uncategorized', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '939', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The term weight field', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '940', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The description associated with a taxonomy term.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '941', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Term edit link', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '942', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Provide a simple link to edit the term.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '943', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Content with term', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '944', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Relate all content tagged with a term.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '945', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'node', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '946', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Has taxonomy term ID', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '947', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Display content if it has the selected taxonomy terms.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '948', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Has taxonomy term', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '949', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Parent term', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '950', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The parent term of the term. This can produce duplicate entries if you are using a vocabulary that allows multiple parents.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '951', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Filter the results of "Taxonomy: Term" by the parent pid.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '952', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The parent term of the term.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '953', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Tracker', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '954', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The node ID of the node.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '955', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Whether or not the node is published.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '956', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Tracker - User', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '957', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The node ID of the node a user created or commented on. You must use an argument or filter on UID or you will get misleading results using this field.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '958', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Uid', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '959', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The user ID of a user who touched the node (either created or commented on it).', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '960', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The date the node was last updated or commented on. You must use an argument or filter on UID or you will get misleading results using this field.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '961', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Whether or not the node is published. You must use an argument or filter on UID or you will get misleading results using this field.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '962', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The user ID', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '963', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Content authored', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '964', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Relate content to the user who created it. This relationship will create one record for each content item created by the user.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '965', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'nodes', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '966', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The raw numeric user ID.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '967', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Obtains a single representative node for each user, according to a chosen sort criterion.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '968', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Current', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '969', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Filter the view to the currently logged in user.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '970', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The user or author name.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '971', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Name (raw)', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '972', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The user or author name. This filter does not check if the user exists and allows partial matching. Does not utilize autocomplete.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '973', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'E-mail', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '974', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Email address for a given user. This field is normally not shown to users, so be cautious when using it.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '975', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Language of the user', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '976', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Picture', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '977', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => "The user's picture, if allowed.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '978', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Has Avatar', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '979', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Provide a simple link to the user.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '980', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The date the user was created.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '981', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => "The user's last access date.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '982', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => "The user's last login date.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '983', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Active', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '984', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Whether a user is active or blocked.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '985', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Blocked', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '986', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Signature', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '987', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => "The user's signature.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '988', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Provide a simple link to edit the user.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '989', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Cancel link', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '990', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Provide a simple link to cancel the user.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '991', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Data', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '992', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Provide serialized data of the user', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '993', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Roles', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '994', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Roles that a user belongs to.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '995', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'No role', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '996', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Permission', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '997', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The user permissions.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '998', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Authmap ID', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '999', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The Authmap ID.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1000', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Authentication name', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1001', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The unique authentication name.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1002', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Authentication module', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1003', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The name of the module managing the authentication entry.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1004', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Global', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1005', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Random', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1006', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Randomize the display order.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1007', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Null', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1008', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Allow a contextual filter value to be ignored. The query will not be altered by this contextual filter value. Can be used when contextual filter values come from the URL, and a part of the URL needs to be ignored.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1009', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Custom text', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1010', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Provide custom text or link.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1011', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'View result counter', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1012', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Displays the actual position of the view result', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1013', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Text area', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1014', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Provide markup text for the area.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1015', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Unfiltered text', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1016', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Add unrestricted, custom text or markup. This is similar to the custom text field.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1017', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'View area', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1018', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Insert a view inside an area.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1019', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Result summary', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1020', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Shows result summary, for example the items per page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1021', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Messages', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1022', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Displays messages in the area.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1023', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Contextual Links', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1024', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Display fields in a contextual links menu.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1025', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Dropdown links', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1026', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Displays fields in a dropdown list, like on the views listing page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1027', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Combine fields filter', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1028', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Combine multiple fields together and search by them.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1029', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Math expression', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1030', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Evaluates a mathematical expression and displays it.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1031', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Fields comparison', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1032', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Compare database fields against eachother.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1033', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Use fields comparison to filter the result of the view.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1034', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'New comments', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1035', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The number of new comments on the node.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1036', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Add comment link', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1037', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Display the standard add comment link used on regular nodes, which will only display if the viewing user has access to add a comment.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1038', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Comment status', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1039', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Whether comments are enabled or disabled on the node.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1040', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'User posted or commented', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1041', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Display nodes only if a user posted the node or commented on the node.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1042', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Comments of the node', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1043', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Relate all comments on the node. This will create 1 duplicate record for every comment. Usually if you need this it is better to create a comment view.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1044', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Link to contact page', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1045', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Provide a simple link to the user contact page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1046', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => '@entity using @field', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1047', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Relate each @entity with a @field set to the term.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1048', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Relate each @entity with a @field set to the image.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1049', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Relate each @entity with a @field set to the file.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1050', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => '@entity referencing @target_entity from !field_name', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1051', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Referencing entity', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1052', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'A bridge to the @entity entity that is referencing @target_entity via !field_name', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1053', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The language the content is in.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1054', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Specific language', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1055', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Sort by a specific language that the content is in.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1056', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Taxonomy terms on node', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1057', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Relate nodes to taxonomy terms, specifiying which vocabulary or vocabularies to use. This relationship will cause duplicated records if there are multiple terms.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1058', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'term', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1059', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'All taxonomy terms', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1060', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Display all taxonomy terms associated with a node from specified vocabularies.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1061', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Display content if it has the selected taxonomy terms, or children of the selected terms. Due to additional complexity, this has fewer options than the versions without depth.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1062', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Has taxonomy term ID (with depth)', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1063', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Has taxonomy terms (with depth)', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1064', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Has taxonomy term ID with depth (using joins)', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1065', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Has taxonomy terms with depth (using joins)', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1066', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Has taxonomy term ID depth modifier', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1067', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Allows the "depth" for Taxonomy: Term ID (with depth) to be modified via an additional contextual filter value.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1068', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Content translation', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1069', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Translation set node ID', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1070', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The ID of the translation set the content belongs to.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1071', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Source translation', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1072', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The source that this content was translated from.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1073', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Translations', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1074', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Versions of content in different languages.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1075', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Content that is either untranslated or is the original version of a translation set.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1076', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Node translation', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1077', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Child translation', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1078', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Content that is a translation of a source translation.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1079', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Translation status', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1080', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'The translation status of the content - whether or not the translation needs to be updated.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1081', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Outdated', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1082', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Translate link', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1083', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Provide a simple link to translate the node.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1084', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Renders a single entity in a specific view mode (e.g. teaser).', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1085', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Entity Reference Source', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1086', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Entity Reference list', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1087', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Inline fields', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1088', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Displays the fields with an optional template.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1089', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Display the content with standard node view.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1090', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Content ID from URL', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1091', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Taxonomy term ID from URL', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1092', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Display the user with standard user view.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1093', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'User ID from URL', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1094', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'User ID from logged in user', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1095', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Master', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1096', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Default settings for this view.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1097', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Page', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1098', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Display the view as a page, with a URL and menu links.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1099', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Display the view as a block.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1100', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Attachment', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1101', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Attachments added to other displays to achieve multiple views in the same view.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1102', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Feed', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1103', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Display the view as a feed, such as an RSS feed.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1104', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Embed', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1105', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Provide a display which can be embedded using the views api.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1106', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Empty display extender', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1107', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Unformatted list', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1108', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Displays rows one after another.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1109', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'HTML list', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1110', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Displays rows as an HTML list.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1111', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Grid', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1112', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Displays rows in a grid.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1113', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Table', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1114', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Displays rows in a table.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1115', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'List', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1116', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Displays the default summary as a list.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1117', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Displays the summary unformatted, with option for one after another or inline.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1118', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'RSS Feed', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1119', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Generates an RSS feed from a view.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1120', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Fields', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1121', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Display fields as RSS items.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1122', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Fixed value', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1123', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'PHP Code', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1124', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Raw value from URL', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1125', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Numeric', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1126', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'None', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1127', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Will be available to all users.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1128', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Role', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1129', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Access will be granted to users with any of the specified roles.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1130', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Access will be granted to users with the specified permission string.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1131', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'SQL Query', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1132', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Query will be generated and run using the Drupal database API.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1133', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'No caching of Views data.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1134', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Time-based', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1135', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Simple time-based caching of data.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1136', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Basic', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1137', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Basic exposed form', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1138', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Input required', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1139', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'An exposed form that only renders a view if the form contains user input.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1140', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Display all items', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1141', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Display all items that this view might find', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1142', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Display a specified number of items', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1143', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Display a limited number items that this view might find.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1144', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Paged output, full pager', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1145', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Full', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1146', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Paged output, full Drupal style', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1147', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Paged output, mini pager', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1148', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Mini', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1149', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Use the mini pager output.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1150', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Do not pass admin strings for translation.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1151', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Core', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1152', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => "Use Drupal core t() function. Not recommended, as it doesn't support updates to existing strings.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1153', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => "If you need to translate Views labels into other languages, consider installing the Internationalization package's Views translation module.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1154', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Jump menu', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1155', - 'location' => '/is/system/ajax', - 'textgroup' => 'default', - 'source' => 'Puts all of the results into a select box and allows the user to go to a different page based upon the results.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1156', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', - 'textgroup' => 'default', - 'source' => 'view', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1157', - 'location' => '/is/node/add/paragraphs-migration-test?translation=9&target=is', - 'textgroup' => 'default', - 'source' => '@type %title has been created.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1158', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Your name', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1159', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'View user profile.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1160', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'The content of this field is kept private and will not be shown publicly.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1161', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Homepage', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1162', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Header', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1163', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Highlighted', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1164', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Featured', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1165', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Sidebar first', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1166', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Sidebar second', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1167', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Triptych first', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1168', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Triptych middle', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1169', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Triptych last', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1170', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Footer first column', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1171', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Footer second column', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1172', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Footer third column', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1173', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Footer fourth column', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1174', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Footer', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1175', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'View', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1176', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Outline', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1177', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Track', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1178', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Enter the terms you wish to search for.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1179', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Powered by Drupal', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1180', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'My account', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1181', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Secondary menu', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1182', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Search form', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1183', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Configure block', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1184', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'List links', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1185', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Edit menu', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1186', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Primary tabs', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1187', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => '!local-task-title!active', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1188', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Thu', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1189', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Submitted by !username on !datetime', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1190', - 'location' => '/is/node/10', - 'textgroup' => 'default', - 'source' => 'Add new comment', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1191', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Drupal core update status', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1192', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'There was a problem checking available updates for Drupal.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1193', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'See the available updates page for more information and to install your missing updates.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1194', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Module and theme update status', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1195', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'There was a problem checking available updates for your modules or themes.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1196', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'status', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1197', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'any', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1198', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'published', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1199', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'not published', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1200', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'promoted', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1201', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'not promoted', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1202', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'sticky', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1203', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'not sticky', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1204', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Up to date translation', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1205', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Outdated translation', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1206', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'type', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1207', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'language', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1208', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Show only items where', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1209', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Filter', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1210', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Update options', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1211', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Publish selected content', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1212', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Unpublish selected content', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1213', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Promote selected content to front page', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1214', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Demote selected content from front page', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1215', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Make selected content sticky', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1216', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Make selected content not sticky', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1217', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Delete selected content', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1218', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Operation', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1219', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Update', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1220', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Updated', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1221', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Operations', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1222', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'edit', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1223', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'delete', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1224', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'No content available.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1225', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => '« first', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1226', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => '‹ previous', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1227', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'next ›', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1228', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'last »', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1229', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Update @title', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1230', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Published comments', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1231', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => "Manage your site's book outlines.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1232', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'List and edit site comments and the comment approval queue.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1233', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Unapproved comments (@count)', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1234', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Settings', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1235', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Administration', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1236', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Blocks', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1237', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => "Configure what block content appears in your site's sidebars and other regions.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1238', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Content types', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1239', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Manage content types, including default status, front page promotion, comment settings, etc.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1240', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Menus', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1241', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Add new menus to your site, edit existing menus, and rename and reorganize menu links.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1242', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Taxonomy', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1243', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Manage tagging, categorization, and classification of your content.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1244', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Create a system contact form and set up categories for the form to use.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1245', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Control forum hierarchy settings.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1246', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Triggers', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1247', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Configure when to execute actions.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1248', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Field collections', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1249', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Manage fields on field collections.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1250', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Paragraph Bundles', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1251', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Manage Paragraph bundles', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1252', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'views', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1253', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Views', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1254', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'This action will permanently remove any customizations made to this view.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1255', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'The view has been reverted.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1256', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'This action will permanently remove the view from your database.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1257', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'The view has been deleted.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1258', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Enable', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1259', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Disable', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1260', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Revert', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1261', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Clone', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1262', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Import', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1263', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Export', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1264', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Add a new @plugin', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1265', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Edit @plugin %title', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1266', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Clone @plugin %title', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1267', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Import @plugin', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1268', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Export @plugin %title', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1269', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Are you sure you want to revert %title?', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1270', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'This action will permanently remove any customizations made to this item.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1271', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'The item has been reverted.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1272', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Are you sure you want to delete %title?', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1273', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'This action will permanently remove this item from your database..', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1274', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'The item has been deleted.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1275', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => '%title has been created.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1276', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => '%title could not be created.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1277', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => '%title has been updated.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1278', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => '%title could not be updated.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1279', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'You can import an exported definition by pasting the exported object code into the field below.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1280', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => '@plugin %title was enabled.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1281', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => '@plugin %title was disabled.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1282', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'There are no @titles to display.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1283', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Manage customized lists of content.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1284', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'Remove from %shortcut_set shortcuts', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1285', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'sort by @s', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1286', - 'location' => '/is/admin/content', - 'textgroup' => 'default', - 'source' => 'sort ascending', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1287', - 'location' => '/is/node/9/edit?destination=admin/content', - 'textgroup' => 'default', - 'source' => 'Edit @type @title', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1288', - 'location' => '/is/node/9/edit?destination=admin/content', - 'textgroup' => 'default', - 'source' => 'Translation settings', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1289', - 'location' => '/is/node/9/edit?destination=admin/content', - 'textgroup' => 'default', - 'source' => 'Flag translations as outdated', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1290', - 'location' => '/is/node/9/edit?destination=admin/content', - 'textgroup' => 'default', - 'source' => 'If you made a significant change, which means translations should be updated, you can flag all translations of this post as outdated. This will not change any other property of those posts, like whether they are published or not.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1291', - 'location' => '/is/node/9/translate', - 'textgroup' => 'default', - 'source' => '@language_name (source)', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1292', - 'location' => '/is/node/9/translate', - 'textgroup' => 'default', - 'source' => 'Translations of %title', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1293', - 'location' => '/is/node/9/translate', - 'textgroup' => 'default', - 'source' => 'Translations of a piece of content are managed with translation sets. Each translation set has one source post and any number of translations in any of the enabled languages. All translations are tracked to be up to date or outdated based on whether the source post was modified significantly.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1294', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Field type(s) in use - see Field list', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1295', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Failed to get available update data.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1296', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'About', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1297', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Aggregator module is an on-site syndicator and news reader that gathers and displays fresh content from RSS-, RDF-, and Atom-based feeds made available across the web. Thousands of sites (particularly news sites and blogs) publish their latest headlines in feeds, using a number of standardized XML-based formats. For more information, see the online handbook entry for Aggregator module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1298', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Uses', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1299', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Viewing feeds', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1300', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Feeds contain published content, and may be grouped in categories, generally by topic. Users view feed content in the main aggregator display, or by their source (usually via an RSS feed reader). The most recent content in a feed or category can be displayed as a block through the Blocks administration page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1301', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Adding, editing, and deleting feeds', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1302', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Administrators can add, edit, and delete feeds, and choose how often to check each feed for newly updated items on the Feed aggregator administration page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1303', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'OPML integration', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1304', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'A machine-readable OPML file of all feeds is available. OPML is an XML-based file format used to share outline-structured information such as a list of RSS feeds. Feeds can also be imported via an OPML file.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1305', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Configuring cron', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1306', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'A correctly configured cron maintenance task is required to update feeds automatically.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1307', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Permissions', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1308', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Configure permissions', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1309', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Configure the behavior of the feed aggregator, including when to discard feed items and how to present feed items and categories.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1310', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Aggregates syndicated content (RSS, RDF, and Atom feeds).', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1311', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Block module allows you to create boxes of content, which are rendered into an area, or region, of one or more pages of a website. The core Seven administration theme, for example, implements the regions "Content", "Help", "Dashboard main", and "Dashboard sidebar", and a block may appear in any one of these regions. The Blocks administration page provides a drag-and-drop interface for assigning a block to a region, and for controlling the order of blocks within regions. For more information, see the online handbook entry for Block module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1312', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Positioning content', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1313', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'When working with blocks, remember that all themes do not implement the same regions, or display regions in the same way. Blocks are positioned on a per-theme basis. Users with the Administer blocks permission can disable blocks. Disabled blocks are listed on the Blocks administration page, but are not displayed in any region.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1314', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Controlling visibility', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1315', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Blocks can be configured to be visible only on certain pages, only to users of certain roles, or only on pages displaying certain content types. Administrators can also allow specific blocks to be enabled or disabled by users when they edit their My account page. Some dynamic blocks, such as those generated by modules, will be displayed only on certain pages.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1316', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Creating custom blocks', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1317', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Users with the Administer blocks permission can add custom blocks, which are then listed on the Blocks administration page. Once created, custom blocks behave just like default and module-generated blocks.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1318', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => '@module (disabled)', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1319', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Controls the visual building blocks a page is constructed with. Blocks are boxes of content rendered into an area, or region, of a web page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1320', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => '@module (enabled)', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1321', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Enables language selector for blocks and optional block translation.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1322', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "The Blog module allows registered users to maintain an online journal, or blog. Blogs are made up of individual blog entries. By default, the blog entries are displayed by creation time in descending order, with comments enabled, and are promoted to the site's front page. For more information, see the online handbook entry for Blog module.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1323', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Single-user blogs', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1324', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "Each user's blog entries are automatically displayed with a link to the user's main blog page. You can create as many single-user blogs as you have site users with permission to create blog content.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1325', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Multi-user blogs', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1326', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Blog entries from each single-user blog are also aggregated into one central multi-user blog, which displays the blog content of all users in a single listing.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1327', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "There is an optional Blogs menu item added to the Navigation menu, which displays all blogs available on your site, and a My blog item displaying the current user's blog entries.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1328', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Blog module also creates a default Recent blog posts block that may be enabled at the blocks administration page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1329', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Enables multi-user blogs.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1330', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Book module is used for creating structured, multi-page content, such as site resource guides, manuals, and wikis. It allows you to create content that has chapters, sections, subsections, or any similarly-tiered structure. For more information, see the online handbook entry for Book module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1331', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Adding and managing book content', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1332', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'You can assign separate permissions for creating, editing, and deleting book content, as well as adding content to books, and creating new books. Users with the Administer book outlines permission can add any type of content to a book by selecting the appropriate book outline while editing the content. They can also view a list of all books, and edit and rearrange section titles on the Book administration page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1333', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Book navigation', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1334', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "Book pages have a default book-specific navigation block. This navigation block contains links that lead to the previous and next pages in the book, and to the level above the current page in the book's structure. This block can be enabled on the Blocks administration page. For book pages to show up in the book navigation, they must be added to a book outline.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1335', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Collaboration', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1336', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Books can be created collaboratively, as they allow users with appropriate permissions to add pages into existing books, and add those pages to a custom table of contents menu.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1337', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Printing books', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1338', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "Users with the View printer-friendly books permission can select the printer-friendly version link visible at the bottom of a book page's content to generate a printer-friendly display of the page and all of its subsections.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1339', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Allows users to create and organize related content in an outline.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1340', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Performs bulk exporting of data objects known about by Chaos tools.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1341', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'A library of helpful tools by Merlin of Chaos.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1342', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Shows how to use the power of Chaos AJAX.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1343', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => '@module (missing)', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1344', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Shows how an external module can provide ctools plugins (for Panels, etc.).', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1345', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Color module allows users with the Administer site configuration permission to quickly and easily change the color scheme of themes that have been built to be compatible with it. For more information, see the online handbook entry for Color module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1346', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Changing colors', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1347', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "Using the Color module allows you to easily change the color of links, backgrounds, text, and other theme elements. To change the color settings for a compatible theme, select the Settings link for your theme on the Themes administration page. If you don't see a color picker on that page, then your theme is not compatible with the color module. If you are sure that the theme does indeed support the color module, but the color picker does not appear, then follow these troubleshooting procedures.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1348', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "The Color module saves a modified copy of the theme's specified stylesheets in the files directory. This means that if you make any manual changes to your theme's stylesheet, you must save your color settings again, even if they haven't changed. This step is required because the module stylesheets (in the files directory) need to be recreated to include your changes.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1349', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Allows administrators to change the color scheme of compatible themes.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1350', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Comment module allows users to comment on site content, set commenting defaults and permissions, and moderate comments. For more information, see the online handbook entry for Comment module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1351', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Default and custom settings', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1352', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "Each content type can have its own default comment settings configured as: Open to allow new comments, Hidden to hide existing comments and prevent new comments, or Closed to view existing comments, but prevent new comments. These defaults will apply to all new content created (changes to the settings on existing content must be done manually). Other comment settings can also be customized per content type, and can be overridden for any given item of content. When a comment has no replies, it remains editable by its author, as long as the author has a user account and is logged in.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1353', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Comment approval', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1354', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "Comments from users who have the Skip comment approval permission are published immediately. All other comments are placed in the Unapproved comments queue, until a user who has permission to Administer comments publishes or deletes them. Published comments can be bulk managed on the Published comments administration page.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1355', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Allows users to comment on and discuss published content.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1356', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Contact module allows visitors to contact site administrators and other users. Users specify a subject, write their message, and can have a copy of their message sent to their own e-mail address. For more information, see the online handbook entry for Contact module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1357', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'User contact forms', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1358', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Site users can be contacted with a user contact form that keeps their e-mail address private. Users may enable or disable their personal contact forms by editing their My account page. If enabled, a Contact tab leads to a personal contact form displayed on their user profile. Site administrators are still able to use the contact form, even if has been disabled. The Contact tab is not shown when you view your own profile.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1359', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Site-wide contact forms', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1360', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Contact page provides a simple form for users with the Use the site-wide contact form permission to send comments, feedback, or other requests. You can create categories for directing the contact form messages to a set of defined recipients. Common categories for a business site, for example, might include "Website feedback" (messages are forwarded to website administrators) and "Product information" (messages are forwarded to members of the sales department). E-mail addresses defined within a category are not displayed publicly.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1361', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "When the site-wide contact form is enabled, a link in the main Navigation menu is created, but the link is disabled by default. This menu link can be enabled on the Menus administration page.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1362', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Customization', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1363', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'If you would like additional text to appear on the site-wide or personal contact page, use a block. You can create and edit blocks on the Blocks administration page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1364', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Enables the use of both personal and site-wide contact forms.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1365', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Makes contact categories and replies available for translation.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1366', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Content translation module allows content to be translated into different languages. Working with the Locale module (which manages enabled languages and provides translation for the site interface), the Content translation module is key to creating and maintaining translated site content. For more information, see the online handbook entry for Content translation module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1367', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Configuring content types for translation', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1368', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'To configure a particular content type for translation, visit the Content types page, and click the edit link for the content type. In the Publishing options section, select Enabled, with translation under Multilingual support.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1369', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Assigning a language to content', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1370', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Use the Language drop down to select the appropriate language when creating or editing content.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1371', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Translating content', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1372', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Users with the translate content permission can translate content, if the content type has been configured to allow translations. To translate content, select the Translation tab when viewing the content, select the language for which you wish to provide content, and then enter the content.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1373', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Maintaining translations', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1374', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'If editing content in one language requires that translated versions also be updated to reflect the change, use the Flag translations as outdated check box to mark the translations as outdated and in need of revision. Individual translations may also be marked for revision by selecting the This translation needs to be updated check box on the translation editing form.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1375', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Allows content to be translated into different languages.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1376', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Contextual links module displays links related to regions of pages on your site to users with access contextual links permission. For more information, see the online handbook entry for Contextual links module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1377', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Displaying contextual links', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1378', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Contextual links are supplied by modules, to give you quick access to tasks associated with regions of pages on your site. For instance, if you have a custom menu block displayed in a sidebar of your site, the Blocks and Menus modules will supply links to configure the block and edit the menu. The Contextual links module collects these links into a list for display by your theme, and also adds JavaScript code to the page to hide the links initially, and display them when your mouse hovers over the block.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1379', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Provides contextual links to perform actions related to elements on a page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1380', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Create custom, exportable, reusable content panes for applications like Panels.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1381', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Create custom, exportable, reusable access rulesets for applications like Panels.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1382', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Provides a dashboard page in the administrative interface for organizing administrative tasks and tracking information within your site.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1383', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Database logging module logs system events in the Drupal database. For more information, see the online handbook entry for the Database logging module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1384', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Monitoring your site', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1385', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Database logging module allows you to view an event log on the Recent log messages page. The log is a chronological list of recorded events containing usage data, performance data, errors, warnings and operational information. Administrators should check the log on a regular basis to ensure their site is working properly.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1386', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Debugging site problems', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1387', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'In case of errors or problems with the site, the Recent log messages page can be useful for debugging, since it shows the sequence of events. The log messages include usage information, warnings, and errors.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1388', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Logs and records system events to the database.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1389', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The timezone has been set to @timezone.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1390', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Sunday', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1391', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Monday', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1392', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Tuesday', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1393', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Wednesday', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1394', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Thursday', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1395', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Friday', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1396', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Saturday', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1397', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The first day of the week has been set to @day.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1398', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The medium date format type has been set to @value. You may find it helpful to add new format types like Date, Time, Month, or Year, with appropriate formats, at Date and time settings.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1399', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Dates and calendars can be complicated to set up. If you enable the Date Tools module, it provides a Date Wizard that makes it easy to create a simple date content type with a date field.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1400', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Complete documentation for the Date and Date API modules is available at http://drupal.org/node/92460.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1401', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Makes date/time fields available.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1402', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "Adds 'All Day' functionality to date fields, including an 'All Day' theme and 'All Day' checkboxes for the Date select and Date popup widgets.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1403', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'A Date API that can be used by other modules.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1404', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Adds an option to the Context module to set a context condition based on the value of a date field.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1405', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Examples of migrating with the Date module', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1406', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Enables jquery popup calendars and time entry widgets for selecting dates and times.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1407', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'A Date Repeat API to calculate repeating dates and times from iCal rules.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1408', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Creates the option of Repeating date fields and manages Date fields that use the Date Repeat API.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1409', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Tools to import and auto-create dates and calendars.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1410', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Views integration for date fields and date functionality.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1411', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Defines an email field type.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1412', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Enables modules to work with any entity type and to provide entities.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1413', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Provides a field that can reference other entities.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1414', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Provides some example code for implementing Entity Reference behaviors.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1415', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Provides token replacements for all properties that have no tokens and are known to the entity API.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1416', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Field module allows custom data fields to be defined for entity types (entities include content items, comments, user accounts, and taxonomy terms). The Field module takes care of storing, loading, editing, and rendering field data. Most users will not interact with the Field module directly, but will instead use the Field UI module user interface. Module developers can use the Field API to make new entity types "fieldable" and thus allow fields to be attached to them. For more information, see the online handbook entry for Field module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1417', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Enabling field types', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1418', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Field module provides the infrastructure for fields and field attachment; the field types and input widgets themselves are provided by additional modules. Some of the modules are required; the optional modules can be enabled from the Modules administration page. Drupal core includes the following field type modules: Number (required), Text (required), List (required), Taxonomy (optional), Image (optional), and File (optional); the required Options module provides input widgets for other field modules. Additional fields and widgets may be provided by contributed modules, which you can find in the contributed module section of Drupal.org. Currently enabled field and input widget modules:', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1419', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Managing field data storage', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1420', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Developers of field modules can either use the default Field SQL storage module to store data for their fields, or a contributed or custom module developed using the field storage API.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1421', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Field API to add fields to entities like nodes and users.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1422', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The field collection module provides a field, to which any number of fields can be attached. See the Field module help page for more information about fields.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1423', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Provides a field collection field, to which any number of fields can be attached.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1424', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Field SQL storage module stores field data in the database. It is the default field storage module; other field storage mechanisms may be available as contributed modules. See the Field module help page for more information about fields.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1425', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Stores field data in an SQL database.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1426', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Translate field properties', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1427', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Field UI module provides an administrative user interface (UI) for attaching and managing fields. Fields can be defined at the content-type level for content items and comments, at the vocabulary level for taxonomy terms, and at the site level for user accounts. Other modules may also enable fields to be defined for their data. Field types (text, image, number, etc.) are defined by modules, and collected and managed by the Field module. For more information, see the online handbook entry for Field UI module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1428', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Planning fields', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1429', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'There are several decisions you will need to make before defining a field for content, comments, etc.:', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1430', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'What the field will be called', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1431', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'A field has a label (the name displayed in the user interface) and a machine name (the name used internally). The label can be changed after you create the field, if needed, but the machine name cannot be changed after you have created the field.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1432', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'What type of data the field will store', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1433', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Each field can store one type of data (text, number, file, etc.). When you define a field, you choose a particular field type, which corresponds to the type of data you want to store. The field type cannot be changed after you have created the field.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1434', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'How the data will be input and displayed', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1435', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Each field type has one or more available widgets associated with it; each widget provides a mechanism for data input when you are editing (text box, select list, file upload, etc.). Each field type also has one or more display options, which determine how the field is displayed to site visitors. The widget and display options can be changed after you have created the field.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1436', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'How many values the field will store', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1437', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'You can store one value, a specific maximum number of values, or an unlimited number of values in each field. For example, an employee identification number field might store a single number, whereas a phone number field might store multiple phone numbers. This setting can be changed after you have created the field, but if you reduce the maximum number of values, you may lose information.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1438', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Reusing fields', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1439', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Once you have defined a field, you can reuse it. For example, if you define a custom image field for one content type, and you need to have an image field with the same parameters on another content type, you can add the same field to the second content type, in the Add existing field area of the user interface. You could also add this field to a taxonomy vocabulary, comments, user accounts, etc.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1440', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Some settings of a reused field are unique to each use of the field; others are shared across all places you use the field. For example, the label of a text field is unique to each use, while the setting for the number of values is shared.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1441', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'There are two main reasons for reusing fields. First, reusing fields can save you time over defining new fields. Second, reusing fields also allows you to display, filter, group, and sort content together by field across content types. For example, the contributed Views module allows you to create lists and tables of content. So if you use the same field on multiple content types, you can create a View containing all of those content types together displaying that field, sorted by that field, and/or filtered by that field.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1442', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Fields on content items', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1443', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Fields on content items are defined at the content-type level, on the Manage fields tab of the content type edit page (which you can reach from the Content types page). When you define a field for a content type, each content item of that type will have that field added to it. Some fields, such as the Title and Body, are provided for you when you create a content type, or are provided on content types created by your installation profile.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1444', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Fields on taxonomy terms', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1445', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Fields on taxonomy terms are defined at the taxonomy vocabulary level, on the Manage fields tab of the vocabulary edit page (which you can reach from the Taxonomy page). When you define a field for a vocabulary, each term in that vocabulary will have that field added to it. For example, you could define an image field for a vocabulary to store an icon with each term.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1446', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Fields on user accounts', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1447', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Fields on user accounts are defined on a site-wide basis on the Manage fields tab of the Account settings page. When you define a field for user accounts, each user account will have that field added to it. For example, you could add a long text field to allow users to include a biography.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1448', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Fields on comments', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1449', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Fields on comments are defined at the content-type level, on the Comment fields tab of the content type edit page (which you can reach from the Content types page). When you add a field for comments, each comment on a content item of that type will have that field added to it. For example, you could add a website field to the comments on forum posts, to allow forum commenters to add a link to their website.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1450', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'User interface for the Field API.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1451', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The File module defines a File field type for the Field module, which lets you manage and validate uploaded files attached to content on your site (see the Field module help page for more information about fields). For more information, see the online handbook entry for File module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1452', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Attaching files to content', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1453', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The File module allows users to attach files to content (e.g., PDF files, spreadsheets, etc.), when a File field is added to a given content type using the Field UI module. You can add validation options to your File field, such as specifying a maximum file size and allowed file extensions.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1454', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Managing attachment display', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1455', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'When you attach a file to content, you can specify whether it is listed or not. Listed files are displayed automatically in a section at the bottom of your content; non-listed files are available for embedding in your content, but are not included in the list at the bottom.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1456', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Managing file locations', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1457', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "When you create a File field, you can specify a directory where the files will be stored, which can be within either the public or private files directory. Files in the public directory can be accessed directly through the web server; when public files are listed, direct links to the files are used, and anyone who knows a file's URL can download the file. Files in the private directory are not accessible directly through the web server; when private files are listed, the links are Drupal path requests. This adds to server load and download time, since Drupal must start up and resolve the path for each file download request, but allows for access restrictions.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1458', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Defines a file field type.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1459', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Filter module allows administrators to configure text formats. A text format defines the HTML tags, codes, and other input allowed in content and comments, and is a key feature in guarding against potentially damaging input from malicious users. For more information, see the online handbook entry for Filter module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1460', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Configuring text formats', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1461', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Configure text formats on the Text formats page. Improper text format configuration is a security risk. To ensure security, untrusted users should only have access to text formats that restrict them to either plain text or a safe set of HTML tags, since certain HTML tags can allow embedding malicious links or scripts in text. More trusted registered users may be granted permission to use less restrictive text formats in order to create rich content.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1462', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Applying filters to text', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1463', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Each text format uses filters to manipulate text, and most formats apply several different filters to text in a specific order. Each filter is designed for a specific purpose, and generally either adds, removes, or transforms elements within user-entered text before it is displayed. A filter does not change the actual content, but instead, modifies it temporarily before it is displayed. One filter may remove unapproved HTML tags, while another automatically adds HTML to make URLs display as clickable links.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1464', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Defining text formats', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1465', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'One format is included by default: Plain text (which removes all HTML tags). Additional formats may be created by your installation profile when you install Drupal, and more can be created by an administrator on the Text formats page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1466', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Choosing a text format', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1467', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Users with access to more than one text format can use the Text format fieldset to choose between available text formats when creating or editing multi-line content. Administrators can define the text formats available to each user role, and control the order of formats listed in the Text format fieldset on the Text formats page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1468', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Text formats', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1469', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1470', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Filters content in preparation for display.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1471', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Forum module lets you create threaded discussion forums with functionality similar to other message board systems. Forums are useful because they allow community members to discuss topics with one another while ensuring those conversations are archived for later reference. In a forum, users post topics and threads in nested hierarchies, allowing discussions to be categorized and grouped. The forum hierarchy consists of:', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1472', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Optional containers (for example, Support), which can hold:', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1473', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Forums (for example, Installing Drupal), which can hold:', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1474', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Forum topics submitted by users (for example, How to start a Drupal 6 Multisite), which start discussions and are starting points for:', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1475', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Threaded comments submitted by users (for example, You have these options...).', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1476', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'For more information, see the online handbook entry for Forum module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1477', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Setting up forum structure', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1478', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Visit the Forums page to set up containers and forums to hold your discussion topics.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1479', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Starting a discussion', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1480', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Forum topic link on the Add new content page creates the first post of a new threaded discussion, or thread.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1481', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Enabling the Forum module provides a default Forums menu item in the navigation menu that links to the Forums page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1482', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Moving forum topics', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1483', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'A forum topic (and all of its comments) may be moved between forums by selecting a different forum while editing a forum topic. When moving a forum topic between forums, the Leave shadow copy option creates a link in the original forum pointing to the new location.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1484', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Locking and disabling comments', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1485', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Selecting Closed under Comment settings while editing a forum topic will lock (prevent new comments on) the thread. Selecting Hidden under Comment settings while editing a forum topic will hide all existing comments on the thread, and prevent new ones.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1486', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Provides discussion forums.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1487', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Help module provides Help reference pages and context-sensitive advice to guide you through the use and configuration of modules. It is a starting point for the online Drupal handbooks. The handbooks contain more extensive and up-to-date information, are annotated with user-contributed comments, and serve as the definitive reference point for all Drupal documentation. For more information, see the online handbook entry for the Help module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1488', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Providing a help reference', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1489', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Help module displays explanations for using each module listed on the main Help reference page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1490', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Providing context-sensitive help', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1491', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Help module displays context-sensitive advice and explanations on various pages.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1492', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Manages the display of online help.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1493', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Image module allows you to manipulate images on your website. It exposes a setting for using the Image toolkit, allows you to configure Image styles that can be used for resizing or adjusting images on display, and provides an Image field for attaching images to content. For more information, see the online handbook entry for Image module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1494', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Manipulating images', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1495', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'With the Image module you can scale, crop, resize, rotate and desaturate images without affecting the original image using image styles. When you change an image style, the module automatically refreshes all created images. Every image style must have a name, which will be used in the URL of the generated images. There are two common approaches to naming image styles (which you use will depend on how the image style is being applied):', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1496', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Based on where it will be used: eg. profile-picture', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1497', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Describing its appearance: eg. square-85x85', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1498', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'After you create an image style, you can add effects: crop, scale, resize, rotate, and desaturate (other contributed modules provide additional effects). For example, by combining effects as crop, scale, and desaturate, you can create square, grayscale thumbnails.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1499', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Attaching images to content as fields', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1500', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "Image module also allows you to attach images to content as fields. To add an image field to a content type, go to the content type's manage fields page, and add a new field of type Image. Attaching images to content this way allows image styles to be applied and maintained, and also allows you more flexibility when theming.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1501', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Image styles', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1502', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Configure styles that can be used for resizing or adjusting images on display.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1503', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Provides image manipulation tools.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1504', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'This module improves support for multilingual content in Drupal sites:', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1505', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Shows content depending on page language.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1506', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Handles multilingual variables.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1507', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Extended language option for chosen content types. For these content types transations will be allowed for all defined languages, not only for enabled ones.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1508', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Provides a block for language selection and two theme functions: i18n_flags and i18n_links.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1509', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'This is the base module for several others adding different features:', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1510', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Multilingual menu items.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1511', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Multilingual taxonomy adds a language field for taxonomy vocabularies and terms.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1512', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'For more information, see the online handbook entry for Internationalization module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1513', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Multilingual settings', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1514', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Configure extended options for multilingual content and translations.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1515', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Extends Drupal support for multilingual features.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1516', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Defines simple link field types.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1517', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The List module defines various fields for storing a list of items, for use with the Field module. Usually these items are entered through a select list, checkboxes, or radio buttons. See the Field module help page for more information about fields.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1518', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Defines list field types. Use with Options to create selection lists.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1519', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Locale module allows your Drupal site to be presented in languages other than the default English, and to be multilingual. The Locale module works by maintaining a database of translations, and examining text as it is about to be displayed. When a translation of the text is available in the language to be displayed, the translation is displayed rather than the original text. When a translation is unavailable, the original text is displayed, and then stored for review by a translator. For more information, see the online handbook entry for Locale module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1520', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Translating interface text', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1521', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Translations of text in the Drupal interface may be provided by:', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1522', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "Translating within your site, using the Locale module's integrated translation interface.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1523', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Importing files from a set of existing translations, known as a translation package. A translation package enables the display of a specific version of Drupal in a specific language, and contains files in the Gettext Portable Object (.po) format. Although not all languages are available for every version of Drupal, translation packages for many languages are available for download from the Drupal translations page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1524', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "If an existing translation package does not meet your needs, the Gettext Portable Object (.po) files within a package may be modified, or new .po files may be created, using a desktop Gettext editor. The Locale module's import feature allows the translated strings from a new or modified .po file to be added to your site. The Locale module's export feature generates files from your site's translated strings, that can either be shared with others or edited offline by a Gettext translation editor.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1525', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Configuring a multilingual site', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1526', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "Language negotiation allows your site to automatically change language based on the domain or path used for each request. Users may (optionally) select their preferred language on their My account page, and your site can be configured to honor a web browser's preferred language settings. Site content can be translated using the Content translation module.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1527', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Languages', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1528', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Configure languages for content and the user interface.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1529', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Adds language handling functionality and enables the translation of the user interface to languages other than English.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1530', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Menu module provides an interface for managing menus. A menu is a hierarchical collection of links, which can be within or external to the site, generally used for navigation. Each menu is rendered in a block that can be enabled and positioned through the Blocks administration page. You can view and manage menus on the Menus administration page. For more information, see the online handbook entry for the Menu module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1531', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Managing menus', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1532', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Users with the Administer menus and menu items permission can add, edit and delete custom menus on the Menus administration page. Custom menus can be special site menus, menus of external links, or any combination of internal and external links. You may create an unlimited number of additional menus, each of which will automatically have an associated block. By selecting list links, you can add, edit, or delete links for a given menu. The links listing page provides a drag-and-drop interface for controlling the order of links, and creating a hierarchy within the menu.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1533', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Displaying menus', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1534', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'After you have created a menu, you must enable and position the associated block on the Blocks administration page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1535', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Allows administrators to customize the site navigation menu.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1536', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Supports translatable custom menu items.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1537', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Extended node options for multilingual content', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1538', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Enables multilingual forum, translates names and containers.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1539', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'API module for multilingual content selection', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1540', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Node module manages the creation, editing, deletion, settings, and display of the main site content. Content items managed by the Node module are typically displayed as pages on your site, and include a title, some meta-data (author, creation time, content type, etc.), and optional fields containing text or other data (fields are managed by the Field module). For more information, see the online handbook entry for Node module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1541', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Creating content', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1542', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'When new content is created, the Node module records basic information about the content, including the author, date of creation, and the Content type. It also manages the publishing options, which define whether or not the content is published, promoted to the front page of the site, and/or sticky at the top of content lists. Default settings can be configured for each type of content on your site.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1543', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Creating custom content types', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1544', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Node module gives users with the Administer content types permission the ability to create new content types in addition to the default ones already configured. Creating custom content types allows you the flexibility to add fields and configure default settings that suit the differing needs of various site content.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1545', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Administering content', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1546', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Content administration page allows you to review and bulk manage your site content.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1547', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Creating revisions', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1548', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Node module also enables you to create multiple versions of any content, and revert to older versions using the Revision information settings.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1549', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'User permissions', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1550', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Node module makes a number of permissions available for each content type, which can be set by role on the permissions page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1551', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Allows content to be submitted to the site and displayed on pages.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1552', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Number module defines various numeric field types for the Field module. Numbers can be in integer, decimal, or floating-point form, and they can be formatted when displayed. Number fields can be limited to a specific set of input values or to a range of values. See the Field module help page for more information about fields.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1553', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Defines numeric field types.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1554', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Allows users to log into your site using OpenID.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1555', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Options module defines checkbox, selection, and other input widgets for the Field module. See the Field module help page for more information about fields.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1556', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Defines selection, check box and radio button widgets for text and numeric fields.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1557', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Displays the Drupal administration interface in an overlay.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1558', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Provides a UI and API to manage pages within the site.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1559', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Paragraphs module to control your content flow.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1560', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Allow paragraph bundles to be duplicate for translation.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1561', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Add view / create / update / delete permissions for all paragraph bundles.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1562', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Path module allows you to specify an alias, or custom URL, for any existing internal system path. Aliases should not be confused with URL redirects, which allow you to forward a changed or inactive URL to a new URL. In addition to making URLs more readable, aliases also help search engines index content more effectively. Multiple aliases may be used for a single internal system path. To automate the aliasing of paths, you can install the contributed module Pathauto. For more information, see the online handbook entry for the Path module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1563', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Creating aliases', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1564', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Users with sufficient permissions can create aliases under the URL path settings section when they create or edit content. Some examples of aliases are: ', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1565', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'member/jane-smith aliased to internal path user/123', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1566', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'about-us/team aliased to internal path node/456', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1567', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Managing aliases', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1568', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Path module provides a way to search and view a list of all aliases that are in use on your website. Aliases can be added, edited and deleted through this list.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1569', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'URL aliases', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1570', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "Change your site's URL paths by aliasing them.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1571', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Allows users to rename URLs.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1572', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Define translations for generic paths', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1573', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The phone module allows administrators to define a field type for phone numbers.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1574', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The PHP filter module adds a PHP filter to your site, for use with text formats. This filter adds the ability to execute PHP code in any text field that uses a text format (such as the body of a content item or the text of a comment). PHP is a general-purpose scripting language widely-used for web development, and is the language with which Drupal has been developed. For more information, see the online handbook entry for the PHP filter module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1575', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Enabling execution of PHP in text fields', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1576', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The PHP filter module allows users with the proper permissions to include custom PHP code that will get executed when pages of your site are processed. While this is a powerful and flexible feature if used by a trusted user with PHP experience, it is a significant and dangerous security risk in the hands of a malicious or inexperienced user. Even a trusted user may accidentally compromise the site by entering malformed or incorrect PHP code. Only the most trusted users should be granted permission to use the PHP filter, and all PHP code added through the PHP filter should be carefully examined before use. Example PHP snippets can be found on Drupal.org.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1577', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Allows embedded PHP code/snippets to be evaluated.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1578', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Allows your site to capture votes on different topics in the form of multiple choice questions.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1579', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The RDF module enriches your content with metadata to let other applications (e.g., search engines, aggregators, and so on) better understand its relationships and attributes. This semantically enriched, machine-readable output for Drupal sites uses the RDFa specification which allows RDF data to be embedded in HTML markup. Other modules can define mappings of their data to RDF terms, and the RDF module makes this RDF data available to the theme. The core Drupal modules define RDF mappings for their data model, and the core Drupal themes output this RDF metadata information along with the human-readable visual information. For more information, see the online handbook entry for RDF module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1580', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Enriches your content with metadata to let other applications (e.g. search engines, aggregators) better understand its relationships and attributes.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1581', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Search module provides the ability to index and search for content by exact keywords, and for users by username or e-mail. For more information, see the online handbook entry for Search module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1582', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Searching content and users', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1583', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Users with Use search permission can use the search block and Search page. Users with the View published content permission can search for content containing exact keywords. Users with the View user profiles permission can search for users containing the keyword anywhere in the user name, and users with the Administer users permission can search for users by email address. Additionally, users with Use advanced search permission can find content using more complex search methods and filtering by choosing the Advanced search option on the Search page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1584', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Indexing content with cron', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1585', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'To provide keyword searching, the search engine maintains an index of words found in the content and its fields, along with text added to your content by other modules (such as comments from the core Comment module, and taxonomy terms from the core Taxonomy module). To build and maintain this index, a correctly configured cron maintenance task is required. Users with Administer search permission can further configure the cron settings on the Search settings page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1586', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Content reindexing', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1587', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Content-related actions on your site (creating, editing, or deleting content and comments) automatically cause affected content items to be marked for indexing or reindexing at the next cron run. When content is marked for reindexing, the previous content remains in the index until cron runs, at which time it is replaced by the new content. Unlike content-related actions, actions related to the structure of your site do not cause affected content to be marked for reindexing. Examples of structure-related actions that affect content include deleting or editing taxonomy terms, enabling or disabling modules that add text to content (such as Taxonomy, Comment, and field-providing modules), and modifying the fields or display parameters of your content types. If you take one of these actions and you want to ensure that the search index is updated to reflect your changed site structure, you can mark all content for reindexing by clicking the "Re-index site" button on the Search settings page. If you have a lot of content on your site, it may take several cron runs for the content to be reindexed.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1588', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Configuring search settings', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1589', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Indexing behavior can be adjusted using the Search settings page. Users with Administer search permission can control settings such as the Number of items to index per cron run, Indexing settings (word length), Active search modules, and Content ranking, which lets you adjust the priority in which indexed content is returned in results.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1590', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Search block', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1591', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Search module includes a default Search form block, which can be enabled and configured on the Blocks administration page. The block is available to users with the Search content permission.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1592', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Extending Search module', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1593', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'By default, the Search module only supports exact keyword matching in content searches. You can modify this behavior by installing a language-specific stemming module for your language (such as Porter Stemmer for American English), which allows words such as walk, walking, and walked to be matched in the Search module. Another approach is to use a third-party search technology with stemming or partial word matching features built in, such as Apache Solr or Sphinx. These and other search-related contributed modules can be downloaded by visiting Drupal.org.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1594', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Search settings', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1595', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Configure relevance settings for search and other indexing options.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1596', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Enables site-wide keyword searching.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1597', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Shortcut module allows users to create sets of shortcut links to commonly-visited pages of the site. Shortcuts are contained within sets. Each user with Select any shortcut set permission can select a shortcut set created by anyone at the site. For more information, see the online handbook entry for Shortcut module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1598', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Administering shortcuts', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1599', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Users with the Administer shortcuts permission can manage shortcut sets and edit the shortcuts within sets from the Shortcuts administration page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1600', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Choosing shortcut sets', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1601', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Users with permission to switch shortcut sets can choose a shortcut set to use from the Shortcuts tab of their user account page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1602', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Adding and removing shortcuts', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1603', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Shortcut module creates an add/remove link for each page on your site; the link lets you add or remove the current page from the currently-enabled set of shortcuts (if your theme displays it and you have permission to edit your shortcut set). The core Seven administration theme displays this link next to the page title, as a small + or - sign. If you click on the + sign, you will add that page to your preferred set of shortcuts. If the page is already part of your shortcut set, the link will be a - sign, and will allow you to remove the current page from your shortcut set.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1604', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Displaying shortcuts', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1605', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'You can display your shortcuts by enabling the Shortcuts block on the Blocks administration page. Certain administrative modules also display your shortcuts; for example, the core Toolbar module displays them near the top of the page, along with an Edit shortcuts link.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1606', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Shortcuts', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1607', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Add and modify shortcut sets.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1608', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Allows users to manage customizable lists of shortcut links.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1609', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Statistics module shows you how often a given page is viewed, who viewed it, the previous page the user visited (referrer URL), and when it was viewed. These statistics are useful in determining how users are visiting and navigating your site. For more information, see the online handbook entry for the Statistics module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1610', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Managing logs', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1611', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'To enable collection of statistics, the Enable access log checkbox on the Statistics settings page must be checked. The Discard access logs older than setting on the settings page specifies the length of time entries are kept in the log before they are deleted. This setting requires a correctly configured cron maintenance task to run.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1612', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Viewing site usage', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1613', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Statistics module can help you break down details about your users and how they are using the site. The module offers four reports:', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1614', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Recent hits displays information about the latest activity on your site, including the URL and title of the page that was accessed, the user name (if available) and the IP address of the viewer.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1615', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Top referrers displays where visitors came from (referrer URL).', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1616', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Top pages displays a list of pages ordered by how often they were viewed.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1617', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Top visitors shows you the most active visitors for your site and allows you to ban abusive visitors.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1618', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Displaying popular content', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1619', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The module includes a Popular content block that displays the most viewed pages today and for all time, and the last content viewed. To use the block, enable Count content views on the statistics settings page, and then you can enable and configure the block on the blocks administration page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1620', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Page view counter', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1621', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Statistics module includes a counter for each page that increases whenever the page is viewed. To use the counter, enable Count content views on the statistics settings page, and set the necessary permissions (View content hits) so that the counter is visible to the users.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1622', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Statistics', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1623', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Control details about what and how your site logs access statistics.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1624', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Logs access statistics for your site.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1625', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Provides support for translation of user defined strings.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1626', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Create custom styles for applications such as Panels.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1627', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Synchronizes taxonomy and fields across translations of the same content.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1628', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "The Syslog module logs events by sending messages to the logging facility of your web server's operating system. Syslog is an operating system administrative logging tool that provides valuable information for use in system management and security auditing. Most suited to medium and large sites, Syslog provides filtering tools that allow messages to be routed by type and severity. For more information, see the online handbook entry for Syslog module and PHP's openlog and syslog functions.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1629', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Logging for UNIX, Linux, and Mac OS X', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1630', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'On UNIX, Linux, and Mac OS X, the file /etc/syslog.conf defines the routing configuration. Messages can be flagged with the codes LOG_LOCAL0 through LOG_LOCAL7. For information on Syslog facilities, severity levels, and how to set up syslog.conf, see the syslog.conf manual page on your command line.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1631', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Logging for Microsoft Windows', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1632', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'On Microsoft Windows, messages are always sent to the Event Log using the code LOG_USER.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1633', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Logging and errors', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1634', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "Settings for logging and alerts modules. Various modules can route Drupal's system events to different destinations, such as syslog, database, email, etc.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1635', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Logs and records system events to syslog.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1636', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The System module is integral to the site, and provides basic but extensible functionality for use by other modules and themes. Some integral elements of Drupal are contained in and managed by the System module, including caching, enabling and disabling modules and themes, preparing and displaying the administrative page, and configuring fundamental site settings. A number of key system maintenance operations are also part of the System module. For more information, see the online handbook entry for System module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1637', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Managing modules', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1638', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The System module allows users with the appropriate permissions to enable and disable modules on the Modules administration page. Drupal comes with a number of core modules, and each module provides a discrete set of features and may be enabled or disabled depending on the needs of the site. Many additional modules contributed by members of the Drupal community are available for download at the Drupal.org module page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1639', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Managing themes', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1640', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The System module allows users with the appropriate permissions to enable and disable themes on the Appearance administration page. Themes determine the design and presentation of your site. Drupal comes packaged with several core themes, and additional contributed themes are available at the Drupal.org theme page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1641', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Managing caching', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1642', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "The System module allows users with the appropriate permissions to manage caching on the Performance settings page. Drupal has a robust caching system that allows the efficient re-use of previously-constructed web pages and web page components. Pages requested by anonymous users are stored in a compressed format; depending on your site configuration and the amount of your web traffic tied to anonymous visitors, the caching system may significantly increase the speed of your site.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1643', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Performing system maintenance', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1644', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'In order for the site and its modules to continue to operate well, a set of routine administrative operations must run on a regular basis. The System module manages this task by making use of a system cron job. You can verify the status of cron tasks by visiting the Status report page. For more information, see the online handbook entry for configuring cron jobs. You can set up cron job by visiting Cron configuration page', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1645', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Configuring basic site settings', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1646', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The System module also handles basic configuration options for your site, including Date and time settings, File system settings, Clean URL support, Site name and other information, and a Maintenance mode for taking your site temporarily offline.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1647', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Configuring actions', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1648', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Actions are individual tasks that the system can do, such as unpublishing a piece of content or banning a user. Modules, such as the Trigger module, can fire these actions when certain system events happen; for example, when a new post is added or when a user logs in. Modules may also provide additional actions. Visit the Actions page to configure actions.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1649', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'General system related configuration.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1650', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Handles general site configuration for administrators.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1651', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Taxonomy module allows you to classify the content of your website. To classify content, you define vocabularies that contain related terms, and then assign the vocabularies to content types. For more information, see the online handbook entry for the Taxonomy module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1652', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Creating vocabularies', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1653', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Users with sufficient permissions can create vocabularies and terms through the Taxonomy page. The page listing the terms provides a drag-and-drop interface for controlling the order of the terms and sub-terms within a vocabulary, in a hierarchical fashion. A controlled vocabulary classifying music by genre with terms and sub-terms could look as follows:', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1654', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'vocabulary: Music', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1655', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'term: Jazz', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1656', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'sub-term: Swing', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1657', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'sub-term: Fusion', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1658', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'term: Rock', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1659', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'sub-term: Country rock', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1660', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'sub-term: Hard rock', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1661', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'You can assign a sub-term to multiple parent terms. For example, fusion can be assigned to both rock and jazz.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1662', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Terms in a free-tagging vocabulary can be built gradually as you create or edit content. This is often done used for blogs or photo management applications.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1663', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Assigning vocabularies to content types', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1664', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Before you can use a new vocabulary to classify your content, a new Taxonomy term field must be added to a content type on its manage fields page. When adding a taxonomy field, you choose a widget to use to enter the taxonomy information on the content editing page: a select list, checkboxes, radio buttons, or an auto-complete field (to build a free-tagging vocabulary). After choosing the field type and widget, on the subsequent field settings page you can choose the desired vocabulary, whether one or multiple terms can be chosen from the vocabulary, and other settings. The same vocabulary can be added to multiple content types, by using the "Add existing field" section on the manage fields page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1665', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Classifying content', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1666', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'After the vocabulary is assigned to the content type, you can start classifying content. The field with terms will appear on the content editing screen when you edit or add new content.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1667', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Viewing listings and RSS feeds by term', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1668', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "Each taxonomy term automatically provides a page listing content that has its classification, and a corresponding RSS feed. For example, if the taxonomy term country rock has the ID 123 (you can see this by looking at the URL when hovering on the linked term, which you can click to navigate to the listing page), then you will find this list at the path taxonomy/term/123. The RSS feed will use the path taxonomy/term/123/feed (the RSS icon for this term's listing will automatically display in your browser's address bar when viewing the listing page).", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1669', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Extending Taxonomy module', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1670', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'There are many contributed modules that extend the behavior of the Taxonomy module for both display and organization of terms.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1671', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Enables the categorization of content.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1672', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Enables multilingual taxonomy.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1673', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Controls access to context based upon term depth', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1674', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Testing module provides a framework for running automated unit tests. It can be used to verify a working state of Drupal before and after any code changes, or as a means for developers to write and execute tests for their modules. For more information, see the online handbook entry for Testing module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1675', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Running tests', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1676', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Visit the Testing page to display a list of available tests. For comprehensive testing, select all tests, or individually select tests for more targeted testing. Note that it might take several minutes for all tests to complete. For more information on creating and modifying your own tests, see the Testing API Documentation in the Drupal handbook.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1677', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'After the tests run, a message will be displayed next to each test group indicating whether tests within it passed, failed, or had exceptions. A pass means that the test returned the expected results, while fail means that it did not. An exception normally indicates an error outside of the test, such as a PHP warning or notice. If there were failures or exceptions, the results will be expanded to show details, and the tests that had failures or exceptions will be indicated in red or pink rows. You can then use these results to refine your code and tests, until all tests pass.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1678', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Provides a framework for unit and functional testing.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1679', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "The Text module defines various text field types for the Field module. A text field may contain plain text only, or optionally, may use Drupal's text filters to securely manage HTML output. Text input fields may be either a single line (text field), multiple lines (text area), or for greater input control, a select box, checkbox, or radio buttons. If desired, the field can be validated, so that it is limited to a set of allowed values. See the Field module help page for more information about fields.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1680', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Defines simple text field types.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1681', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Toolbar module displays links to top-level administration menu items and links from other modules at the top of the screen. For more information, see the online handbook entry for Toolbar module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1682', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Displaying administrative links', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1683', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Toolbar module displays a bar containing top-level administrative links across the top of the screen. Below that, the Toolbar module has a drawer section where it displays links provided by other modules, such as the core Shortcut module. The drawer can be hidden/shown by using the show/hide shortcuts link at the end of the toolbar.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1684', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Provides a toolbar that shows the top-level administration menu items and links from other modules.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1685', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Tracker module displays the most recently added and updated content on your site, and allows you to follow new content created by each user. This module has no configuration options. For more information, see the online handbook entry for Tracker module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1686', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Tracker module adds a new menu item to the Navigation menu, called Recent content. You can configure menu items via the Menus administration page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1687', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Tracking new and updated site content', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1688', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "The Recent content page shows new and updated content in reverse chronological order, listing the content type, title, author's name, number of comments, and time of last update. Content is considered updated when changes occur in the text, or when new comments are added. The My recent content tab limits the list to the currently logged-in user.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1689', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Tracking user-specific content', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1690', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "To follow a specific user's new and updated content, select the Track tab from the user's profile page.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1691', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Enables tracking of recent content for users.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1692', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Redirect to translated page when available. SEO for multilingual sites.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1693', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Simple translation sets API for generic objects', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1694', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Trigger module provides the ability to cause actions to run when certain triggers take place on your site. Triggers are events, such as new content being added to your site or a user logging in, and actions are tasks, such as unpublishing content or e-mailing an administrator. For more information, see the online handbook entry for Trigger module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1695', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Configuring triggers and actions', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1696', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The combination of actions and triggers can perform many useful tasks, such as e-mailing an administrator if a user account is deleted, or automatically unpublishing comments that contain certain words. To set up a trigger/action combination, first visit the Actions configuration page, where you can either verify that the action you want is already listed, or create a new advanced action. You will need to set up an advanced action if there are configuration options in your trigger/action combination, such as specifying an e-mail address or a list of banned words. After configuring or verifying your action, visit the Triggers configuration page and choose the appropriate tab (Comment, Taxonomy, etc.), where you can assign the action to run when the trigger event occurs.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1697', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Enables actions to be fired on certain system events, such as when new content is created.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1698', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "The Update manager module periodically checks for new versions of your site's software (including contributed modules and themes), and alerts administrators to available updates. In order to provide update information, anonymous usage statistics are sent to Drupal.org. If desired, you may disable the Update manager module from the Module administration page. For more information, see the online handbook entry for Update manager module.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1699', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Update manager also allows administrators to update and install modules and themes through the administration interface.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1700', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Checking for available updates', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1701', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'A report of available updates will alert you when new releases are available for download. You may configure options for the frequency for checking updates (which are performed during cron runs) and e-mail notifications at the Update manager settings page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1702', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Performing updates through the user interface', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1703', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Update manager module allows administrators to perform updates directly through the administration interface. At the top of the modules and themes pages you will see a link to update to new releases. This will direct you to the update page where you see a listing of all the missing updates and confirm which ones you want to upgrade. From there, you are prompted for your FTP/SSH password, which then transfers the files into your Drupal installation, overwriting your old files. More detailed instructions can be found in the online handbook.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1704', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Installing new modules and themes through the user interface', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1705', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'You can also install new modules and themes in the same fashion, through the install page, or by clicking the Install new module/theme link at the top of the modules and themes pages. In this case, you are prompted to provide either the URL to the download, or to upload a packaged release file from your local computer.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1706', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Checks for available updates, and can securely install or update modules and themes via a web interface.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1707', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The User module allows users to register, log in, and log out. It also allows users with proper permissions to manage user roles (used to classify users) and permissions associated with those roles. For more information, see the online handbook entry for User module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1708', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Creating and managing users', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1709', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The User module allows users with the appropriate permissions to create user accounts through the People administration page, where they can also assign users to one or more roles, and block or delete user accounts. If allowed, users without accounts (anonymous users) can create their own accounts on the Create new account page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1710', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'User roles and permissions', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1711', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Roles are used to group and classify users; each user can be assigned one or more roles. By default there are two roles: anonymous user (users that are not logged in) and authenticated user (users that are registered and logged in). Depending on choices you made when you installed Drupal, the installation process may have defined more roles, and you can create additional custom roles on the Roles page. After creating roles, you can set permissions for each role on the Permissions page. Granting a permission allows users who have been assigned a particular role to perform an action on the site, such as viewing a particular type of content, editing or creating content, administering settings for a particular module, or using a particular function of the site (such as search).', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1712', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Account settings', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1713', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Account settings page allows you to manage settings for the displayed name of the anonymous user role, personal contact forms, user registration, and account cancellation. On this page you can also manage settings for account personalization (including signatures and user pictures), and adapt the text for the e-mail messages that are sent automatically during the user registration process.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1714', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Configure user accounts.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1715', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Manages the user registration and login system.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1716', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Translate emails sent from the User module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1717', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Variable Information and basic variable API', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1718', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Variable Administration UI', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1719', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'An example module showing how to use the Variable API and providing some variables.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1720', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'API to use variable realms from different modules', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1721', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Database storage for variable realms. This is an API module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1722', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Multilingual variables that switch language depending on page language.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1723', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Provides views integration for variable, included a default variable argument.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1724', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Views module provides a back end to fetch information from content, user accounts, taxonomy terms, and other entities from the database and present it to the user as a grid, HTML list, table, unformatted list, etc. The resulting displays are known generally as views.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1725', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'For more information, see the online documentation for the Views.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1726', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'In order to create and modify your own views using the administration and configuration user interface, you will need to enable either the Views UI module in core or a contributed module that provides a user interface for Views. See the Views UI module help page for more information.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1727', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Adding functionality to administrative pages', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1728', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Views module adds functionality to some core administration pages. For example, admin/content uses Views to filter and sort content. With Views uninstalled, admin/content is more limited.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1729', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Expanding Views functionality', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1730', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Contributed projects that support the Views module can be found in the online documentation for Views-related contributed modules..', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1731', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Improving table accessibility', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1732', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Views tables include semantic markup to improve accessibility. Data cells are automatically associated with header cells through id and header attributes. To improve the accessibility of your tables you can add descriptive elements within the Views table settings. The caption element can introduce context for a table, making it easier to understand. The summary element can provide an overview of how the data has been organized and how to navigate the table. Both the caption and summary are visible by default and also implemented according to HTML5 guidelines.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1733', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Create customized lists and queries from your database.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1734', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Allows Views content to be used in Panels, Dashboard and other modules which use the CTools Content API.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1735', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'The Views UI module provides an interface for managing views for the Views module. For more information, see the online documentation for the Views UI module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1736', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Creating and managing views', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1737', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Views can be created from the Views list page by using the "Add view" action. Existing views can be managed from the Views list page by locating the view in the "Enabled" or "Disabled" list and selecting the desired operation action, for example "Edit".', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1738', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Enabling and disabling views', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1739', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Views can be enabled or disabled from the Views list page. To enable a view, find the view within the "Disabled" list and select the "Enable" operation. To disable a view find the view within the "Enabled" list and select the "Disable" operation.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1740', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Exporting and importing views', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1741', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Views can be exported and imported as configuration files by using the Configuration Manager module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1742', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Administrative interface to views. Without this module, you cannot create or edit your views.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1743', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Multilingual - Internationalization', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1744', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Chaos tool suite', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1745', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Date/Time', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1746', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Features', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1747', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Variable', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1748', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Example modules', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1749', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Save configuration', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1750', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Uninstall', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1751', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Install new module', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1752', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => "Download additional contributed modules to extend Drupal's functionality.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1753', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Regularly review and install available updates to maintain a secure and current site. Always run the update script each time a module is updated.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1754', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Required by: !module-list', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1755', - 'location' => '/is/admin/modules', - 'textgroup' => 'default', - 'source' => 'Requires: !module-list', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1756', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'A special cache used to store objects that are being edited; it serves to save state in an ordinarily stateless environment.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1757', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'You must enable the @required module to install @module.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1758', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Some required modules must be enabled', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1759', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Would you like to continue with the above?', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1760', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Continue', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1761', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Cancel', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1762', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'No update data available', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1763', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'No update information available. Run cron or check manually.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1764', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'The PHP module has been disabled. Any existing content that was using the PHP filter will now be visible in plain text. This might pose a security risk by exposing sensitive information, if any, used in the PHP code.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1765', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Determine the language from the URL (Path prefix or domain).', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1766', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Session', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1767', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Determine the language from a request/session parameter.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1768', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => "Follow the user's language preference.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1769', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Browser', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1770', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => "Determine the language from the browser's language settings.", - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1771', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Interface', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1772', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Use the detected interface language.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1773', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'URL fallback', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1774', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Use an already detected language for URLs if none is found.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1775', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Use the default site language (@language_name).', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1776', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'User interface text', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1777', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Order of language detection methods for user interface text. If a translation of user interface text is available in the detected language, it will be displayed.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1778', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Order of language detection methods for content. If a version of content is available in the detected language, it will be displayed.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1779', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Views: Filter by an entity reference view', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1780', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Simple (with optional filter by bundle)', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1781', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Render Views filters as select list', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1782', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Provides a select list for Views filters on this field. This should not be used when there are over 100 entities, as it might cause an out of memory error.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1783', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Fields type(s) in use', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1784', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Publish comment', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1785', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Unpublish comment', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1786', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Unpublish comment containing keyword(s)', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1787', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Save comment', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1788', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Publish content', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1789', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Unpublish content', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1790', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Make content sticky', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1791', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Make content unsticky', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1792', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Promote content to front page', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1793', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Remove content from front page', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1794', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Change the author of content', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1795', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Save content', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1796', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Unpublish content containing keyword(s)', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1797', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Display a message to the user', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1798', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Send e-mail', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1799', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Ban IP address of current user', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1800', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Redirect to URL', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1801', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'Block current user', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1802', - 'location' => '/is/admin/modules/list/confirm', - 'textgroup' => 'default', - 'source' => 'The configuration options have been saved.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1803', - 'location' => '/is', - 'textgroup' => 'default', - 'source' => '', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1804', - 'location' => '/is', - 'textgroup' => 'default', - 'source' => 'Read more about @title', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1805', - 'location' => '/is', - 'textgroup' => 'default', - 'source' => 'Add a new comment to this page.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1806', - 'location' => '/is', - 'textgroup' => 'default', - 'source' => '1 comment', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1807', - 'location' => '/is', - 'textgroup' => 'default', - 'source' => 'Jump to the first comment of this posting.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1808', - 'location' => '/is', - 'textgroup' => 'default', - 'source' => 'Subscribe to !feed-title', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1809', - 'location' => '/is', - 'textgroup' => 'default', - 'source' => 'Author textfield', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1810', - 'location' => '/is', - 'textgroup' => 'default', - 'source' => 'Subject textfield', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1811', - 'location' => '/is', - 'textgroup' => 'default', - 'source' => 'Node module element', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1812', - 'location' => '/is', - 'textgroup' => 'default', - 'source' => 'Term name textfield', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1813', - 'location' => '/is', - 'textgroup' => 'default', - 'source' => 'Term description textarea', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1814', - 'location' => '/is', - 'textgroup' => 'default', - 'source' => 'User name and password', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1815', - 'location' => '/is', - 'textgroup' => 'default', - 'source' => 'User module account form elements.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1816', - 'location' => '/is', - 'textgroup' => 'default', - 'source' => 'Timezone', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1817', - 'location' => '/is', - 'textgroup' => 'default', - 'source' => 'User module timezone form element.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1818', - 'location' => '/is', - 'textgroup' => 'default', - 'source' => 'History', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1819', - 'location' => '/is', - 'textgroup' => 'default', - 'source' => 'User module history view element.', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1820', - 'location' => '/is', - 'textgroup' => 'default', - 'source' => 'Wed', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1821', - 'location' => '/is', - 'textgroup' => 'default', - 'source' => 'Mon', - 'context' => '', - 'version' => '7.56', -)) -->values(array( - 'lid' => '1822', - 'location' => 'field:comment_body:comment_node_page:label', - 'textgroup' => 'field', - 'source' => 'Comment', - 'context' => 'comment_body:comment_node_page:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1823', - 'location' => 'field:comment_body:comment_node_article:label', - 'textgroup' => 'field', - 'source' => 'Comment', - 'context' => 'comment_body:comment_node_article:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1824', - 'location' => 'field:comment_body:comment_node_blog:label', - 'textgroup' => 'field', - 'source' => 'Comment', - 'context' => 'comment_body:comment_node_blog:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1825', - 'location' => 'field:comment_body:comment_node_book:label', - 'textgroup' => 'field', - 'source' => 'Comment', - 'context' => 'comment_body:comment_node_book:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1826', - 'location' => 'field:comment_body:comment_node_forum:label', - 'textgroup' => 'field', - 'source' => 'Comment', - 'context' => 'comment_body:comment_node_forum:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1827', - 'location' => 'field:comment_body:comment_node_test_content_type:label', - 'textgroup' => 'field', - 'source' => 'Comment', - 'context' => 'comment_body:comment_node_test_content_type:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1828', - 'location' => 'field:comment_body:comment_node_paragraphs_migration_test:label', - 'textgroup' => 'field', - 'source' => 'Comment', - 'context' => 'comment_body:comment_node_paragraphs_migration_test:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1829', - 'location' => 'field:body:page:label', - 'textgroup' => 'field', - 'source' => 'Body', - 'context' => 'body:page:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1830', - 'location' => 'field:body:article:label', - 'textgroup' => 'field', - 'source' => 'Body', - 'context' => 'body:article:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1831', - 'location' => 'field:body:blog:label', - 'textgroup' => 'field', - 'source' => 'Body', - 'context' => 'body:blog:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1832', - 'location' => 'field:body:book:label', - 'textgroup' => 'field', - 'source' => 'Body', - 'context' => 'body:book:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1833', - 'location' => 'field:body:forum:label', - 'textgroup' => 'field', - 'source' => 'Body', - 'context' => 'body:forum:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1834', - 'location' => 'field:body:paragraphs_migration_test:label', - 'textgroup' => 'field', - 'source' => 'Body', - 'context' => 'body:paragraphs_migration_test:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1835', - 'location' => 'field:field_tags:article:label', - 'textgroup' => 'field', - 'source' => 'Tags', - 'context' => 'field_tags:article:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1836', - 'location' => 'field:field_tags:article:description', - 'textgroup' => 'field', - 'source' => 'Enter a comma-separated list of words to describe your content.', - 'context' => 'field_tags:article:description', - 'version' => '1', -)) -->values(array( - 'lid' => '1837', - 'location' => 'field:field_image:article:label', - 'textgroup' => 'field', - 'source' => 'Image', - 'context' => 'field_image:article:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1838', - 'location' => 'field:field_image:article:description', - 'textgroup' => 'field', - 'source' => 'Upload an image to go with this article.', - 'context' => 'field_image:article:description', - 'version' => '1', -)) -->values(array( - 'lid' => '1839', - 'location' => 'field:taxonomy_forums:forum:label', - 'textgroup' => 'field', - 'source' => 'Forums', - 'context' => 'taxonomy_forums:forum:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1840', - 'location' => 'field:field_boolean:#allowed_values:0', - 'textgroup' => 'field', - 'source' => 'Off', - 'context' => 'field_boolean:#allowed_values:0', - 'version' => '1', -)) -->values(array( - 'lid' => '1841', - 'location' => 'field:field_boolean:#allowed_values:1', - 'textgroup' => 'field', - 'source' => '1', - 'context' => 'field_boolean:#allowed_values:1', - 'version' => '1', -)) -->values(array( - 'lid' => '1842', - 'location' => 'field:field_boolean:test_content_type:label', - 'textgroup' => 'field', - 'source' => 'Boolean', - 'context' => 'field_boolean:test_content_type:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1843', - 'location' => 'field:field_boolean:test_content_type:description', - 'textgroup' => 'field', - 'source' => 'Some helpful text. ', - 'context' => 'field_boolean:test_content_type:description', - 'version' => '1', -)) -->values(array( - 'lid' => '1844', - 'location' => 'field:field_email:test_content_type:label', - 'textgroup' => 'field', - 'source' => 'Email', - 'context' => 'field_email:test_content_type:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1845', - 'location' => 'field:field_email:test_content_type:description', - 'textgroup' => 'field', - 'source' => 'The email help text.', - 'context' => 'field_email:test_content_type:description', - 'version' => '1', -)) -->values(array( - 'lid' => '1846', - 'location' => 'field:field_email:paragraph_bundle_test:label', - 'textgroup' => 'field', - 'source' => 'Email', - 'context' => 'field_email:paragraph_bundle_test:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1847', - 'location' => 'field:field_phone:test_content_type:label', - 'textgroup' => 'field', - 'source' => 'Phone', - 'context' => 'field_phone:test_content_type:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1848', - 'location' => 'field:field_date:test_content_type:label', - 'textgroup' => 'field', - 'source' => 'Date', - 'context' => 'field_date:test_content_type:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1849', - 'location' => 'field:field_date_with_end_time:test_content_type:label', - 'textgroup' => 'field', - 'source' => 'Date With End Time', - 'context' => 'field_date_with_end_time:test_content_type:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1850', - 'location' => 'field:field_file:test_content_type:label', - 'textgroup' => 'field', - 'source' => 'File', - 'context' => 'field_file:test_content_type:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1851', - 'location' => 'field:field_file:user:label', - 'textgroup' => 'field', - 'source' => 'File', - 'context' => 'field_file:user:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1852', - 'location' => 'field:field_float:test_content_type:label', - 'textgroup' => 'field', - 'source' => 'Float', - 'context' => 'field_float:test_content_type:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1853', - 'location' => 'field:field_float:test_content_type:description', - 'textgroup' => 'field', - 'source' => 'Some floaty help text.', - 'context' => 'field_float:test_content_type:description', - 'version' => '1', -)) -->values(array( - 'lid' => '1854', - 'location' => 'field:field_images:test_content_type:label', - 'textgroup' => 'field', - 'source' => 'Images', - 'context' => 'field_images:test_content_type:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1855', - 'location' => 'field:field_integer:test_content_type:label', - 'textgroup' => 'field', - 'source' => 'Integer', - 'context' => 'field_integer:test_content_type:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1856', - 'location' => 'field:field_integer:comment_node_test_content_type:label', - 'textgroup' => 'field', - 'source' => 'Integer', - 'context' => 'field_integer:comment_node_test_content_type:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1857', - 'location' => 'field:field_integer:test_vocabulary:label', - 'textgroup' => 'field', - 'source' => 'Integer', - 'context' => 'field_integer:test_vocabulary:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1858', - 'location' => 'field:field_integer:user:label', - 'textgroup' => 'field', - 'source' => 'Integer', - 'context' => 'field_integer:user:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1859', - 'location' => 'field:field_link:test_content_type:label', - 'textgroup' => 'field', - 'source' => 'Link', - 'context' => 'field_link:test_content_type:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1860', - 'location' => 'field:field_link:test_content_type:title_value', - 'textgroup' => 'field', - 'source' => 'Unused Static Title', - 'context' => 'field_link:test_content_type:title_value', - 'version' => '1', -)) -->values(array( - 'lid' => '1861', - 'location' => 'field:field_link:article:label', - 'textgroup' => 'field', - 'source' => 'Link', - 'context' => 'field_link:article:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1862', - 'location' => 'field:field_link:article:title_value', - 'textgroup' => 'field', - 'source' => 'Unused Static Title', - 'context' => 'field_link:article:title_value', - 'version' => '1', -)) -->values(array( - 'lid' => '1863', - 'location' => 'field:field_link:blog:label', - 'textgroup' => 'field', - 'source' => 'Link', - 'context' => 'field_link:blog:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1864', - 'location' => 'field:field_link:blog:title_value', - 'textgroup' => 'field', - 'source' => 'Unused Static Title', - 'context' => 'field_link:blog:title_value', - 'version' => '1', -)) -->values(array( - 'lid' => '1865', - 'location' => 'field:field_text_list:#allowed_values:Some Text', - 'textgroup' => 'field', - 'source' => 'Some Text', - 'context' => 'field_text_list:#allowed_values:Some Text', - 'version' => '1', -)) -->values(array( - 'lid' => '1866', - 'location' => 'field:field_text_list:#allowed_values:Some more text', - 'textgroup' => 'field', - 'source' => 'Some more text', - 'context' => 'field_text_list:#allowed_values:Some more text', - 'version' => '1', -)) -->values(array( - 'lid' => '1867', - 'location' => 'field:field_text_list:#allowed_values:The key', - 'textgroup' => 'field', - 'source' => 'The label', - 'context' => 'field_text_list:#allowed_values:The key', - 'version' => '1', -)) -->values(array( - 'lid' => '1868', - 'location' => 'field:field_text_list:test_content_type:label', - 'textgroup' => 'field', - 'source' => 'Text List', - 'context' => 'field_text_list:test_content_type:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1869', - 'location' => 'field:field_integer_list:#allowed_values:1', - 'textgroup' => 'field', - 'source' => '1', - 'context' => 'field_integer_list:#allowed_values:1', - 'version' => '1', -)) -->values(array( - 'lid' => '1870', - 'location' => 'field:field_integer_list:#allowed_values:2', - 'textgroup' => 'field', - 'source' => '2', - 'context' => 'field_integer_list:#allowed_values:2', - 'version' => '1', -)) -->values(array( - 'lid' => '1871', - 'location' => 'field:field_integer_list:#allowed_values:3', - 'textgroup' => 'field', - 'source' => '3', - 'context' => 'field_integer_list:#allowed_values:3', - 'version' => '1', -)) -->values(array( - 'lid' => '1872', - 'location' => 'field:field_integer_list:#allowed_values:6', - 'textgroup' => 'field', - 'source' => '6', - 'context' => 'field_integer_list:#allowed_values:6', - 'version' => '1', -)) -->values(array( - 'lid' => '1873', - 'location' => 'field:field_integer_list:#allowed_values:7', - 'textgroup' => 'field', - 'source' => '9', - 'context' => 'field_integer_list:#allowed_values:7', - 'version' => '1', -)) -->values(array( - 'lid' => '1874', - 'location' => 'field:field_integer_list:test_content_type:label', - 'textgroup' => 'field', - 'source' => 'Integer List', - 'context' => 'field_integer_list:test_content_type:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1875', - 'location' => 'field:field_long_text:test_content_type:label', - 'textgroup' => 'field', - 'source' => 'Long text', - 'context' => 'field_long_text:test_content_type:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1876', - 'location' => 'field:field_term_reference:test_content_type:label', - 'textgroup' => 'field', - 'source' => 'Term Reference', - 'context' => 'field_term_reference:test_content_type:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1877', - 'location' => 'field:field_term_reference:test_vocabulary:label', - 'textgroup' => 'field', - 'source' => 'Term Reference', - 'context' => 'field_term_reference:test_vocabulary:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1878', - 'location' => 'field:field_text:test_content_type:label', - 'textgroup' => 'field', - 'source' => 'Text', - 'context' => 'field_text:test_content_type:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1879', - 'location' => 'field:field_text:paragraph_bundle_test:label', - 'textgroup' => 'field', - 'source' => 'Text', - 'context' => 'field_text:paragraph_bundle_test:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1880', - 'location' => 'field:field_text:field_field_collection_test:label', - 'textgroup' => 'field', - 'source' => 'Field Collection Text', - 'context' => 'field_text:field_field_collection_test:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1881', - 'location' => 'field:field_node_entityreference:test_content_type:label', - 'textgroup' => 'field', - 'source' => 'Node Entity Reference', - 'context' => 'field_node_entityreference:test_content_type:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1882', - 'location' => 'field:field_user_entityreference:test_content_type:label', - 'textgroup' => 'field', - 'source' => 'User Entity Reference', - 'context' => 'field_user_entityreference:test_content_type:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1883', - 'location' => 'field:field_term_entityreference:test_content_type:label', - 'textgroup' => 'field', - 'source' => 'Term Entity Reference', - 'context' => 'field_term_entityreference:test_content_type:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1884', - 'location' => 'field:field_private_file:test_content_type:label', - 'textgroup' => 'field', - 'source' => 'Private file', - 'context' => 'field_private_file:test_content_type:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1885', - 'location' => 'field:field_text_plain:article:label', - 'textgroup' => 'field', - 'source' => 'Text plain', - 'context' => 'field_text_plain:article:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1886', - 'location' => 'field:field_text_plain:page:label', - 'textgroup' => 'field', - 'source' => 'Text plain', - 'context' => 'field_text_plain:page:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1887', - 'location' => 'field:field_text_plain:field_field_collection_test:label', - 'textgroup' => 'field', - 'source' => 'Field Collection Text plain', - 'context' => 'field_text_plain:field_field_collection_test:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1888', - 'location' => 'field:field_text_filtered:article:label', - 'textgroup' => 'field', - 'source' => 'Text filtered', - 'context' => 'field_text_filtered:article:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1889', - 'location' => 'field:field_text_filtered:page:label', - 'textgroup' => 'field', - 'source' => 'Text filtered', - 'context' => 'field_text_filtered:page:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1890', - 'location' => 'field:field_text_plain_filtered:article:label', - 'textgroup' => 'field', - 'source' => 'Text plain and filtered', - 'context' => 'field_text_plain_filtered:article:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1891', - 'location' => 'field:field_text_plain_filtered:page:label', - 'textgroup' => 'field', - 'source' => 'Text plain and filtered', - 'context' => 'field_text_plain_filtered:page:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1892', - 'location' => 'field:field_text_long_plain:article:label', - 'textgroup' => 'field', - 'source' => 'Text long plain', - 'context' => 'field_text_long_plain:article:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1893', - 'location' => 'field:field_text_long_plain:page:label', - 'textgroup' => 'field', - 'source' => 'Text long plain', - 'context' => 'field_text_long_plain:page:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1894', - 'location' => 'field:field_text_long_filtered:article:label', - 'textgroup' => 'field', - 'source' => 'Text long filtered', - 'context' => 'field_text_long_filtered:article:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1895', - 'location' => 'field:field_text_long_filtered:page:label', - 'textgroup' => 'field', - 'source' => 'Text long filtered', - 'context' => 'field_text_long_filtered:page:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1896', - 'location' => 'field:field_text_long_plain_filtered:article:label', - 'textgroup' => 'field', - 'source' => 'Text long plain and filtered', - 'context' => 'field_text_long_plain_filtered:article:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1897', - 'location' => 'field:field_text_long_plain_filtered:page:label', - 'textgroup' => 'field', - 'source' => 'Text long plain and filtered', - 'context' => 'field_text_long_plain_filtered:page:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1898', - 'location' => 'field:field_text_sum_plain:article:label', - 'textgroup' => 'field', - 'source' => 'Text summary plain', - 'context' => 'field_text_sum_plain:article:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1899', - 'location' => 'field:field_text_sum_plain:page:label', - 'textgroup' => 'field', - 'source' => 'Text summary plain', - 'context' => 'field_text_sum_plain:page:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1900', - 'location' => 'field:field_text_sum_filtered:article:label', - 'textgroup' => 'field', - 'source' => 'Text summary filtered', - 'context' => 'field_text_sum_filtered:article:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1901', - 'location' => 'field:field_text_sum_filtered:page:label', - 'textgroup' => 'field', - 'source' => 'Text summary filtered', - 'context' => 'field_text_sum_filtered:page:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1902', - 'location' => 'field:field_text_sum_plain_filtered:article:label', - 'textgroup' => 'field', - 'source' => 'Text summary plain and filtered', - 'context' => 'field_text_sum_plain_filtered:article:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1903', - 'location' => 'field:field_text_sum_plain_filtered:page:label', - 'textgroup' => 'field', - 'source' => 'Text summary plain and filtered', - 'context' => 'field_text_sum_plain_filtered:page:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1904', - 'location' => 'field:field_datetime_without_time:test_content_type:label', - 'textgroup' => 'field', - 'source' => 'Datetime without time', - 'context' => 'field_datetime_without_time:test_content_type:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1905', - 'location' => 'field:field_date_without_time:test_content_type:label', - 'textgroup' => 'field', - 'source' => 'Date without time', - 'context' => 'field_date_without_time:test_content_type:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1906', - 'location' => 'field:field_field_collection_test:paragraphs_migration_test:label', - 'textgroup' => 'field', - 'source' => 'Field Collection Test', - 'context' => 'field_field_collection_test:paragraphs_migration_test:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1907', - 'location' => 'field:field_field_collection_test:paragraphs_migration_test:setting_edit', - 'textgroup' => 'field', - 'source' => 'Edit', - 'context' => 'field_field_collection_test:paragraphs_migration_test:setting_edit', - 'version' => '1', -)) -->values(array( - 'lid' => '1908', - 'location' => 'field:field_field_collection_test:paragraphs_migration_test:setting_translate', - 'textgroup' => 'field', - 'source' => 'translate', - 'context' => 'field_field_collection_test:paragraphs_migration_test:setting_translate', - 'version' => '1', -)) -->values(array( - 'lid' => '1909', - 'location' => 'field:field_field_collection_test:paragraphs_migration_test:setting_delete', - 'textgroup' => 'field', - 'source' => 'Delete', - 'context' => 'field_field_collection_test:paragraphs_migration_test:setting_delete', - 'version' => '1', -)) -->values(array( - 'lid' => '1910', - 'location' => 'field:field_field_collection_test:paragraphs_migration_test:setting_add', - 'textgroup' => 'field', - 'source' => 'Add', - 'context' => 'field_field_collection_test:paragraphs_migration_test:setting_add', - 'version' => '1', -)) -->values(array( - 'lid' => '1911', - 'location' => 'field:field_paragraph_test:paragraphs_migration_test:label', - 'textgroup' => 'field', - 'source' => 'Paragraph Test', - 'context' => 'field_paragraph_test:paragraphs_migration_test:label', - 'version' => '1', -)) -->values(array( - 'lid' => '1912', - 'location' => 'node:type:blog:name', - 'textgroup' => 'node', - 'source' => 'Blog entry', - 'context' => 'type:blog:name', - 'version' => '1', -)) -->values(array( - 'lid' => '1913', - 'location' => 'node:type:blog:title_label', - 'textgroup' => 'node', - 'source' => 'Title', - 'context' => 'type:blog:title_label', - 'version' => '1', -)) -->values(array( - 'lid' => '1914', - 'location' => 'node:type:blog:description', - 'textgroup' => 'node', - 'source' => 'Use for multi-user blogs. Every user gets a personal blog.', - 'context' => 'type:blog:description', - 'version' => '1', -)) -->values(array( - 'lid' => '1915', - 'location' => 'node:type:blog:help', - 'textgroup' => 'node', - 'source' => 'Blog away, good sir!', - 'context' => 'type:blog:help', - 'version' => '1', -)) -->values(array( - 'lid' => '1916', - 'location' => 'node:type:forum:name', - 'textgroup' => 'node', - 'source' => 'Forum topic', - 'context' => 'type:forum:name', - 'version' => '1', -)) -->values(array( - 'lid' => '1917', - 'location' => 'node:type:forum:title_label', - 'textgroup' => 'node', - 'source' => 'Subject', - 'context' => 'type:forum:title_label', - 'version' => '1', -)) -->values(array( - 'lid' => '1918', - 'location' => 'node:type:forum:description', - 'textgroup' => 'node', - 'source' => 'A forum topic starts a new discussion thread within a forum.', - 'context' => 'type:forum:description', - 'version' => '1', -)) -->values(array( - 'lid' => '1919', - 'location' => 'node:type:forum:help', - 'textgroup' => 'node', - 'source' => 'No name-calling, no flame wars. Be nice.', - 'context' => 'type:forum:help', - 'version' => '1', -)) -->values(array( - 'lid' => '1920', - 'location' => 'node:type:article:name', - 'textgroup' => 'node', - 'source' => 'Article', - 'context' => 'type:article:name', - 'version' => '1', -)) -->values(array( - 'lid' => '1921', - 'location' => 'node:type:article:title_label', - 'textgroup' => 'node', - 'source' => 'Title', - 'context' => 'type:article:title_label', - 'version' => '1', -)) -->values(array( - 'lid' => '1922', - 'location' => 'node:type:article:description', - 'textgroup' => 'node', - 'source' => 'Use articles for time-sensitive content like news, press releases or blog posts.', - 'context' => 'type:article:description', - 'version' => '1', -)) -->values(array( - 'lid' => '1923', - 'location' => 'node:type:article:help', - 'textgroup' => 'node', - 'source' => 'Help text for articles', - 'context' => 'type:article:help', - 'version' => '1', -)) -->values(array( - 'lid' => '1924', - 'location' => 'node:type:book:name', - 'textgroup' => 'node', - 'source' => 'Book page', - 'context' => 'type:book:name', - 'version' => '1', -)) -->values(array( - 'lid' => '1925', - 'location' => 'node:type:book:title_label', - 'textgroup' => 'node', - 'source' => 'Title', - 'context' => 'type:book:title_label', - 'version' => '1', -)) -->values(array( - 'lid' => '1926', - 'location' => 'node:type:book:description', - 'textgroup' => 'node', - 'source' => 'Books have a built-in hierarchical navigation. Use for handbooks or tutorials.', - 'context' => 'type:book:description', - 'version' => '1', -)) -->values(array( - 'lid' => '1927', - 'location' => 'node:type:page:name', - 'textgroup' => 'node', - 'source' => 'Basic page', - 'context' => 'type:page:name', - 'version' => '1', -)) -->values(array( - 'lid' => '1928', - 'location' => 'node:type:page:title_label', - 'textgroup' => 'node', - 'source' => 'Title', - 'context' => 'type:page:title_label', - 'version' => '1', -)) -->values(array( - 'lid' => '1929', - 'location' => 'node:type:page:description', - 'textgroup' => 'node', - 'source' => "Use basic pages for your static content, such as an 'About us' page.", - 'context' => 'type:page:description', - 'version' => '1', -)) -->values(array( - 'lid' => '1930', - 'location' => 'node:type:page:help', - 'textgroup' => 'node', - 'source' => 'Help text for basic pages', - 'context' => 'type:page:help', - 'version' => '1', -)) -->values(array( - 'lid' => '1931', - 'location' => 'node:type:paragraphs_migration_test:name', - 'textgroup' => 'node', - 'source' => 'Paragraphs Migration Test', - 'context' => 'type:paragraphs_migration_test:name', - 'version' => '1', -)) -->values(array( - 'lid' => '1932', - 'location' => 'node:type:paragraphs_migration_test:title_label', - 'textgroup' => 'node', - 'source' => 'Title', - 'context' => 'type:paragraphs_migration_test:title_label', - 'version' => '1', -)) -->values(array( - 'lid' => '1933', - 'location' => 'node:type:paragraphs_migration_test:description', - 'textgroup' => 'node', - 'source' => 'Paragraphs migration test content type', - 'context' => 'type:paragraphs_migration_test:description', - 'version' => '1', -)) -->values(array( - 'lid' => '1934', - 'location' => 'node:type:test_content_type:name', - 'textgroup' => 'node', - 'source' => 'Test content type', - 'context' => 'type:test_content_type:name', - 'version' => '1', -)) -->values(array( - 'lid' => '1935', - 'location' => 'node:type:test_content_type:title_label', - 'textgroup' => 'node', - 'source' => 'Title', - 'context' => 'type:test_content_type:title_label', - 'version' => '1', -)) -->values(array( - 'lid' => '1936', - 'location' => 'node:type:test_content_type:description', - 'textgroup' => 'node', - 'source' => 'This is the description of the test content type.', - 'context' => 'type:test_content_type:description', - 'version' => '1', -)) -->values(array( - 'lid' => '1937', - 'location' => 'node:type:test_content_type:help', - 'textgroup' => 'node', - 'source' => 'Help text for test content type', - 'context' => 'type:test_content_type:help', - 'version' => '1', -)) -->values(array( - 'lid' => '1938', - 'location' => 'modules/overlay/overlay-parent.js', - 'textgroup' => 'default', - 'source' => '@title dialog', - 'context' => '', - 'version' => 'none', -)) -->values(array( - 'lid' => '1939', - 'location' => 'modules/overlay/overlay-child.js', - 'textgroup' => 'default', - 'source' => 'Loading', - 'context' => '', - 'version' => 'none', -)) -->execute(); - -$connection->schema()->createTable('locales_target', array( - 'fields' => array( - 'lid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'translation' => array( - 'type' => 'blob', - 'not null' => TRUE, - 'size' => 'normal', - ), - 'language' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '12', - 'default' => '', - ), - 'plid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'plural' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'i18n_status' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - ), - 'primary key' => array( - 'lid', - 'language', - 'plural', - ), - 'mysql_character_set' => 'utf8', -)); - -$connection->schema()->createTable('menu_custom', array( - 'fields' => array( - 'menu_name' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '32', - 'default' => '', - ), - 'title' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'description' => array( - 'type' => 'text', - 'not null' => FALSE, - 'size' => 'normal', - ), - ), - 'primary key' => array( - 'menu_name', - ), - 'mysql_character_set' => 'utf8', -)); - -$connection->insert('menu_custom') -->fields(array( - 'menu_name', - 'title', - 'description', -)) -->values(array( - 'menu_name' => 'main-menu', - 'title' => 'Main menu', - 'description' => 'The Main menu is used on many sites to show the major sections of the site, often in a top navigation bar.', -)) -->values(array( - 'menu_name' => 'management', - 'title' => 'Management', - 'description' => 'The Management menu contains links for administrative tasks.', -)) -->values(array( - 'menu_name' => 'menu-test-menu', - 'title' => 'Test Menu', - 'description' => 'Test menu description.', -)) -->values(array( - 'menu_name' => 'navigation', - 'title' => 'Navigation', - 'description' => 'The Navigation menu contains links intended for site visitors. Links are added to the Navigation menu automatically by some modules.', -)) -->values(array( - 'menu_name' => 'user-menu', - 'title' => 'User menu', - 'description' => "The User menu contains links related to the user's account, as well as the 'Log out' link.", -)) -->execute(); - -$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' => 'normal', - 'default' => '0', - ), - 'external' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'has_children' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'expanded' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'weight' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'depth' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'customized' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - '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' => 'normal', - 'default' => '0', - ), - ), - 'primary key' => array( - 'mlid', - ), - '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' => '3', - 'plid' => '0', - 'link_path' => 'comment/%', - 'router_path' => 'comment/%', - 'link_title' => 'Comment permalink', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '3', - '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:32:"Administer content and comments.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - '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' => '12', - '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' => '12', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'user-menu', - 'mlid' => '13', - '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' => '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' => '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' => '14', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '15', - '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' => '15', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '16', - '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' => '16', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '17', - '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' => '17', - '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/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' => '18', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'user-menu', - 'mlid' => '19', - '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' => '19', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '20', - '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' => '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/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' => '21', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '22', - 'plid' => '0', - 'link_path' => 'comment/reply/%', - 'router_path' => 'comment/reply/%', - 'link_title' => 'Add new comment', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '22', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '23', - 'plid' => '3', - 'link_path' => 'comment/%/approve', - 'router_path' => 'comment/%/approve', - 'link_title' => 'Approve', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '1', - 'depth' => '2', - 'customized' => '0', - 'p1' => '3', - 'p2' => '23', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '24', - 'plid' => '3', - 'link_path' => 'comment/%/delete', - 'router_path' => 'comment/%/delete', - 'link_title' => 'Delete', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '2', - 'depth' => '2', - 'customized' => '0', - 'p1' => '3', - 'p2' => '24', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '25', - 'plid' => '3', - 'link_path' => 'comment/%/edit', - 'router_path' => 'comment/%/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' => '3', - 'p2' => '25', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '26', - 'plid' => '3', - 'link_path' => 'comment/%/view', - 'router_path' => 'comment/%/view', - 'link_title' => 'View comment', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '-10', - 'depth' => '2', - 'customized' => '0', - 'p1' => '3', - 'p2' => '26', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '27', - 'plid' => '17', - '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' => '17', - 'p3' => '27', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '29', - 'plid' => '16', - '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' => '16', - 'p2' => '29', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '30', - 'plid' => '9', - 'link_path' => 'admin/content/comment', - 'router_path' => 'admin/content/comment', - 'link_title' => 'Comments', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:59:"List and edit site comments and the comment approval queue.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '9', - 'p3' => '30', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '32', - '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' => '32', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '33', - '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' => '33', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '34', - 'plid' => '20', - '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' => '20', - 'p3' => '34', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '36', - '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' => '36', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '37', - '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' => '37', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '38', - 'plid' => '16', - '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' => '16', - 'p2' => '38', - 'p3' => '0', - '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/%/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' => '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' => '15', - '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' => '15', - 'p3' => '40', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '41', - 'plid' => '17', - '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' => '17', - 'p3' => '41', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '42', - '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' => '42', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '43', - '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' => '43', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '45', - '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' => '45', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '46', - 'plid' => '17', - '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' => '17', - 'p3' => '46', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '48', - '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' => '48', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '49', - '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' => '49', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '50', - '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' => '50', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '51', - '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' => '51', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '52', - 'plid' => '18', - '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' => '18', - 'p3' => '52', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '53', - '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' => '53', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '56', - 'plid' => '15', - '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' => '15', - '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/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' => '1', - 'expanded' => '0', - 'weight' => '-15', - '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' => 'navigation', - 'mlid' => '58', - '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' => '58', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '59', - 'plid' => '16', - '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' => '16', - 'p2' => '59', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '60', - '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' => '60', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '61', - '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' => '61', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '66', - 'plid' => '45', - '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' => '45', - 'p4' => '66', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '67', - 'plid' => '53', - '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' => '53', - 'p4' => '67', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '69', - 'plid' => '34', - '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' => '20', - 'p3' => '34', - 'p4' => '69', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '71', - 'plid' => '51', - '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' => '51', - 'p4' => '71', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '72', - 'plid' => '50', - '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' => '50', - 'p4' => '72', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '73', - 'plid' => '53', - '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' => '53', - 'p4' => '73', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '74', - 'plid' => '48', - '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' => '48', - 'p4' => '74', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '76', - 'plid' => '43', - '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' => '43', - 'p4' => '76', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '78', - 'plid' => '51', - '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' => '51', - 'p4' => '78', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '79', - 'plid' => '51', - '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' => '51', - 'p4' => '79', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '80', - 'plid' => '45', - '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' => '45', - 'p4' => '80', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '81', - 'plid' => '43', - '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' => '43', - 'p4' => '81', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '82', - 'plid' => '40', - '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' => '15', - 'p3' => '40', - 'p4' => '82', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '83', - 'plid' => '34', - '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' => '20', - 'p3' => '34', - 'p4' => '83', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '85', - 'plid' => '37', - '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' => '37', - 'p4' => '85', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '86', - 'plid' => '37', - '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' => '37', - 'p4' => '86', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '89', - 'plid' => '37', - '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' => '37', - 'p4' => '89', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '90', - 'plid' => '46', - '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' => '17', - 'p3' => '46', - 'p4' => '90', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '93', - 'plid' => '30', - 'link_path' => 'admin/content/comment/new', - 'router_path' => 'admin/content/comment/new', - 'link_title' => 'Published comments', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '-10', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '9', - 'p3' => '30', - 'p4' => '93', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '94', - 'plid' => '60', - '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' => '60', - '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/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' => '48', - 'p4' => '95', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '96', - 'plid' => '46', - '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' => '17', - 'p3' => '46', - 'p4' => '96', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '98', - 'plid' => '51', - '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' => '51', - 'p4' => '98', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '99', - 'plid' => '53', - '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' => '53', - 'p4' => '99', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '100', - 'plid' => '51', - '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' => '51', - 'p4' => '100', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '101', - 'plid' => '33', - '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' => '33', - 'p4' => '101', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '102', - 'plid' => '30', - 'link_path' => 'admin/content/comment/approval', - 'router_path' => 'admin/content/comment/approval', - 'link_title' => 'Unapproved comments', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '9', - 'p3' => '30', - 'p4' => '102', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '103', - 'plid' => '56', - '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' => '15', - 'p3' => '56', - 'p4' => '103', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '104', - 'plid' => '38', - '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' => '16', - 'p2' => '38', - 'p3' => '104', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '105', - 'plid' => '101', - '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' => '33', - 'p4' => '101', - 'p5' => '105', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '110', - 'plid' => '101', - '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' => '33', - 'p4' => '101', - 'p5' => '110', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '112', - 'plid' => '67', - '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' => '53', - 'p4' => '67', - 'p5' => '112', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '114', - 'plid' => '34', - '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' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '116', - 'plid' => '74', - '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' => '48', - 'p4' => '74', - 'p5' => '116', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '118', - 'plid' => '101', - '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' => '33', - 'p4' => '101', - 'p5' => '118', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '119', - 'plid' => '67', - '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' => '53', - 'p4' => '67', - 'p5' => '119', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '124', - 'plid' => '66', - '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' => '45', - 'p4' => '66', - 'p5' => '124', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '127', - 'plid' => '74', - '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' => '48', - 'p4' => '74', - 'p5' => '127', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '128', - 'plid' => '49', - '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' => '49', - 'p3' => '128', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '129', - 'plid' => '49', - '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' => '49', - 'p3' => '129', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '130', - 'plid' => '49', - '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' => '49', - 'p3' => '130', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '143', - 'plid' => '127', - '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' => '48', - 'p4' => '74', - 'p5' => '127', - 'p6' => '143', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '144', - 'plid' => '116', - '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' => '48', - 'p4' => '74', - 'p5' => '116', - 'p6' => '144', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '147', - 'plid' => '29', - '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' => '16', - 'p2' => '29', - 'p3' => '147', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '148', - 'plid' => '114', - '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' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '148', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '149', - 'plid' => '80', - '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' => '45', - 'p4' => '80', - 'p5' => '149', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '150', - 'plid' => '67', - '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' => '53', - 'p4' => '67', - 'p5' => '150', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '153', - 'plid' => '96', - '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' => '17', - 'p3' => '46', - 'p4' => '96', - 'p5' => '153', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '154', - 'plid' => '105', - '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' => '33', - 'p4' => '101', - 'p5' => '105', - 'p6' => '154', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '155', - 'plid' => '114', - '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' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '155', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '158', - 'plid' => '96', - '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' => '17', - 'p3' => '46', - 'p4' => '96', - 'p5' => '158', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '161', - 'plid' => '114', - 'link_path' => 'admin/structure/types/manage/%/comment/display', - 'router_path' => 'admin/structure/types/manage/%/comment/display', - 'link_title' => 'Comment display', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '4', - 'depth' => '5', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '161', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '162', - 'plid' => '114', - 'link_path' => 'admin/structure/types/manage/%/comment/fields', - 'router_path' => 'admin/structure/types/manage/%/comment/fields', - 'link_title' => 'Comment fields', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '3', - 'depth' => '5', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '162', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '165', - 'plid' => '116', - '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' => '48', - 'p4' => '74', - 'p5' => '116', - 'p6' => '165', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '166', - 'plid' => '127', - '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' => '48', - 'p4' => '74', - 'p5' => '127', - 'p6' => '166', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '167', - 'plid' => '116', - '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' => '48', - 'p4' => '74', - 'p5' => '116', - 'p6' => '167', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '176', - 'plid' => '0', - 'link_path' => 'taxonomy/term/%', - 'router_path' => 'taxonomy/term/%', - 'link_title' => 'Taxonomy term', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '176', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '180', - 'plid' => '20', - 'link_path' => 'admin/structure/taxonomy', - 'router_path' => 'admin/structure/taxonomy', - 'link_title' => 'Taxonomy', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:67:"Manage tagging, categorization, and classification of your content.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '180', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '210', - 'plid' => '176', - 'link_path' => 'taxonomy/term/%/edit', - 'router_path' => 'taxonomy/term/%/edit', - 'link_title' => 'Edit', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '10', - 'depth' => '2', - 'customized' => '0', - 'p1' => '176', - 'p2' => '210', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '211', - 'plid' => '176', - 'link_path' => 'taxonomy/term/%/view', - 'router_path' => 'taxonomy/term/%/view', - 'link_title' => 'View', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '176', - 'p2' => '211', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '212', - 'plid' => '180', - 'link_path' => 'admin/structure/taxonomy/%', - 'router_path' => 'admin/structure/taxonomy/%', - 'link_title' => '', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '180', - 'p4' => '212', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '213', - 'plid' => '180', - 'link_path' => 'admin/structure/taxonomy/add', - 'router_path' => 'admin/structure/taxonomy/add', - 'link_title' => 'Add vocabulary', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '180', - 'p4' => '213', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '214', - 'plid' => '43', - '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' => '43', - 'p4' => '214', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '215', - 'plid' => '180', - 'link_path' => 'admin/structure/taxonomy/list', - 'router_path' => 'admin/structure/taxonomy/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' => '20', - 'p3' => '180', - 'p4' => '215', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '221', - 'plid' => '214', - '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' => '43', - 'p4' => '214', - 'p5' => '221', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '222', - 'plid' => '212', - 'link_path' => 'admin/structure/taxonomy/%/add', - 'router_path' => 'admin/structure/taxonomy/%/add', - 'link_title' => 'Add term', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '5', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '180', - 'p4' => '212', - 'p5' => '222', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '224', - 'plid' => '212', - 'link_path' => 'admin/structure/taxonomy/%/edit', - 'router_path' => 'admin/structure/taxonomy/%/edit', - 'link_title' => 'Edit', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '-10', - 'depth' => '5', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '180', - 'p4' => '212', - 'p5' => '224', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '226', - 'plid' => '212', - 'link_path' => 'admin/structure/taxonomy/%/list', - 'router_path' => 'admin/structure/taxonomy/%/list', - 'link_title' => 'List', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '-20', - 'depth' => '5', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '180', - 'p4' => '212', - 'p5' => '226', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '228', - 'plid' => '214', - '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' => '43', - 'p4' => '214', - 'p5' => '228', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '235', - 'plid' => '214', - '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' => '43', - 'p4' => '214', - 'p5' => '235', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '237', - 'plid' => '214', - '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' => '43', - 'p4' => '214', - 'p5' => '237', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '238', - 'plid' => '214', - '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' => '43', - 'p4' => '214', - 'p5' => '238', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '240', - 'plid' => '235', - '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' => '43', - 'p4' => '214', - 'p5' => '235', - 'p6' => '240', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '241', - 'plid' => '235', - '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' => '43', - 'p4' => '214', - 'p5' => '235', - 'p6' => '241', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '242', - 'plid' => '241', - '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' => '43', - 'p4' => '214', - 'p5' => '235', - 'p6' => '241', - 'p7' => '242', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'shortcut-set-1', - 'mlid' => '243', - 'plid' => '0', - 'link_path' => 'node/add', - 'router_path' => 'node/add', - 'link_title' => 'Add content', - 'options' => 'a:0:{}', - 'module' => 'menu', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '-20', - 'depth' => '1', - 'customized' => '0', - 'p1' => '243', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'shortcut-set-1', - 'mlid' => '244', - 'plid' => '0', - 'link_path' => 'admin/content', - 'router_path' => 'admin/content', - 'link_title' => 'Find content', - 'options' => 'a:0:{}', - 'module' => 'menu', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '-19', - 'depth' => '1', - 'customized' => '0', - 'p1' => '244', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'main-menu', - 'mlid' => '245', - 'plid' => '0', - 'link_path' => '', - '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' => '245', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '246', - '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 articles 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' => '246', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '247', - 'plid' => '6', - 'link_path' => 'node/add/page', - 'router_path' => 'node/add/page', - 'link_title' => 'Basic page', - 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:77:\"Use basic pages for your static content, such as an 'About us' page.\";}}", - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '6', - 'p2' => '247', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '350', - 'plid' => '6', - 'link_path' => 'node/add/book', - 'router_path' => 'node/add/book', - 'link_title' => 'Book page', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:87:"Books have a built-in hierarchical navigation. Use for handbooks or tutorials.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '6', - 'p2' => '350', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '354', - 'plid' => '8', - 'link_path' => 'admin/config/date', - 'router_path' => 'admin/config/date', - 'link_title' => 'Date API', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:42:"Settings for modules the use the Date API.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '-10', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '354', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '392', - 'plid' => '33', - 'link_path' => 'admin/config/content/email', - 'router_path' => 'admin/config/content/email', - 'link_title' => 'Email Contact Form Settings', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:57:"Administer flood control settings for email contact forms";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '33', - 'p4' => '392', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '395', - 'plid' => '48', - 'link_path' => 'admin/config/regional/language', - 'router_path' => 'admin/config/regional/language', - 'link_title' => 'Languages', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:55:"Configure languages for content and the user interface.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '-10', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '48', - 'p4' => '395', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '413', - 'plid' => '48', - 'link_path' => 'admin/config/regional/translate', - 'router_path' => 'admin/config/regional/translate', - 'link_title' => 'Translate interface', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:59:"Translate the built in interface and optionally other text.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '-5', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '48', - 'p4' => '413', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '418', - 'plid' => '395', - 'link_path' => 'admin/config/regional/language/add', - 'router_path' => 'admin/config/regional/language/add', - 'link_title' => 'Add language', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '5', - 'depth' => '5', - 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '48', - 'p4' => '395', - 'p5' => '418', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '422', - 'plid' => '395', - 'link_path' => 'admin/config/regional/language/configure', - 'router_path' => 'admin/config/regional/language/configure', - 'link_title' => 'Detection and selection', - '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' => '48', - 'p4' => '395', - 'p5' => '422', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '424', - 'plid' => '413', - 'link_path' => 'admin/config/regional/translate/export', - 'router_path' => 'admin/config/regional/translate/export', - 'link_title' => 'Export', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '30', - 'depth' => '5', - 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '48', - 'p4' => '413', - 'p5' => '424', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '425', - 'plid' => '413', - 'link_path' => 'admin/config/regional/translate/import', - 'router_path' => 'admin/config/regional/translate/import', - 'link_title' => 'Import', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '20', - 'depth' => '5', - 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '48', - 'p4' => '413', - 'p5' => '425', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '427', - 'plid' => '395', - 'link_path' => 'admin/config/regional/language/overview', - 'router_path' => 'admin/config/regional/language/overview', - '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' => '48', - 'p4' => '395', - 'p5' => '427', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '429', - 'plid' => '74', - 'link_path' => 'admin/config/regional/date-time/locale', - 'router_path' => 'admin/config/regional/date-time/locale', - 'link_title' => 'Localize', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:38:"Configure date formats for each locale";}}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '-8', - 'depth' => '5', - 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '48', - 'p4' => '74', - 'p5' => '429', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '430', - 'plid' => '413', - 'link_path' => 'admin/config/regional/translate/overview', - 'router_path' => 'admin/config/regional/translate/overview', - 'link_title' => 'Overview', - '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' => '48', - 'p4' => '413', - 'p5' => '430', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '433', - 'plid' => '413', - 'link_path' => 'admin/config/regional/translate/translate', - 'router_path' => 'admin/config/regional/translate/translate', - 'link_title' => 'Translate', - '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' => '48', - 'p4' => '413', - 'p5' => '433', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '440', - 'plid' => '395', - 'link_path' => 'admin/config/regional/language/delete/%', - 'router_path' => 'admin/config/regional/language/delete/%', - 'link_title' => 'Confirm', - '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' => '48', - 'p4' => '395', - 'p5' => '440', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '441', - 'plid' => '413', - 'link_path' => 'admin/config/regional/translate/delete/%', - 'router_path' => 'admin/config/regional/translate/delete/%', - 'link_title' => 'Delete string', - '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' => '48', - 'p4' => '413', - 'p5' => '441', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '444', - 'plid' => '395', - 'link_path' => 'admin/config/regional/language/edit/%', - 'router_path' => 'admin/config/regional/language/edit/%', - 'link_title' => 'Edit language', - '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' => '48', - 'p4' => '395', - 'p5' => '444', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '445', - 'plid' => '413', - 'link_path' => 'admin/config/regional/translate/edit/%', - 'router_path' => 'admin/config/regional/translate/edit/%', - 'link_title' => 'Edit string', - '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' => '48', - 'p4' => '413', - 'p5' => '445', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '449', - 'plid' => '422', - 'link_path' => 'admin/config/regional/language/configure/session', - 'router_path' => 'admin/config/regional/language/configure/session', - 'link_title' => 'Session language detection configuration', - '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' => '48', - 'p4' => '395', - 'p5' => '422', - 'p6' => '449', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '451', - 'plid' => '422', - 'link_path' => 'admin/config/regional/language/configure/url', - 'router_path' => 'admin/config/regional/language/configure/url', - 'link_title' => 'URL language detection configuration', - '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' => '48', - 'p4' => '395', - 'p5' => '422', - 'p6' => '451', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '461', - 'plid' => '429', - 'link_path' => 'admin/config/regional/date-time/locale/%/edit', - 'router_path' => 'admin/config/regional/date-time/locale/%/edit', - 'link_title' => 'Localize date formats', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:38:"Configure date formats for each locale";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '6', - 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '48', - 'p4' => '74', - 'p5' => '429', - 'p6' => '461', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '463', - 'plid' => '429', - 'link_path' => 'admin/config/regional/date-time/locale/%/reset', - 'router_path' => 'admin/config/regional/date-time/locale/%/reset', - 'link_title' => 'Reset date formats', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:47:"Reset localized date formats to global defaults";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '6', - 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '48', - 'p4' => '74', - 'p5' => '429', - 'p6' => '463', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '465', - 'plid' => '6', - 'link_path' => 'node/add/test-content-type', - 'router_path' => 'node/add/test-content-type', - 'link_title' => 'Test content type', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:49:"This is the description of the test content type.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '6', - 'p2' => '465', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'menu-test-menu', - 'mlid' => '467', - 'plid' => '469', - 'link_path' => 'http://google.com', - 'router_path' => '', - 'link_title' => 'Google', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:6:"Google";}}', - 'module' => 'menu', - 'hidden' => '0', - 'external' => '1', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '1', - 'p1' => '469', - 'p2' => '467', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'menu-test-menu', - 'mlid' => '468', - 'plid' => '0', - 'link_path' => 'http://yahoo.com', - 'router_path' => '', - 'link_title' => 'Yahoo', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:5:"Yahoo";}}', - 'module' => 'menu', - 'hidden' => '0', - 'external' => '1', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '1', - 'p1' => '468', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'menu-test-menu', - 'mlid' => '469', - 'plid' => '0', - 'link_path' => 'http://bing.com', - 'router_path' => '', - 'link_title' => 'Bing', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:4:"Bing";}}', - 'module' => 'menu', - 'hidden' => '0', - 'external' => '1', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '1', - 'p1' => '469', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'menu-test-menu', - 'mlid' => '470', - 'plid' => '469', - 'link_path' => 'http://ask.com', - 'router_path' => '', - 'link_title' => 'Ask', - 'options' => 'a:0:{}', - 'module' => 'menu', - 'hidden' => '0', - 'external' => '1', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '1', - 'p1' => '469', - 'p2' => '470', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'shortcut-set-2', - 'mlid' => '473', - 'plid' => '0', - 'link_path' => 'admin/people', - 'router_path' => 'admin/people', - 'link_title' => 'People', - 'options' => 'a:0:{}', - 'module' => 'menu', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '-50', - 'depth' => '1', - 'customized' => '0', - 'p1' => '473', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '474', - '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' => '474', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '478', - 'plid' => '20', - 'link_path' => 'admin/content', - 'router_path' => 'admin/content', - 'link_title' => 'custom link test', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:0:"";}}', - 'module' => 'menu', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '1', - 'p1' => '1', - 'p2' => '20', - 'p3' => '478', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '479', - 'plid' => '0', - 'link_path' => 'node/2', - 'router_path' => 'node/%', - 'link_title' => 'node link test', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:6:"node 2";}}', - 'module' => 'menu', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '3', - 'depth' => '1', - 'customized' => '1', - 'p1' => '479', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '481', - 'plid' => '20', - 'link_path' => 'admin/structure/paragraphs', - 'router_path' => 'admin/structure/paragraphs', - 'link_title' => 'Paragraph Bundles', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:24:"Manage Paragraph bundles";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '481', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '488', - 'plid' => '481', - 'link_path' => 'admin/structure/paragraphs/add', - 'router_path' => 'admin/structure/paragraphs/add', - 'link_title' => 'Add Paragraph Bundle', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '481', - 'p4' => '488', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '491', - 'plid' => '481', - 'link_path' => 'admin/structure/paragraphs/%', - 'router_path' => 'admin/structure/paragraphs/%', - 'link_title' => 'Edit paragraph bundle', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '481', - 'p4' => '491', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '494', - 'plid' => '481', - 'link_path' => 'admin/structure/paragraphs/list', - 'router_path' => 'admin/structure/paragraphs/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' => '20', - 'p3' => '481', - 'p4' => '494', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '501', - 'plid' => '491', - 'link_path' => 'admin/structure/paragraphs/%/delete', - 'router_path' => 'admin/structure/paragraphs/%/delete', - 'link_title' => 'Delete Paragraph Bundle', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '5', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '481', - 'p4' => '491', - 'p5' => '501', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '502', - 'plid' => '491', - 'link_path' => 'admin/structure/paragraphs/%/edit', - 'router_path' => 'admin/structure/paragraphs/%/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' => '20', - 'p3' => '481', - 'p4' => '491', - 'p5' => '502', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '524', - 'plid' => '6', - 'link_path' => 'node/add/paragraphs-migration-test', - 'router_path' => 'node/add/paragraphs-migration-test', - 'link_title' => 'Paragraphs Migration Test', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:38:"Paragraphs migration test content type";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '6', - 'p2' => '524', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '525', - 'plid' => '0', - 'link_path' => 'field-collection/field-field-collection-test/%', - 'router_path' => 'field-collection/field-field-collection-test/%', - 'link_title' => '', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '525', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '526', - 'plid' => '525', - 'link_path' => 'field-collection/field-field-collection-test/%/delete', - 'router_path' => 'field-collection/field-field-collection-test/%/delete', - 'link_title' => 'Delete', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '525', - 'p2' => '526', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '527', - 'plid' => '525', - 'link_path' => 'field-collection/field-field-collection-test/%/edit', - 'router_path' => 'field-collection/field-field-collection-test/%/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' => '525', - 'p2' => '527', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '528', - 'plid' => '525', - 'link_path' => 'field-collection/field-field-collection-test/%/view', - 'router_path' => 'field-collection/field-field-collection-test/%/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' => '525', - 'p2' => '528', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '530', - 'plid' => '0', - 'link_path' => 'field-collection/field-field-collection-test/add/%/%', - 'router_path' => 'field-collection/field-field-collection-test/add/%/%', - 'link_title' => '', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '530', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '531', - 'plid' => '525', - 'link_path' => 'field-collection/field-field-collection-test/%/revisions/%', - 'router_path' => 'field-collection/field-field-collection-test/%/revisions/%', - 'link_title' => '', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '525', - 'p2' => '531', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '541', - 'plid' => '0', - 'link_path' => 'blog', - 'router_path' => 'blog', - 'link_title' => 'Blogs', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '1', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '541', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '542', - 'plid' => '0', - 'link_path' => 'book', - 'router_path' => 'book', - 'link_title' => 'Books', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '542', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '543', - 'plid' => '0', - 'link_path' => 'aggregator', - 'router_path' => 'aggregator', - 'link_title' => 'Feed aggregator', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '5', - 'depth' => '1', - 'customized' => '0', - 'p1' => '543', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '544', - 'plid' => '543', - 'link_path' => 'aggregator/categories', - 'router_path' => 'aggregator/categories', - 'link_title' => 'Categories', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '543', - 'p2' => '544', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '545', - 'plid' => '541', - 'link_path' => 'blog/%', - 'router_path' => 'blog/%', - 'link_title' => 'My blog', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '541', - 'p2' => '545', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '546', - 'plid' => '543', - 'link_path' => 'aggregator/sources', - 'router_path' => 'aggregator/sources', - 'link_title' => 'Sources', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '543', - 'p2' => '546', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '547', - 'plid' => '544', - 'link_path' => 'aggregator/categories/%', - 'router_path' => 'aggregator/categories/%', - 'link_title' => '', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '543', - 'p2' => '544', - 'p3' => '547', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '548', - 'plid' => '546', - 'link_path' => 'aggregator/sources/%', - 'router_path' => 'aggregator/sources/%', - 'link_title' => '', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '543', - 'p2' => '546', - 'p3' => '548', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '549', - 'plid' => '20', - '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' => '20', - 'p3' => '549', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '550', - 'plid' => '6', - 'link_path' => 'node/add/blog', - 'router_path' => 'node/add/blog', - 'link_title' => 'Blog entry', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:58:"Use for multi-user blogs. Every user gets a personal blog.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '6', - 'p2' => '550', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '551', - 'plid' => '9', - 'link_path' => 'admin/content/book', - 'router_path' => 'admin/content/book', - 'link_title' => 'Books', - 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Manage your site's book outlines.\";}}", - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '9', - 'p3' => '551', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '552', - 'plid' => '5', - 'link_path' => 'node/%/outline', - 'router_path' => 'node/%/outline', - 'link_title' => 'Outline', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '2', - 'depth' => '2', - 'customized' => '0', - 'p1' => '5', - 'p2' => '552', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '553', - 'plid' => '547', - 'link_path' => 'aggregator/categories/%/categorize', - 'router_path' => 'aggregator/categories/%/categorize', - 'link_title' => 'Categorize', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '543', - 'p2' => '544', - 'p3' => '547', - 'p4' => '553', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '554', - 'plid' => '548', - 'link_path' => 'aggregator/sources/%/categorize', - 'router_path' => 'aggregator/sources/%/categorize', - 'link_title' => 'Categorize', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '543', - 'p2' => '546', - 'p3' => '548', - 'p4' => '554', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '555', - 'plid' => '547', - 'link_path' => 'aggregator/categories/%/configure', - 'router_path' => 'aggregator/categories/%/configure', - 'link_title' => 'Configure', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '1', - 'depth' => '4', - 'customized' => '0', - 'p1' => '543', - 'p2' => '544', - 'p3' => '547', - 'p4' => '555', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '556', - 'plid' => '548', - 'link_path' => 'aggregator/sources/%/configure', - 'router_path' => 'aggregator/sources/%/configure', - 'link_title' => 'Configure', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '1', - 'depth' => '4', - 'customized' => '0', - 'p1' => '543', - 'p2' => '546', - 'p3' => '548', - 'p4' => '556', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '557', - 'plid' => '547', - 'link_path' => 'aggregator/categories/%/view', - 'router_path' => 'aggregator/categories/%/view', - 'link_title' => 'View', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '-10', - 'depth' => '4', - 'customized' => '0', - 'p1' => '543', - 'p2' => '544', - 'p3' => '547', - 'p4' => '557', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '558', - 'plid' => '548', - 'link_path' => 'aggregator/sources/%/view', - 'router_path' => 'aggregator/sources/%/view', - 'link_title' => 'View', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '-10', - 'depth' => '4', - 'customized' => '0', - 'p1' => '543', - 'p2' => '546', - 'p3' => '548', - 'p4' => '558', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '559', - 'plid' => '549', - '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' => '20', - 'p3' => '549', - 'p4' => '559', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '560', - 'plid' => '60', - 'link_path' => 'admin/config/services/aggregator', - 'router_path' => 'admin/config/services/aggregator', - 'link_title' => 'Feed aggregator', - 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:116:\"Configure which content your site aggregates from other sites, how often it polls them, and how they're categorized.\";}}", - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '10', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '60', - 'p4' => '560', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '561', - 'plid' => '551', - 'link_path' => 'admin/content/book/list', - 'router_path' => 'admin/content/book/list', - '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' => '9', - 'p3' => '551', - 'p4' => '561', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '562', - 'plid' => '552', - 'link_path' => 'node/%/outline/remove', - 'router_path' => 'node/%/outline/remove', - 'link_title' => 'Remove from outline', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '5', - 'p2' => '552', - 'p3' => '562', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '563', - 'plid' => '551', - 'link_path' => 'admin/content/book/settings', - 'router_path' => 'admin/content/book/settings', - 'link_title' => 'Settings', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '8', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '9', - 'p3' => '551', - 'p4' => '563', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '564', - 'plid' => '549', - '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' => '20', - 'p3' => '549', - 'p4' => '564', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '565', - 'plid' => '549', - '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' => '20', - 'p3' => '549', - 'p4' => '565', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '566', - 'plid' => '560', - 'link_path' => 'admin/config/services/aggregator/list', - 'router_path' => 'admin/config/services/aggregator/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' => '60', - 'p4' => '560', - 'p5' => '566', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '567', - 'plid' => '560', - 'link_path' => 'admin/config/services/aggregator/settings', - 'router_path' => 'admin/config/services/aggregator/settings', - 'link_title' => 'Settings', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:129:"Configure the behavior of the feed aggregator, including when to discard feed items and how to present feed items and categories.";}}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '5', - 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '60', - 'p4' => '560', - 'p5' => '567', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '568', - 'plid' => '549', - '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' => '20', - 'p3' => '549', - 'p4' => '568', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '569', - 'plid' => '549', - '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' => '20', - 'p3' => '549', - 'p4' => '569', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '570', - 'plid' => '565', - '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' => '20', - 'p3' => '549', - 'p4' => '565', - 'p5' => '570', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '571', - 'plid' => '568', - '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' => '20', - 'p3' => '549', - 'p4' => '568', - 'p5' => '571', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '572', - 'plid' => '569', - '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' => '20', - 'p3' => '549', - 'p4' => '569', - 'p5' => '572', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '573', - 'plid' => '560', - 'link_path' => 'admin/config/services/aggregator/add/category', - 'router_path' => 'admin/config/services/aggregator/add/category', - 'link_title' => 'Add category', - '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' => '60', - 'p4' => '560', - 'p5' => '573', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '574', - 'plid' => '560', - 'link_path' => 'admin/config/services/aggregator/add/feed', - 'router_path' => 'admin/config/services/aggregator/add/feed', - 'link_title' => 'Add feed', - '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' => '60', - 'p4' => '560', - 'p5' => '574', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '575', - 'plid' => '549', - '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' => '20', - 'p3' => '549', - 'p4' => '575', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '576', - 'plid' => '560', - 'link_path' => 'admin/config/services/aggregator/add/opml', - 'router_path' => 'admin/config/services/aggregator/add/opml', - 'link_title' => 'Import OPML', - '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' => '60', - 'p4' => '560', - 'p5' => '576', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '577', - 'plid' => '560', - 'link_path' => 'admin/config/services/aggregator/remove/%', - 'router_path' => 'admin/config/services/aggregator/remove/%', - 'link_title' => 'Remove items', - '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' => '60', - 'p4' => '560', - 'p5' => '577', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '578', - 'plid' => '560', - 'link_path' => 'admin/config/services/aggregator/update/%', - 'router_path' => 'admin/config/services/aggregator/update/%', - 'link_title' => 'Update items', - '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' => '60', - 'p4' => '560', - 'p5' => '578', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '579', - 'plid' => '575', - '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' => '20', - 'p3' => '549', - 'p4' => '575', - 'p5' => '579', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '580', - 'plid' => '575', - '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' => '20', - 'p3' => '549', - 'p4' => '575', - 'p5' => '580', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '581', - 'plid' => '560', - 'link_path' => 'admin/config/services/aggregator/edit/category/%', - 'router_path' => 'admin/config/services/aggregator/edit/category/%', - 'link_title' => 'Edit category', - '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' => '60', - 'p4' => '560', - 'p5' => '581', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '582', - 'plid' => '560', - 'link_path' => 'admin/config/services/aggregator/edit/feed/%', - 'router_path' => 'admin/config/services/aggregator/edit/feed/%', - 'link_title' => 'Edit feed', - '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' => '60', - 'p4' => '560', - 'p5' => '582', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '583', - 'plid' => '0', - 'link_path' => 'contact', - 'router_path' => 'contact', - 'link_title' => 'Contact', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '583', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '584', - 'plid' => '0', - 'link_path' => 'forum', - 'router_path' => 'forum', - 'link_title' => 'Forums', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '584', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '585', - 'plid' => '584', - 'link_path' => 'forum/%', - 'router_path' => 'forum/%', - 'link_title' => 'Forums', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '584', - 'p2' => '585', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '586', - 'plid' => '1', - 'link_path' => 'admin/dashboard', - 'router_path' => 'admin/dashboard', - 'link_title' => 'Dashboard', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:34:"View and customize your dashboard.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '-15', - 'depth' => '2', - 'customized' => '0', - 'p1' => '1', - 'p2' => '586', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '587', - 'plid' => '1', - 'link_path' => 'admin/help', - 'router_path' => 'admin/help', - 'link_title' => 'Help', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:48:"Reference for usage, configuration, and modules.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '9', - 'depth' => '2', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '588', - 'plid' => '586', - 'link_path' => 'admin/dashboard/configure', - 'router_path' => 'admin/dashboard/configure', - 'link_title' => 'Configure available dashboard blocks', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:53:"Configure which blocks can be shown on the dashboard.";}}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '586', - 'p3' => '588', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '589', - 'plid' => '16', - 'link_path' => 'user/%/contact', - 'router_path' => 'user/%/contact', - 'link_title' => 'Contact', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '2', - 'depth' => '2', - 'customized' => '0', - 'p1' => '16', - 'p2' => '589', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '590', - 'plid' => '15', - 'link_path' => 'admin/modules/install', - 'router_path' => 'admin/modules/install', - 'link_title' => 'Install new module', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '25', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '15', - 'p3' => '590', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '591', - 'plid' => '7', - 'link_path' => 'admin/appearance/install', - 'router_path' => 'admin/appearance/install', - 'link_title' => 'Install new theme', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '25', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '7', - 'p3' => '591', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '592', - 'plid' => '15', - 'link_path' => 'admin/modules/update', - 'router_path' => 'admin/modules/update', - 'link_title' => 'Update', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '10', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '15', - 'p3' => '592', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '593', - 'plid' => '7', - 'link_path' => 'admin/appearance/update', - 'router_path' => 'admin/appearance/update', - 'link_title' => 'Update', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '10', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '7', - 'p3' => '593', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '594', - 'plid' => '18', - 'link_path' => 'admin/reports/updates', - 'router_path' => 'admin/reports/updates', - 'link_title' => 'Available updates', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:82:"Get a status report about available updates for your installed modules and themes.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '-50', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '18', - 'p3' => '594', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '595', - 'plid' => '20', - 'link_path' => 'admin/structure/contact', - 'router_path' => 'admin/structure/contact', - 'link_title' => 'Contact form', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:71:"Create a system contact form and set up categories for the form to use.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '595', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '596', - 'plid' => '586', - 'link_path' => 'admin/dashboard/customize', - 'router_path' => 'admin/dashboard/customize', - 'link_title' => 'Customize dashboard', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:25:"Customize your dashboard.";}}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '586', - 'p3' => '596', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '597', - 'plid' => '20', - 'link_path' => 'admin/structure/field-collections', - 'router_path' => 'admin/structure/field-collections', - 'link_title' => 'Field collections', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:35:"Manage fields on field collections.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '597', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '598', - 'plid' => '18', - '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' => '18', - 'p3' => '598', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '599', - 'plid' => '6', - 'link_path' => 'node/add/forum', - 'router_path' => 'node/add/forum', - 'link_title' => 'Forum topic', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:69:"A forum topic starts a new discussion thread within a forum.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '6', - 'p2' => '599', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '600', - 'plid' => '20', - 'link_path' => 'admin/structure/forum', - 'router_path' => 'admin/structure/forum', - 'link_title' => 'Forums', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:33:"Control forum hierarchy settings.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '600', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '601', - 'plid' => '20', - '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' => '20', - 'p3' => '601', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '602', - 'plid' => '16', - 'link_path' => 'user/%/openid', - 'router_path' => 'user/%/openid', - 'link_title' => 'OpenID identities', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '16', - 'p2' => '602', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '603', - 'plid' => '18', - 'link_path' => 'admin/reports/hits', - 'router_path' => 'admin/reports/hits', - 'link_title' => 'Recent hits', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"View pages that have recently been visited.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '18', - 'p3' => '603', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '604', - 'plid' => '18', - 'link_path' => 'admin/reports/dblog', - 'router_path' => 'admin/reports/dblog', - 'link_title' => 'Recent log messages', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"View events that have recently been logged.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '-1', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '18', - 'p3' => '604', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '605', - 'plid' => '18', - 'link_path' => 'admin/reports/access-denied', - 'router_path' => 'admin/reports/access-denied', - 'link_title' => "Top 'access denied' errors", - 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:35:\"View 'access denied' errors (403s).\";}}", - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '18', - 'p3' => '605', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '606', - 'plid' => '18', - 'link_path' => 'admin/reports/page-not-found', - 'router_path' => 'admin/reports/page-not-found', - 'link_title' => "Top 'page not found' errors", - 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"View 'page not found' errors (404s).\";}}", - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '18', - 'p3' => '606', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '607', - 'plid' => '18', - 'link_path' => 'admin/reports/pages', - 'router_path' => 'admin/reports/pages', - 'link_title' => 'Top pages', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:41:"View pages that have been hit frequently.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '1', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '18', - 'p3' => '607', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '608', - 'plid' => '18', - 'link_path' => 'admin/reports/referrers', - 'router_path' => 'admin/reports/referrers', - 'link_title' => 'Top referrers', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:19:"View top referrers.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '18', - 'p3' => '608', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '609', - 'plid' => '18', - 'link_path' => 'admin/reports/visitors', - 'router_path' => 'admin/reports/visitors', - 'link_title' => 'Top visitors', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:34:"View visitors that hit many pages.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '2', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '18', - 'p3' => '609', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '610', - 'plid' => '5', - 'link_path' => 'node/%/track', - 'router_path' => 'node/%/track', - 'link_title' => 'Track', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '2', - 'depth' => '2', - 'customized' => '0', - 'p1' => '5', - 'p2' => '610', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '611', - 'plid' => '5', - 'link_path' => 'node/%/translate', - 'router_path' => 'node/%/translate', - 'link_title' => 'Translate', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '2', - 'depth' => '2', - 'customized' => '0', - 'p1' => '5', - 'p2' => '611', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '612', - 'plid' => '20', - 'link_path' => 'admin/structure/trigger', - 'router_path' => 'admin/structure/trigger', - 'link_title' => 'Triggers', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:34:"Configure when to execute actions.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '612', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '613', - 'plid' => '587', - 'link_path' => 'admin/help/aggregator', - 'router_path' => 'admin/help/aggregator', - 'link_title' => 'aggregator', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '613', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '614', - 'plid' => '587', - 'link_path' => 'admin/help/block', - 'router_path' => 'admin/help/block', - 'link_title' => 'block', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '614', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '615', - 'plid' => '587', - 'link_path' => 'admin/help/blog', - 'router_path' => 'admin/help/blog', - 'link_title' => 'blog', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '615', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '616', - 'plid' => '587', - 'link_path' => 'admin/help/book', - 'router_path' => 'admin/help/book', - 'link_title' => 'book', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '616', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '617', - 'plid' => '587', - 'link_path' => 'admin/help/color', - 'router_path' => 'admin/help/color', - 'link_title' => 'color', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '617', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '618', - 'plid' => '587', - 'link_path' => 'admin/help/comment', - 'router_path' => 'admin/help/comment', - 'link_title' => 'comment', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '618', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '619', - 'plid' => '587', - 'link_path' => 'admin/help/contact', - 'router_path' => 'admin/help/contact', - 'link_title' => 'contact', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '619', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '620', - 'plid' => '587', - 'link_path' => 'admin/help/contextual', - 'router_path' => 'admin/help/contextual', - 'link_title' => 'contextual', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '620', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '621', - 'plid' => '587', - 'link_path' => 'admin/help/dashboard', - 'router_path' => 'admin/help/dashboard', - 'link_title' => 'dashboard', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '621', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '622', - 'plid' => '587', - 'link_path' => 'admin/help/date', - 'router_path' => 'admin/help/date', - 'link_title' => 'date', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '622', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '623', - 'plid' => '587', - 'link_path' => 'admin/help/dblog', - 'router_path' => 'admin/help/dblog', - 'link_title' => 'dblog', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '623', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '624', - 'plid' => '587', - 'link_path' => 'admin/help/field', - 'router_path' => 'admin/help/field', - 'link_title' => 'field', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '624', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '625', - 'plid' => '587', - 'link_path' => 'admin/help/field_collection', - 'router_path' => 'admin/help/field_collection', - 'link_title' => 'field_collection', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '625', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '626', - 'plid' => '587', - 'link_path' => 'admin/help/field_sql_storage', - 'router_path' => 'admin/help/field_sql_storage', - 'link_title' => 'field_sql_storage', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '626', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '627', - 'plid' => '587', - 'link_path' => 'admin/help/field_ui', - 'router_path' => 'admin/help/field_ui', - 'link_title' => 'field_ui', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '627', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '628', - 'plid' => '587', - 'link_path' => 'admin/help/file', - 'router_path' => 'admin/help/file', - 'link_title' => 'file', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '628', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '629', - 'plid' => '587', - 'link_path' => 'admin/help/filter', - 'router_path' => 'admin/help/filter', - 'link_title' => 'filter', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '629', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '630', - 'plid' => '587', - 'link_path' => 'admin/help/forum', - 'router_path' => 'admin/help/forum', - 'link_title' => 'forum', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '630', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '631', - 'plid' => '587', - 'link_path' => 'admin/help/help', - 'router_path' => 'admin/help/help', - 'link_title' => 'help', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '631', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '632', - 'plid' => '587', - 'link_path' => 'admin/help/i18n', - 'router_path' => 'admin/help/i18n', - 'link_title' => 'i18n', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '632', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '633', - 'plid' => '587', - 'link_path' => 'admin/help/i18n_node', - 'router_path' => 'admin/help/i18n_node', - 'link_title' => 'i18n_node', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '633', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '634', - 'plid' => '587', - 'link_path' => 'admin/help/i18n_string', - 'router_path' => 'admin/help/i18n_string', - 'link_title' => 'i18n_string', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '634', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '635', - 'plid' => '587', - 'link_path' => 'admin/help/image', - 'router_path' => 'admin/help/image', - 'link_title' => 'image', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '635', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '636', - 'plid' => '587', - 'link_path' => 'admin/help/list', - 'router_path' => 'admin/help/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' => '587', - 'p3' => '636', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '637', - 'plid' => '587', - 'link_path' => 'admin/help/locale', - 'router_path' => 'admin/help/locale', - 'link_title' => 'locale', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '637', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '638', - 'plid' => '587', - 'link_path' => 'admin/help/menu', - 'router_path' => 'admin/help/menu', - 'link_title' => 'menu', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '638', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '639', - 'plid' => '587', - 'link_path' => 'admin/help/node', - 'router_path' => 'admin/help/node', - 'link_title' => 'node', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '639', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '640', - 'plid' => '587', - 'link_path' => 'admin/help/number', - 'router_path' => 'admin/help/number', - 'link_title' => 'number', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '640', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '641', - 'plid' => '587', - 'link_path' => 'admin/help/openid', - 'router_path' => 'admin/help/openid', - 'link_title' => 'openid', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '641', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '642', - 'plid' => '587', - 'link_path' => 'admin/help/options', - 'router_path' => 'admin/help/options', - 'link_title' => 'options', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '642', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '643', - 'plid' => '587', - 'link_path' => 'admin/help/php', - 'router_path' => 'admin/help/php', - 'link_title' => 'php', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '643', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '644', - 'plid' => '587', - 'link_path' => 'admin/help/simpletest', - 'router_path' => 'admin/help/simpletest', - 'link_title' => 'simpletest', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '644', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '645', - 'plid' => '587', - 'link_path' => 'admin/help/statistics', - 'router_path' => 'admin/help/statistics', - 'link_title' => 'statistics', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '645', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '646', - 'plid' => '587', - 'link_path' => 'admin/help/syslog', - 'router_path' => 'admin/help/syslog', - 'link_title' => 'syslog', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '646', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '647', - 'plid' => '587', - 'link_path' => 'admin/help/system', - 'router_path' => 'admin/help/system', - 'link_title' => 'system', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '647', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '648', - 'plid' => '587', - 'link_path' => 'admin/help/taxonomy', - 'router_path' => 'admin/help/taxonomy', - 'link_title' => 'taxonomy', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '648', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '649', - 'plid' => '587', - 'link_path' => 'admin/help/text', - 'router_path' => 'admin/help/text', - 'link_title' => 'text', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '649', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '650', - 'plid' => '587', - 'link_path' => 'admin/help/translation', - 'router_path' => 'admin/help/translation', - 'link_title' => 'translation', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '650', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '651', - 'plid' => '587', - 'link_path' => 'admin/help/trigger', - 'router_path' => 'admin/help/trigger', - 'link_title' => 'trigger', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '651', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '652', - 'plid' => '587', - 'link_path' => 'admin/help/update', - 'router_path' => 'admin/help/update', - 'link_title' => 'update', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '652', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '653', - 'plid' => '587', - 'link_path' => 'admin/help/user', - 'router_path' => 'admin/help/user', - 'link_title' => 'user', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '653', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '654', - 'plid' => '587', - 'link_path' => 'admin/help/views', - 'router_path' => 'admin/help/views', - 'link_title' => 'views', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '654', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '655', - 'plid' => '595', - 'link_path' => 'admin/structure/contact/add', - 'router_path' => 'admin/structure/contact/add', - 'link_title' => 'Add category', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '1', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '595', - 'p4' => '655', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '656', - 'plid' => '601', - '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' => '20', - 'p3' => '601', - 'p4' => '656', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '657', - 'plid' => '612', - 'link_path' => 'admin/structure/trigger/comment', - 'router_path' => 'admin/structure/trigger/comment', - 'link_title' => 'Comment', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '612', - 'p4' => '657', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '658', - 'plid' => '602', - 'link_path' => 'user/%/openid/delete', - 'router_path' => 'user/%/openid/delete', - 'link_title' => 'Delete OpenID', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '16', - 'p2' => '602', - 'p3' => '658', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '659', - 'plid' => '18', - 'link_path' => 'admin/reports/event/%', - 'router_path' => 'admin/reports/event/%', - 'link_title' => 'Details', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '18', - 'p3' => '659', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '660', - 'plid' => '18', - 'link_path' => 'admin/reports/access/%', - 'router_path' => 'admin/reports/access/%', - 'link_title' => 'Details', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:16:"View access log.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '18', - 'p3' => '660', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '661', - 'plid' => '600', - 'link_path' => 'admin/structure/forum/list', - 'router_path' => 'admin/structure/forum/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' => '20', - 'p3' => '600', - 'p4' => '661', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '662', - 'plid' => '594', - 'link_path' => 'admin/reports/updates/list', - 'router_path' => 'admin/reports/updates/list', - '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' => '18', - 'p3' => '594', - 'p4' => '662', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '663', - 'plid' => '601', - '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' => '20', - 'p3' => '601', - 'p4' => '663', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '664', - 'plid' => '597', - 'link_path' => 'admin/structure/field-collections/%', - 'router_path' => 'admin/structure/field-collections/%', - 'link_title' => 'Manage fields', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '1', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '597', - 'p4' => '664', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '665', - 'plid' => '48', - 'link_path' => 'admin/config/regional/i18n', - 'router_path' => 'admin/config/regional/i18n', - 'link_title' => 'Multilingual settings', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:69:"Configure extended options for multilingual content and translations.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '10', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '48', - 'p4' => '665', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '666', - 'plid' => '612', - 'link_path' => 'admin/structure/trigger/node', - 'router_path' => 'admin/structure/trigger/node', - 'link_title' => 'Node', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '612', - 'p4' => '666', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '667', - 'plid' => '594', - 'link_path' => 'admin/reports/updates/install', - 'router_path' => 'admin/reports/updates/install', - 'link_title' => 'Install new module or theme', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '25', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '18', - 'p3' => '594', - 'p4' => '667', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '668', - 'plid' => '601', - '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' => '20', - 'p3' => '601', - 'p4' => '668', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '669', - 'plid' => '594', - 'link_path' => 'admin/reports/updates/settings', - 'router_path' => 'admin/reports/updates/settings', - 'link_title' => 'Settings', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '50', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '18', - 'p3' => '594', - 'p4' => '669', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '670', - 'plid' => '53', - 'link_path' => 'admin/config/system/statistics', - 'router_path' => 'admin/config/system/statistics', - 'link_title' => 'Statistics', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:68:"Control details about what and how your site logs access statistics.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '-15', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '53', - 'p4' => '670', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '671', - 'plid' => '37', - 'link_path' => 'admin/config/development/testing', - 'router_path' => 'admin/config/development/testing', - 'link_title' => 'Testing', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:122:"Run tests against Drupal core and your active modules. These tests help assure that your site code is working as designed.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '-5', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '37', - 'p4' => '671', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '672', - 'plid' => '594', - 'link_path' => 'admin/reports/updates/update', - 'router_path' => 'admin/reports/updates/update', - 'link_title' => 'Update', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '10', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '18', - 'p3' => '594', - 'p4' => '672', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '673', - 'plid' => '612', - 'link_path' => 'admin/structure/trigger/system', - 'router_path' => 'admin/structure/trigger/system', - 'link_title' => 'System', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '612', - 'p4' => '673', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '674', - 'plid' => '612', - 'link_path' => 'admin/structure/trigger/taxonomy', - 'router_path' => 'admin/structure/trigger/taxonomy', - 'link_title' => 'Taxonomy', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '612', - 'p4' => '674', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '675', - 'plid' => '16', - 'link_path' => 'user/%/track/navigation', - 'router_path' => 'user/%/track/navigation', - 'link_title' => 'Track page visits', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '2', - 'depth' => '2', - 'customized' => '0', - 'p1' => '16', - 'p2' => '675', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '676', - 'plid' => '612', - 'link_path' => 'admin/structure/trigger/unassign', - 'router_path' => 'admin/structure/trigger/unassign', - 'link_title' => 'Unassign', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:34:"Unassign an action from a trigger.";}}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '612', - 'p4' => '676', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '677', - 'plid' => '612', - 'link_path' => 'admin/structure/trigger/user', - 'router_path' => 'admin/structure/trigger/user', - 'link_title' => 'User', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '612', - 'p4' => '677', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '678', - 'plid' => '600', - 'link_path' => 'admin/structure/forum/settings', - 'router_path' => 'admin/structure/forum/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' => '20', - 'p3' => '600', - 'p4' => '678', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '679', - 'plid' => '601', - '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' => '20', - 'p3' => '601', - 'p4' => '679', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '680', - 'plid' => '595', - 'link_path' => 'admin/structure/contact/delete/%', - 'router_path' => 'admin/structure/contact/delete/%', - 'link_title' => 'Delete contact', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '595', - 'p4' => '680', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '681', - 'plid' => '595', - 'link_path' => 'admin/structure/contact/edit/%', - 'router_path' => 'admin/structure/contact/edit/%', - 'link_title' => 'Edit contact category', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '595', - 'p4' => '681', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '682', - 'plid' => '671', - 'link_path' => 'admin/config/development/testing/list', - 'router_path' => 'admin/config/development/testing/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' => '37', - 'p4' => '671', - 'p5' => '682', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '683', - 'plid' => '664', - 'link_path' => 'admin/structure/field-collections/%/display', - 'router_path' => 'admin/structure/field-collections/%/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' => '20', - 'p3' => '597', - 'p4' => '664', - 'p5' => '683', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '684', - 'plid' => '491', - 'link_path' => 'admin/structure/paragraphs/%/display', - 'router_path' => 'admin/structure/paragraphs/%/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' => '20', - 'p3' => '481', - 'p4' => '491', - 'p5' => '684', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '685', - 'plid' => '212', - 'link_path' => 'admin/structure/taxonomy/%/display', - 'router_path' => 'admin/structure/taxonomy/%/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' => '20', - 'p3' => '180', - 'p4' => '212', - 'p5' => '685', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '686', - 'plid' => '66', - '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' => '45', - 'p4' => '66', - 'p5' => '686', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '687', - 'plid' => '491', - 'link_path' => 'admin/structure/paragraphs/%/fields', - 'router_path' => 'admin/structure/paragraphs/%/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' => '20', - 'p3' => '481', - 'p4' => '491', - 'p5' => '687', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '688', - 'plid' => '212', - 'link_path' => 'admin/structure/taxonomy/%/fields', - 'router_path' => 'admin/structure/taxonomy/%/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' => '20', - 'p3' => '180', - 'p4' => '212', - 'p5' => '688', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '689', - 'plid' => '66', - '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' => '45', - 'p4' => '66', - 'p5' => '689', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '690', - 'plid' => '664', - 'link_path' => 'admin/structure/field-collections/%/fields', - 'router_path' => 'admin/structure/field-collections/%/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' => '20', - 'p3' => '597', - 'p4' => '664', - 'p5' => '690', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '691', - 'plid' => '665', - 'link_path' => 'admin/config/regional/i18n/configure', - 'router_path' => 'admin/config/regional/i18n/configure', - 'link_title' => 'Multilingual system', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:69:"Configure extended options for multilingual content and translations.";}}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '5', - 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '48', - 'p4' => '665', - 'p5' => '691', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '692', - 'plid' => '665', - 'link_path' => 'admin/config/regional/i18n/node', - 'router_path' => 'admin/config/regional/i18n/node', - 'link_title' => 'Node options', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:69:"Configure extended options for multilingual content and translations.";}}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '10', - 'depth' => '5', - 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '48', - 'p4' => '665', - 'p5' => '692', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '693', - 'plid' => '671', - 'link_path' => 'admin/config/development/testing/settings', - 'router_path' => 'admin/config/development/testing/settings', - 'link_title' => 'Settings', - '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' => '37', - 'p4' => '671', - 'p5' => '693', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '694', - 'plid' => '665', - 'link_path' => 'admin/config/regional/i18n/strings', - 'router_path' => 'admin/config/regional/i18n/strings', - 'link_title' => 'Strings', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:33:"Options for user defined strings.";}}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '20', - 'depth' => '5', - 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '48', - 'p4' => '665', - 'p5' => '694', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '695', - 'plid' => '413', - 'link_path' => 'admin/config/regional/translate/i18n_string', - 'router_path' => 'admin/config/regional/translate/i18n_string', - 'link_title' => 'Strings', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:29:"Refresh user defined strings.";}}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '20', - 'depth' => '5', - 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '48', - 'p4' => '413', - 'p5' => '695', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '696', - 'plid' => '600', - 'link_path' => 'admin/structure/forum/add/container', - 'router_path' => 'admin/structure/forum/add/container', - 'link_title' => 'Add container', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '600', - 'p4' => '696', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '697', - 'plid' => '600', - 'link_path' => 'admin/structure/forum/add/forum', - 'router_path' => 'admin/structure/forum/add/forum', - 'link_title' => 'Add forum', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '600', - 'p4' => '697', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '698', - 'plid' => '679', - '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' => '20', - 'p3' => '601', - 'p4' => '679', - 'p5' => '698', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '699', - 'plid' => '683', - 'link_path' => 'admin/structure/field-collections/%/display/default', - 'router_path' => 'admin/structure/field-collections/%/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' => '20', - 'p3' => '597', - 'p4' => '664', - 'p5' => '683', - 'p6' => '699', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '700', - 'plid' => '684', - 'link_path' => 'admin/structure/paragraphs/%/display/default', - 'router_path' => 'admin/structure/paragraphs/%/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' => '20', - 'p3' => '481', - 'p4' => '491', - 'p5' => '684', - 'p6' => '700', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '701', - 'plid' => '685', - 'link_path' => 'admin/structure/taxonomy/%/display/default', - 'router_path' => 'admin/structure/taxonomy/%/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' => '20', - 'p3' => '180', - 'p4' => '212', - 'p5' => '685', - 'p6' => '701', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '702', - 'plid' => '686', - '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' => '45', - 'p4' => '66', - 'p5' => '686', - 'p6' => '702', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '703', - 'plid' => '679', - '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' => '20', - 'p3' => '601', - 'p4' => '679', - 'p5' => '703', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '704', - 'plid' => '601', - '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' => '20', - 'p3' => '601', - 'p4' => '704', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '705', - 'plid' => '600', - 'link_path' => 'admin/structure/forum/edit/container/%', - 'router_path' => 'admin/structure/forum/edit/container/%', - 'link_title' => 'Edit container', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '600', - 'p4' => '705', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '706', - 'plid' => '600', - 'link_path' => 'admin/structure/forum/edit/forum/%', - 'router_path' => 'admin/structure/forum/edit/forum/%', - 'link_title' => 'Edit forum', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '600', - 'p4' => '706', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '707', - 'plid' => '679', - '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' => '20', - 'p3' => '601', - 'p4' => '679', - 'p5' => '707', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '708', - 'plid' => '601', - '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' => '20', - 'p3' => '601', - 'p4' => '708', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '709', - 'plid' => '683', - 'link_path' => 'admin/structure/field-collections/%/display/full', - 'router_path' => 'admin/structure/field-collections/%/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' => '20', - 'p3' => '597', - 'p4' => '664', - 'p5' => '683', - 'p6' => '709', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '710', - 'plid' => '684', - 'link_path' => 'admin/structure/paragraphs/%/display/full', - 'router_path' => 'admin/structure/paragraphs/%/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' => '20', - 'p3' => '481', - 'p4' => '491', - 'p5' => '684', - 'p6' => '710', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '711', - 'plid' => '679', - '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' => '20', - 'p3' => '601', - 'p4' => '679', - 'p5' => '711', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '712', - 'plid' => '114', - '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' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '712', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '713', - 'plid' => '114', - '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' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '713', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '714', - 'plid' => '684', - 'link_path' => 'admin/structure/paragraphs/%/display/paragraphs_editor_preview', - 'router_path' => 'admin/structure/paragraphs/%/display/paragraphs_editor_preview', - 'link_title' => 'Paragraphs Editor Preview', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '1', - 'depth' => '6', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '481', - 'p4' => '491', - 'p5' => '684', - 'p6' => '714', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '715', - 'plid' => '601', - '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' => '20', - 'p3' => '601', - 'p4' => '715', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '716', - 'plid' => '685', - 'link_path' => 'admin/structure/taxonomy/%/display/full', - 'router_path' => 'admin/structure/taxonomy/%/display/full', - 'link_title' => 'Taxonomy term page', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '6', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '180', - 'p4' => '212', - 'p5' => '685', - 'p6' => '716', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '717', - 'plid' => '671', - 'link_path' => 'admin/config/development/testing/results/%', - 'router_path' => 'admin/config/development/testing/results/%', - 'link_title' => 'Test result', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:21:"View result of tests.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '5', - 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '37', - 'p4' => '671', - 'p5' => '717', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '718', - 'plid' => '114', - 'link_path' => 'admin/structure/types/manage/%/translate', - 'router_path' => 'admin/structure/types/manage/%/translate', - 'link_title' => 'Translate', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '10', - 'depth' => '5', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '718', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '719', - 'plid' => '686', - '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' => '45', - 'p4' => '66', - 'p5' => '686', - 'p6' => '719', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '720', - 'plid' => '690', - 'link_path' => 'admin/structure/field-collections/%/fields/%', - 'router_path' => 'admin/structure/field-collections/%/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' => '20', - 'p3' => '597', - 'p4' => '664', - 'p5' => '690', - 'p6' => '720', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '721', - 'plid' => '687', - 'link_path' => 'admin/structure/paragraphs/%/fields/%', - 'router_path' => 'admin/structure/paragraphs/%/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' => '20', - 'p3' => '481', - 'p4' => '491', - 'p5' => '687', - 'p6' => '721', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '722', - 'plid' => '688', - 'link_path' => 'admin/structure/taxonomy/%/fields/%', - 'router_path' => 'admin/structure/taxonomy/%/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' => '20', - 'p3' => '180', - 'p4' => '212', - 'p5' => '688', - 'p6' => '722', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '723', - 'plid' => '689', - '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' => '45', - 'p4' => '66', - 'p5' => '689', - 'p6' => '723', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '724', - 'plid' => '712', - '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' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '712', - 'p6' => '724', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '725', - 'plid' => '712', - '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' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '712', - 'p6' => '725', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '726', - 'plid' => '712', - 'link_path' => 'admin/structure/types/manage/%/display/print', - 'router_path' => 'admin/structure/types/manage/%/display/print', - 'link_title' => 'Print', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '5', - 'depth' => '6', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '712', - 'p6' => '726', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '727', - 'plid' => '712', - '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' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '712', - 'p6' => '727', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '728', - 'plid' => '712', - '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' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '712', - 'p6' => '728', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '729', - 'plid' => '720', - 'link_path' => 'admin/structure/field-collections/%/fields/%/delete', - 'router_path' => 'admin/structure/field-collections/%/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' => '20', - 'p3' => '597', - 'p4' => '664', - 'p5' => '690', - 'p6' => '720', - 'p7' => '729', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '730', - 'plid' => '720', - 'link_path' => 'admin/structure/field-collections/%/fields/%/edit', - 'router_path' => 'admin/structure/field-collections/%/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' => '20', - 'p3' => '597', - 'p4' => '664', - 'p5' => '690', - 'p6' => '720', - 'p7' => '730', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '731', - 'plid' => '720', - 'link_path' => 'admin/structure/field-collections/%/fields/%/field-settings', - 'router_path' => 'admin/structure/field-collections/%/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' => '20', - 'p3' => '597', - 'p4' => '664', - 'p5' => '690', - 'p6' => '720', - 'p7' => '731', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '732', - 'plid' => '720', - 'link_path' => 'admin/structure/field-collections/%/fields/%/translate', - 'router_path' => 'admin/structure/field-collections/%/fields/%/translate', - 'link_title' => 'Translate', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '7', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '597', - 'p4' => '664', - 'p5' => '690', - 'p6' => '720', - 'p7' => '732', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '733', - 'plid' => '720', - 'link_path' => 'admin/structure/field-collections/%/fields/%/widget-type', - 'router_path' => 'admin/structure/field-collections/%/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' => '20', - 'p3' => '597', - 'p4' => '664', - 'p5' => '690', - 'p6' => '720', - 'p7' => '733', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '734', - 'plid' => '713', - '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' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '713', - 'p6' => '734', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '735', - 'plid' => '721', - 'link_path' => 'admin/structure/paragraphs/%/fields/%/delete', - 'router_path' => 'admin/structure/paragraphs/%/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' => '20', - 'p3' => '481', - 'p4' => '491', - 'p5' => '687', - 'p6' => '721', - 'p7' => '735', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '736', - 'plid' => '721', - 'link_path' => 'admin/structure/paragraphs/%/fields/%/edit', - 'router_path' => 'admin/structure/paragraphs/%/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' => '20', - 'p3' => '481', - 'p4' => '491', - 'p5' => '687', - 'p6' => '721', - 'p7' => '736', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '737', - 'plid' => '721', - 'link_path' => 'admin/structure/paragraphs/%/fields/%/field-settings', - 'router_path' => 'admin/structure/paragraphs/%/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' => '20', - 'p3' => '481', - 'p4' => '491', - 'p5' => '687', - 'p6' => '721', - 'p7' => '737', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '738', - 'plid' => '721', - 'link_path' => 'admin/structure/paragraphs/%/fields/%/translate', - 'router_path' => 'admin/structure/paragraphs/%/fields/%/translate', - 'link_title' => 'Translate', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '7', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '481', - 'p4' => '491', - 'p5' => '687', - 'p6' => '721', - 'p7' => '738', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '739', - 'plid' => '721', - 'link_path' => 'admin/structure/paragraphs/%/fields/%/widget-type', - 'router_path' => 'admin/structure/paragraphs/%/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' => '20', - 'p3' => '481', - 'p4' => '491', - 'p5' => '687', - 'p6' => '721', - 'p7' => '739', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '740', - 'plid' => '722', - 'link_path' => 'admin/structure/taxonomy/%/fields/%/delete', - 'router_path' => 'admin/structure/taxonomy/%/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' => '20', - 'p3' => '180', - 'p4' => '212', - 'p5' => '688', - 'p6' => '722', - 'p7' => '740', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '741', - 'plid' => '722', - 'link_path' => 'admin/structure/taxonomy/%/fields/%/edit', - 'router_path' => 'admin/structure/taxonomy/%/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' => '20', - 'p3' => '180', - 'p4' => '212', - 'p5' => '688', - 'p6' => '722', - 'p7' => '741', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '742', - 'plid' => '722', - 'link_path' => 'admin/structure/taxonomy/%/fields/%/field-settings', - 'router_path' => 'admin/structure/taxonomy/%/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' => '20', - 'p3' => '180', - 'p4' => '212', - 'p5' => '688', - 'p6' => '722', - 'p7' => '742', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '743', - 'plid' => '722', - 'link_path' => 'admin/structure/taxonomy/%/fields/%/translate', - 'router_path' => 'admin/structure/taxonomy/%/fields/%/translate', - 'link_title' => 'Translate', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '7', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '180', - 'p4' => '212', - 'p5' => '688', - 'p6' => '722', - 'p7' => '743', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '744', - 'plid' => '722', - 'link_path' => 'admin/structure/taxonomy/%/fields/%/widget-type', - 'router_path' => 'admin/structure/taxonomy/%/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' => '20', - 'p3' => '180', - 'p4' => '212', - 'p5' => '688', - 'p6' => '722', - 'p7' => '744', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '745', - 'plid' => '723', - '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' => '45', - 'p4' => '66', - 'p5' => '689', - 'p6' => '723', - 'p7' => '745', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '746', - 'plid' => '723', - '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' => '45', - 'p4' => '66', - 'p5' => '689', - 'p6' => '723', - 'p7' => '746', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '747', - 'plid' => '723', - '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' => '45', - 'p4' => '66', - 'p5' => '689', - 'p6' => '723', - 'p7' => '747', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '748', - 'plid' => '723', - 'link_path' => 'admin/config/people/accounts/fields/%/translate', - 'router_path' => 'admin/config/people/accounts/fields/%/translate', - 'link_title' => 'Translate', - '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' => '45', - 'p4' => '66', - 'p5' => '689', - 'p6' => '723', - 'p7' => '748', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '749', - 'plid' => '723', - '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' => '45', - 'p4' => '66', - 'p5' => '689', - 'p6' => '723', - 'p7' => '749', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '750', - 'plid' => '161', - 'link_path' => 'admin/structure/types/manage/%/comment/display/default', - 'router_path' => 'admin/structure/types/manage/%/comment/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' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '161', - 'p6' => '750', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '751', - 'plid' => '161', - 'link_path' => 'admin/structure/types/manage/%/comment/display/full', - 'router_path' => 'admin/structure/types/manage/%/comment/display/full', - 'link_title' => 'Full comment', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '6', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '161', - 'p6' => '751', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '752', - 'plid' => '734', - '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' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '713', - 'p6' => '734', - 'p7' => '752', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '753', - 'plid' => '734', - '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' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '713', - 'p6' => '734', - 'p7' => '753', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '754', - 'plid' => '162', - 'link_path' => 'admin/structure/types/manage/%/comment/fields/%', - 'router_path' => 'admin/structure/types/manage/%/comment/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' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '162', - 'p6' => '754', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '755', - 'plid' => '734', - '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' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '713', - 'p6' => '734', - 'p7' => '755', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '756', - 'plid' => '734', - 'link_path' => 'admin/structure/types/manage/%/fields/%/translate', - 'router_path' => 'admin/structure/types/manage/%/fields/%/translate', - 'link_title' => 'Translate', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '7', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '713', - 'p6' => '734', - 'p7' => '756', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '757', - 'plid' => '734', - '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' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '713', - 'p6' => '734', - 'p7' => '757', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '758', - 'plid' => '754', - 'link_path' => 'admin/structure/types/manage/%/comment/fields/%/delete', - 'router_path' => 'admin/structure/types/manage/%/comment/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' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '162', - 'p6' => '754', - 'p7' => '758', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '759', - 'plid' => '754', - 'link_path' => 'admin/structure/types/manage/%/comment/fields/%/edit', - 'router_path' => 'admin/structure/types/manage/%/comment/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' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '162', - 'p6' => '754', - 'p7' => '759', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '760', - 'plid' => '754', - 'link_path' => 'admin/structure/types/manage/%/comment/fields/%/field-settings', - 'router_path' => 'admin/structure/types/manage/%/comment/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' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '162', - 'p6' => '754', - 'p7' => '760', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '761', - 'plid' => '754', - 'link_path' => 'admin/structure/types/manage/%/comment/fields/%/translate', - 'router_path' => 'admin/structure/types/manage/%/comment/fields/%/translate', - 'link_title' => 'Translate', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '7', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '162', - 'p6' => '754', - 'p7' => '761', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '762', - 'plid' => '754', - 'link_path' => 'admin/structure/types/manage/%/comment/fields/%/widget-type', - 'router_path' => 'admin/structure/types/manage/%/comment/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' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '162', - 'p6' => '754', - 'p7' => '762', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '763', - 'plid' => '601', - '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' => '20', - 'p3' => '601', - 'p4' => '763', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '764', - 'plid' => '601', - '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' => '20', - 'p3' => '601', - 'p4' => '764', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '765', - 'plid' => '601', - 'link_path' => 'admin/structure/menu/manage/menu-test-menu', - 'router_path' => 'admin/structure/menu/manage/%', - 'link_title' => 'Test Menu', - 'options' => 'a:0:{}', - 'module' => 'menu', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '601', - 'p4' => '765', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '766', - 'plid' => '601', - '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' => '20', - 'p3' => '601', - 'p4' => '766', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '767', - 'plid' => '601', - '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' => '20', - 'p3' => '601', - 'p4' => '767', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '768', - 'plid' => '0', - 'link_path' => 'tracker', - 'router_path' => 'tracker', - 'link_title' => 'Recent content', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '1', - 'depth' => '1', - 'customized' => '0', - 'p1' => '768', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '769', - 'plid' => '0', - 'link_path' => 'search', - 'router_path' => 'search', - 'link_title' => 'Search', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '769', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '770', - 'plid' => '768', - 'link_path' => 'tracker/all', - 'router_path' => 'tracker/all', - 'link_title' => 'All recent content', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '768', - 'p2' => '770', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '771', - 'plid' => '769', - 'link_path' => 'search/node', - 'router_path' => 'search/node', - 'link_title' => 'Content', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '-10', - 'depth' => '2', - 'customized' => '0', - 'p1' => '769', - 'p2' => '771', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '772', - 'plid' => '768', - 'link_path' => 'tracker/%', - 'router_path' => 'tracker/%', - 'link_title' => 'My recent content', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '768', - 'p2' => '772', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '773', - 'plid' => '769', - 'link_path' => 'search/user', - 'router_path' => 'search/user', - 'link_title' => 'Users', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '769', - 'p2' => '773', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '774', - 'plid' => '771', - 'link_path' => 'search/node/%', - 'router_path' => 'search/node/%', - 'link_title' => 'Content', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '769', - 'p2' => '771', - 'p3' => '774', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '775', - 'plid' => '16', - 'link_path' => 'user/%/shortcuts', - 'router_path' => 'user/%/shortcuts', - 'link_title' => 'Shortcuts', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '16', - 'p2' => '775', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '776', - 'plid' => '18', - 'link_path' => 'admin/reports/search', - 'router_path' => 'admin/reports/search', - 'link_title' => 'Top search phrases', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:33:"View most popular search phrases.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '18', - 'p3' => '776', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '777', - 'plid' => '16', - 'link_path' => 'user/%/track', - 'router_path' => 'user/%/track', - 'link_title' => 'Track', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '16', - 'p2' => '777', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '778', - 'plid' => '773', - 'link_path' => 'search/user/%', - 'router_path' => 'search/user/%', - 'link_title' => 'Users', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '769', - 'p2' => '773', - 'p3' => '778', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '779', - 'plid' => '20', - 'link_path' => 'admin/structure/views', - 'router_path' => 'admin/structure/views', - 'link_title' => 'Views', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:35:"Manage customized lists of content.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '779', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '780', - 'plid' => '18', - 'link_path' => 'admin/reports/views-plugins', - 'router_path' => 'admin/reports/views-plugins', - 'link_title' => 'Views plugins', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:38:"Overview of plugins used in all views.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '18', - 'p3' => '780', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '781', - 'plid' => '587', - 'link_path' => 'admin/help/overlay', - 'router_path' => 'admin/help/overlay', - 'link_title' => 'overlay', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '781', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '782', - 'plid' => '587', - 'link_path' => 'admin/help/path', - 'router_path' => 'admin/help/path', - 'link_title' => 'path', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '782', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '783', - 'plid' => '587', - 'link_path' => 'admin/help/rdf', - 'router_path' => 'admin/help/rdf', - 'link_title' => 'rdf', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '783', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '784', - 'plid' => '587', - 'link_path' => 'admin/help/search', - 'router_path' => 'admin/help/search', - 'link_title' => 'search', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '784', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '785', - 'plid' => '587', - 'link_path' => 'admin/help/shortcut', - 'router_path' => 'admin/help/shortcut', - 'link_title' => 'shortcut', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '785', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '786', - 'plid' => '587', - 'link_path' => 'admin/help/toolbar', - 'router_path' => 'admin/help/toolbar', - 'link_title' => 'toolbar', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '786', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '787', - 'plid' => '587', - 'link_path' => 'admin/help/tracker', - 'router_path' => 'admin/help/tracker', - 'link_title' => 'tracker', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '787', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '788', - 'plid' => '587', - 'link_path' => 'admin/help/views_ui', - 'router_path' => 'admin/help/views_ui', - 'link_title' => 'views_ui', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '788', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '789', - 'plid' => '779', - 'link_path' => 'admin/structure/views/add', - 'router_path' => 'admin/structure/views/add', - 'link_title' => 'Add new view', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '779', - 'p4' => '789', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '790', - 'plid' => '779', - 'link_path' => 'admin/structure/views/add-template', - 'router_path' => 'admin/structure/views/add-template', - 'link_title' => 'Add view from template', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '779', - 'p4' => '790', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '791', - 'plid' => '779', - 'link_path' => 'admin/structure/views/import', - 'router_path' => 'admin/structure/views/import', - 'link_title' => 'Import', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '779', - 'p4' => '791', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '792', - 'plid' => '779', - 'link_path' => 'admin/structure/views/list', - 'router_path' => 'admin/structure/views/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' => '20', - 'p3' => '779', - 'p4' => '792', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', +->execute(); + +$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' => 'normal', + 'default' => '0', + ), + 'external' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'has_children' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'expanded' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'weight' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'depth' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'customized' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + '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' => 'normal', + 'default' => '0', + ), + ), + 'primary key' => array( + 'mlid', + ), + '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' => '793', - 'plid' => '598', - 'link_path' => 'admin/reports/fields/list', - 'router_path' => 'admin/reports/fields/list', - 'link_title' => 'List', + 'mlid' => '1', + 'plid' => '0', + 'link_path' => 'admin', + 'router_path' => 'admin', + 'link_title' => 'Administration', 'options' => 'a:0:{}', 'module' => 'system', - 'hidden' => '-1', + 'hidden' => '0', 'external' => '0', - 'has_children' => '0', + 'has_children' => '1', 'expanded' => '0', - 'weight' => '-10', - 'depth' => '4', + 'weight' => '9', + 'depth' => '1', 'customized' => '0', 'p1' => '1', - 'p2' => '18', - 'p3' => '598', - 'p4' => '793', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', 'p5' => '0', 'p6' => '0', 'p7' => '0', @@ -43013,25 +18193,25 @@ $connection->insert('menu_links') 'updated' => '0', )) ->values(array( - 'menu_name' => 'management', - 'mlid' => '794', - 'plid' => '50', - 'link_path' => 'admin/config/search/settings', - 'router_path' => 'admin/config/search/settings', - 'link_title' => 'Search settings', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:67:"Configure relevance settings for search and other indexing options.";}}', + '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' => '4', + 'depth' => '1', 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '50', - 'p4' => '794', + 'p1' => '2', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', 'p5' => '0', 'p6' => '0', 'p7' => '0', @@ -43040,25 +18220,25 @@ $connection->insert('menu_links') 'updated' => '0', )) ->values(array( - 'menu_name' => 'management', - 'mlid' => '795', - 'plid' => '779', - 'link_path' => 'admin/structure/views/settings', - 'router_path' => 'admin/structure/views/settings', - 'link_title' => 'Settings', + 'menu_name' => 'navigation', + 'mlid' => '3', + 'plid' => '0', + 'link_path' => 'comment/%', + 'router_path' => 'comment/%', + 'link_title' => 'Comment permalink', 'options' => 'a:0:{}', 'module' => 'system', - 'hidden' => '-1', + 'hidden' => '0', 'external' => '0', - 'has_children' => '0', + 'has_children' => '1', 'expanded' => '0', 'weight' => '0', - 'depth' => '4', + 'depth' => '1', 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '779', - 'p4' => '795', + 'p1' => '3', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', 'p5' => '0', 'p6' => '0', 'p7' => '0', @@ -43067,25 +18247,25 @@ $connection->insert('menu_links') 'updated' => '0', )) ->values(array( - 'menu_name' => 'management', - 'mlid' => '796', - 'plid' => '57', - 'link_path' => 'admin/config/user-interface/shortcut', - 'router_path' => 'admin/config/user-interface/shortcut', - 'link_title' => 'Shortcuts', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:29:"Add and modify shortcut sets.";}}', + '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' => '0', + 'hidden' => '1', 'external' => '0', 'has_children' => '1', 'expanded' => '0', 'weight' => '0', - 'depth' => '4', + 'depth' => '1', 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '57', - 'p4' => '796', + 'p1' => '4', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', 'p5' => '0', 'p6' => '0', 'p7' => '0', @@ -43095,23 +18275,23 @@ $connection->insert('menu_links') )) ->values(array( 'menu_name' => 'navigation', - 'mlid' => '797', - 'plid' => '777', - 'link_path' => 'user/%/track/content', - 'router_path' => 'user/%/track/content', - 'link_title' => 'Track content', + 'mlid' => '5', + 'plid' => '0', + 'link_path' => 'node/%', + 'router_path' => 'node/%', + 'link_title' => '', 'options' => 'a:0:{}', 'module' => 'system', - 'hidden' => '-1', + 'hidden' => '0', 'external' => '0', 'has_children' => '0', 'expanded' => '0', 'weight' => '0', - 'depth' => '3', + 'depth' => '1', 'customized' => '0', - 'p1' => '16', - 'p2' => '777', - 'p3' => '797', + 'p1' => '5', + 'p2' => '0', + 'p3' => '0', 'p4' => '0', 'p5' => '0', 'p6' => '0', @@ -43121,25 +18301,25 @@ $connection->insert('menu_links') 'updated' => '0', )) ->values(array( - 'menu_name' => 'management', - 'mlid' => '798', - 'plid' => '50', - '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.\";}}", + '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' => '-5', - 'depth' => '4', + 'weight' => '0', + 'depth' => '1', 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '50', - 'p4' => '798', + 'p1' => '6', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', 'p5' => '0', 'p6' => '0', 'p7' => '0', @@ -43149,24 +18329,24 @@ $connection->insert('menu_links') )) ->values(array( 'menu_name' => 'management', - 'mlid' => '799', - 'plid' => '598', - 'link_path' => 'admin/reports/fields/views-fields', - 'router_path' => 'admin/reports/fields/views-fields', - 'link_title' => 'Used in views', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:37:"Overview of fields used in all views.";}}', + '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' => '-1', + 'hidden' => '0', 'external' => '0', 'has_children' => '0', 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', + 'weight' => '-6', + 'depth' => '2', 'customized' => '0', 'p1' => '1', - 'p2' => '18', - 'p3' => '598', - 'p4' => '799', + 'p2' => '7', + 'p3' => '0', + 'p4' => '0', 'p5' => '0', 'p6' => '0', 'p7' => '0', @@ -43176,25 +18356,25 @@ $connection->insert('menu_links') )) ->values(array( 'menu_name' => 'management', - 'mlid' => '800', - 'plid' => '798', - 'link_path' => 'admin/config/search/path/add', - 'router_path' => 'admin/config/search/path/add', - 'link_title' => 'Add alias', - 'options' => 'a:0:{}', + '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' => '-1', + 'hidden' => '0', 'external' => '0', - 'has_children' => '0', + 'has_children' => '1', 'expanded' => '0', 'weight' => '0', - 'depth' => '5', + 'depth' => '2', 'customized' => '0', 'p1' => '1', 'p2' => '8', - 'p3' => '50', - 'p4' => '798', - 'p5' => '800', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', 'p6' => '0', 'p7' => '0', 'p8' => '0', @@ -43203,25 +18383,25 @@ $connection->insert('menu_links') )) ->values(array( 'menu_name' => 'management', - 'mlid' => '801', - 'plid' => '796', - 'link_path' => 'admin/config/user-interface/shortcut/add-set', - 'router_path' => 'admin/config/user-interface/shortcut/add-set', - 'link_title' => 'Add shortcut set', - 'options' => 'a:0:{}', + '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:32:"Administer content and comments.";}}', 'module' => 'system', - 'hidden' => '-1', + 'hidden' => '0', 'external' => '0', - 'has_children' => '0', + 'has_children' => '1', 'expanded' => '0', - 'weight' => '0', - 'depth' => '5', + 'weight' => '-10', + 'depth' => '2', 'customized' => '0', 'p1' => '1', - 'p2' => '8', - 'p3' => '57', - 'p4' => '796', - 'p5' => '801', + 'p2' => '9', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', 'p6' => '0', 'p7' => '0', 'p8' => '0', @@ -43229,26 +18409,26 @@ $connection->insert('menu_links') 'updated' => '0', )) ->values(array( - 'menu_name' => 'management', - 'mlid' => '802', - 'plid' => '795', - 'link_path' => 'admin/structure/views/settings/advanced', - 'router_path' => 'admin/structure/views/settings/advanced', - 'link_title' => 'Advanced', + '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' => '1', - 'depth' => '5', + 'weight' => '0', + 'depth' => '2', 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '779', - 'p4' => '795', - 'p5' => '802', + 'p1' => '2', + 'p2' => '10', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', 'p6' => '0', 'p7' => '0', 'p8' => '0', @@ -43257,25 +18437,25 @@ $connection->insert('menu_links') )) ->values(array( 'menu_name' => 'management', - 'mlid' => '803', - 'plid' => '795', - 'link_path' => 'admin/structure/views/settings/basic', - 'router_path' => 'admin/structure/views/settings/basic', - 'link_title' => 'Basic', + 'mlid' => '12', + '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' => '0', - 'depth' => '5', + 'weight' => '-18', + 'depth' => '2', 'customized' => '0', 'p1' => '1', - 'p2' => '20', - 'p3' => '779', - 'p4' => '795', - 'p5' => '803', + 'p2' => '12', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', 'p6' => '0', 'p7' => '0', 'p8' => '0', @@ -43283,12 +18463,12 @@ $connection->insert('menu_links') 'updated' => '0', )) ->values(array( - 'menu_name' => 'management', - 'mlid' => '804', - 'plid' => '794', - 'link_path' => 'admin/config/search/settings/reindex', - 'router_path' => 'admin/config/search/settings/reindex', - 'link_title' => 'Clear index', + 'menu_name' => 'user-menu', + 'mlid' => '13', + 'plid' => '2', + 'link_path' => 'user/login', + 'router_path' => 'user/login', + 'link_title' => 'Log in', 'options' => 'a:0:{}', 'module' => 'system', 'hidden' => '-1', @@ -43296,13 +18476,13 @@ $connection->insert('menu_links') 'has_children' => '0', 'expanded' => '0', 'weight' => '0', - 'depth' => '5', + 'depth' => '2', 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '50', - 'p4' => '794', - 'p5' => '804', + 'p1' => '2', + 'p2' => '13', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', 'p6' => '0', 'p7' => '0', 'p8' => '0', @@ -43310,53 +18490,26 @@ $connection->insert('menu_links') 'updated' => '0', )) ->values(array( - 'menu_name' => 'management', - 'mlid' => '805', - 'plid' => '796', - 'link_path' => 'admin/config/user-interface/shortcut/%', - 'router_path' => 'admin/config/user-interface/shortcut/%', - 'link_title' => 'Edit shortcuts', + 'menu_name' => 'user-menu', + 'mlid' => '14', + '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' => '1', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '5', - 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '57', - 'p4' => '796', - 'p5' => '805', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '806', - 'plid' => '798', - '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', + 'weight' => '10', + 'depth' => '1', 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '50', - 'p4' => '798', - 'p5' => '806', + 'p1' => '14', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', 'p6' => '0', 'p7' => '0', 'p8' => '0', @@ -43365,24 +18518,24 @@ $connection->insert('menu_links') )) ->values(array( 'menu_name' => 'management', - 'mlid' => '807', - 'plid' => '779', - 'link_path' => 'admin/structure/views/view/%', - 'router_path' => 'admin/structure/views/view/%', - 'link_title' => '', - 'options' => 'a:0:{}', + 'mlid' => '15', + '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' => '0', - 'depth' => '4', + 'weight' => '-2', + 'depth' => '2', 'customized' => '0', 'p1' => '1', - 'p2' => '20', - 'p3' => '779', - 'p4' => '807', + 'p2' => '15', + 'p3' => '0', + 'p4' => '0', 'p5' => '0', 'p6' => '0', 'p7' => '0', @@ -43391,80 +18544,26 @@ $connection->insert('menu_links') 'updated' => '0', )) ->values(array( - 'menu_name' => 'management', - 'mlid' => '808', - 'plid' => '805', - 'link_path' => 'admin/config/user-interface/shortcut/%/add-link', - 'router_path' => 'admin/config/user-interface/shortcut/%/add-link', - 'link_title' => 'Add shortcut', - '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' => '57', - 'p4' => '796', - 'p5' => '805', - 'p6' => '808', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '809', - 'plid' => '807', - 'link_path' => 'admin/structure/views/view/%/break-lock', - 'router_path' => 'admin/structure/views/view/%/break-lock', - 'link_title' => 'Break lock', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '5', - 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '779', - 'p4' => '807', - 'p5' => '809', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'management', - 'mlid' => '810', - 'plid' => '798', - 'link_path' => 'admin/config/search/path/delete/%', - 'router_path' => 'admin/config/search/path/delete/%', - 'link_title' => 'Delete alias', + 'menu_name' => 'navigation', + 'mlid' => '16', + 'plid' => '0', + 'link_path' => 'user/%', + 'router_path' => 'user/%', + 'link_title' => 'My account', 'options' => 'a:0:{}', 'module' => 'system', 'hidden' => '0', 'external' => '0', - 'has_children' => '0', + 'has_children' => '1', 'expanded' => '0', 'weight' => '0', - 'depth' => '5', + 'depth' => '1', 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '50', - 'p4' => '798', - 'p5' => '810', + 'p1' => '16', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', 'p6' => '0', 'p7' => '0', 'p8' => '0', @@ -43473,26 +18572,26 @@ $connection->insert('menu_links') )) ->values(array( 'menu_name' => 'management', - 'mlid' => '811', - 'plid' => '805', - 'link_path' => 'admin/config/user-interface/shortcut/%/delete', - 'router_path' => 'admin/config/user-interface/shortcut/%/delete', - 'link_title' => 'Delete shortcut set', - 'options' => 'a:0:{}', + 'mlid' => '17', + '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' => '0', - 'depth' => '6', + 'weight' => '-4', + 'depth' => '2', 'customized' => '0', 'p1' => '1', - 'p2' => '8', - 'p3' => '57', - 'p4' => '796', - 'p5' => '805', - 'p6' => '811', + 'p2' => '17', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', 'p7' => '0', 'p8' => '0', 'p9' => '0', @@ -43500,25 +18599,25 @@ $connection->insert('menu_links') )) ->values(array( 'menu_name' => 'management', - 'mlid' => '812', - 'plid' => '798', - 'link_path' => 'admin/config/search/path/edit/%', - 'router_path' => 'admin/config/search/path/edit/%', - 'link_title' => 'Edit alias', - 'options' => 'a:0:{}', + 'mlid' => '18', + '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' => '0', + 'has_children' => '1', 'expanded' => '0', - 'weight' => '0', - 'depth' => '5', + 'weight' => '5', + 'depth' => '2', 'customized' => '0', 'p1' => '1', - 'p2' => '8', - 'p3' => '50', - 'p4' => '798', - 'p5' => '812', + 'p2' => '18', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', 'p6' => '0', 'p7' => '0', 'p8' => '0', @@ -43526,27 +18625,27 @@ $connection->insert('menu_links') 'updated' => '0', )) ->values(array( - 'menu_name' => 'management', - 'mlid' => '813', - 'plid' => '805', - 'link_path' => 'admin/config/user-interface/shortcut/%/edit', - 'router_path' => 'admin/config/user-interface/shortcut/%/edit', - 'link_title' => 'Edit set name', + 'menu_name' => 'user-menu', + 'mlid' => '19', + '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' => '10', - 'depth' => '6', + 'weight' => '0', + 'depth' => '2', 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '57', - 'p4' => '796', - 'p5' => '805', - 'p6' => '813', + 'p1' => '2', + 'p2' => '19', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', 'p7' => '0', 'p8' => '0', 'p9' => '0', @@ -43554,25 +18653,25 @@ $connection->insert('menu_links') )) ->values(array( 'menu_name' => 'management', - 'mlid' => '814', - 'plid' => '796', - 'link_path' => 'admin/config/user-interface/shortcut/link/%', - 'router_path' => 'admin/config/user-interface/shortcut/link/%', - 'link_title' => 'Edit shortcut', - 'options' => 'a:0:{}', + 'mlid' => '20', + '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' => '0', - 'depth' => '5', + 'weight' => '-8', + 'depth' => '2', 'customized' => '0', 'p1' => '1', - 'p2' => '8', - 'p3' => '57', - 'p4' => '796', - 'p5' => '814', + 'p2' => '20', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', 'p6' => '0', 'p7' => '0', 'p8' => '0', @@ -43581,25 +18680,25 @@ $connection->insert('menu_links') )) ->values(array( 'menu_name' => 'management', - 'mlid' => '815', - 'plid' => '807', - 'link_path' => 'admin/structure/views/view/%/edit', - 'router_path' => 'admin/structure/views/view/%/edit', - 'link_title' => 'Edit view', + 'mlid' => '21', + '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' => '-10', - 'depth' => '5', + 'weight' => '-20', + 'depth' => '2', 'customized' => '0', 'p1' => '1', - 'p2' => '20', - 'p3' => '779', - 'p4' => '807', - 'p5' => '815', + 'p2' => '21', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', 'p6' => '0', 'p7' => '0', 'p8' => '0', @@ -43607,53 +18706,53 @@ $connection->insert('menu_links') 'updated' => '0', )) ->values(array( - 'menu_name' => 'management', - 'mlid' => '816', - 'plid' => '805', - 'link_path' => 'admin/config/user-interface/shortcut/%/links', - 'router_path' => 'admin/config/user-interface/shortcut/%/links', - 'link_title' => 'List links', + 'menu_name' => 'navigation', + 'mlid' => '22', + 'plid' => '0', + 'link_path' => 'comment/reply/%', + 'router_path' => 'comment/reply/%', + 'link_title' => 'Add new comment', 'options' => 'a:0:{}', 'module' => 'system', - 'hidden' => '-1', + 'hidden' => '0', 'external' => '0', 'has_children' => '0', 'expanded' => '0', 'weight' => '0', - 'depth' => '6', + 'depth' => '1', 'customized' => '0', - 'p1' => '1', - 'p2' => '8', - 'p3' => '57', - 'p4' => '796', - 'p5' => '805', - 'p6' => '816', + 'p1' => '22', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', 'p7' => '0', 'p8' => '0', 'p9' => '0', 'updated' => '0', )) ->values(array( - 'menu_name' => 'management', - 'mlid' => '817', - 'plid' => '807', - 'link_path' => 'admin/structure/views/view/%/clone', - 'router_path' => 'admin/structure/views/view/%/clone', - 'link_title' => 'Clone', + 'menu_name' => 'navigation', + 'mlid' => '23', + 'plid' => '3', + 'link_path' => 'comment/%/approve', + 'router_path' => 'comment/%/approve', + 'link_title' => 'Approve', 'options' => 'a:0:{}', 'module' => 'system', - 'hidden' => '-1', + 'hidden' => '0', 'external' => '0', 'has_children' => '0', 'expanded' => '0', - 'weight' => '0', - 'depth' => '5', + 'weight' => '1', + 'depth' => '2', 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '779', - 'p4' => '807', - 'p5' => '817', + 'p1' => '3', + 'p2' => '23', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', 'p6' => '0', 'p7' => '0', 'p8' => '0', @@ -43661,11 +18760,11 @@ $connection->insert('menu_links') 'updated' => '0', )) ->values(array( - 'menu_name' => 'management', - 'mlid' => '818', - 'plid' => '807', - 'link_path' => 'admin/structure/views/view/%/delete', - 'router_path' => 'admin/structure/views/view/%/delete', + 'menu_name' => 'navigation', + 'mlid' => '24', + 'plid' => '3', + 'link_path' => 'comment/%/delete', + 'router_path' => 'comment/%/delete', 'link_title' => 'Delete', 'options' => 'a:0:{}', 'module' => 'system', @@ -43673,14 +18772,14 @@ $connection->insert('menu_links') 'external' => '0', 'has_children' => '0', 'expanded' => '0', - 'weight' => '0', - 'depth' => '5', + 'weight' => '2', + 'depth' => '2', 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '779', - 'p4' => '807', - 'p5' => '818', + 'p1' => '3', + 'p2' => '24', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', 'p6' => '0', 'p7' => '0', 'p8' => '0', @@ -43688,12 +18787,12 @@ $connection->insert('menu_links') 'updated' => '0', )) ->values(array( - 'menu_name' => 'management', - 'mlid' => '819', - 'plid' => '807', - 'link_path' => 'admin/structure/views/view/%/export', - 'router_path' => 'admin/structure/views/view/%/export', - 'link_title' => 'Export', + 'menu_name' => 'navigation', + 'mlid' => '25', + 'plid' => '3', + 'link_path' => 'comment/%/edit', + 'router_path' => 'comment/%/edit', + 'link_title' => 'Edit', 'options' => 'a:0:{}', 'module' => 'system', 'hidden' => '-1', @@ -43701,13 +18800,13 @@ $connection->insert('menu_links') 'has_children' => '0', 'expanded' => '0', 'weight' => '0', - 'depth' => '5', + 'depth' => '2', 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '779', - 'p4' => '807', - 'p5' => '819', + 'p1' => '3', + 'p2' => '25', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', 'p6' => '0', 'p7' => '0', 'p8' => '0', @@ -43715,26 +18814,26 @@ $connection->insert('menu_links') 'updated' => '0', )) ->values(array( - 'menu_name' => 'management', - 'mlid' => '820', - 'plid' => '807', - 'link_path' => 'admin/structure/views/view/%/revert', - 'router_path' => 'admin/structure/views/view/%/revert', - 'link_title' => 'Revert', + 'menu_name' => 'navigation', + 'mlid' => '26', + 'plid' => '3', + 'link_path' => 'comment/%/view', + 'router_path' => 'comment/%/view', + 'link_title' => 'View comment', 'options' => 'a:0:{}', 'module' => 'system', 'hidden' => '-1', 'external' => '0', 'has_children' => '0', 'expanded' => '0', - 'weight' => '0', - 'depth' => '5', + 'weight' => '-10', + 'depth' => '2', 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '779', - 'p4' => '807', - 'p5' => '820', + 'p1' => '3', + 'p2' => '26', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', 'p6' => '0', 'p7' => '0', 'p8' => '0', @@ -43743,26 +18842,26 @@ $connection->insert('menu_links') )) ->values(array( 'menu_name' => 'management', - 'mlid' => '821', - 'plid' => '814', - 'link_path' => 'admin/config/user-interface/shortcut/link/%/delete', - 'router_path' => 'admin/config/user-interface/shortcut/link/%/delete', - 'link_title' => 'Delete shortcut', + 'mlid' => '27', + 'plid' => '17', + 'link_path' => 'admin/people/create', + 'router_path' => 'admin/people/create', + 'link_title' => 'Add user', 'options' => 'a:0:{}', 'module' => 'system', - 'hidden' => '0', + 'hidden' => '-1', 'external' => '0', 'has_children' => '0', 'expanded' => '0', 'weight' => '0', - 'depth' => '6', + 'depth' => '3', 'customized' => '0', 'p1' => '1', - 'p2' => '8', - 'p3' => '57', - 'p4' => '796', - 'p5' => '814', - 'p6' => '821', + 'p2' => '17', + 'p3' => '27', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', 'p7' => '0', 'p8' => '0', 'p9' => '0', @@ -43770,51 +18869,51 @@ $connection->insert('menu_links') )) ->values(array( 'menu_name' => 'management', - 'mlid' => '822', - 'plid' => '712', - 'link_path' => 'admin/structure/types/manage/%/display/search_index', - 'router_path' => 'admin/structure/types/manage/%/display/search_index', - 'link_title' => 'Search index', - 'options' => 'a:0:{}', + 'mlid' => '28', + 'plid' => '20', + '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' => '-1', + 'hidden' => '0', 'external' => '0', - 'has_children' => '0', + 'has_children' => '1', 'expanded' => '0', - 'weight' => '3', - 'depth' => '6', + 'weight' => '0', + 'depth' => '3', 'customized' => '0', 'p1' => '1', 'p2' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '712', - 'p6' => '822', + 'p3' => '28', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', 'p7' => '0', 'p8' => '0', 'p9' => '0', 'updated' => '0', )) ->values(array( - 'menu_name' => 'management', - 'mlid' => '823', - 'plid' => '779', - 'link_path' => 'admin/structure/views/nojs/preview/%/%', - 'router_path' => 'admin/structure/views/nojs/preview/%/%', - 'link_title' => '', + 'menu_name' => 'navigation', + 'mlid' => '29', + 'plid' => '16', + 'link_path' => 'user/%/cancel', + 'router_path' => 'user/%/cancel', + 'link_title' => 'Cancel account', 'options' => 'a:0:{}', 'module' => 'system', 'hidden' => '0', 'external' => '0', - 'has_children' => '0', + 'has_children' => '1', 'expanded' => '0', 'weight' => '0', - 'depth' => '4', + 'depth' => '2', 'customized' => '0', - 'p1' => '1', - 'p2' => '20', - 'p3' => '779', - 'p4' => '823', + 'p1' => '16', + 'p2' => '29', + 'p3' => '0', + 'p4' => '0', 'p5' => '0', 'p6' => '0', 'p7' => '0', @@ -43824,26 +18923,26 @@ $connection->insert('menu_links') )) ->values(array( 'menu_name' => 'management', - 'mlid' => '824', - 'plid' => '712', - 'link_path' => 'admin/structure/types/manage/%/display/search_result', - 'router_path' => 'admin/structure/types/manage/%/display/search_result', - 'link_title' => 'Search result highlighting input', - 'options' => 'a:0:{}', + 'mlid' => '30', + 'plid' => '9', + 'link_path' => 'admin/content/comment', + 'router_path' => 'admin/content/comment', + 'link_title' => 'Comments', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:59:"List and edit site comments and the comment approval queue.";}}', 'module' => 'system', - 'hidden' => '-1', + 'hidden' => '0', 'external' => '0', 'has_children' => '0', 'expanded' => '0', - 'weight' => '4', - 'depth' => '6', + 'weight' => '0', + 'depth' => '3', 'customized' => '0', 'p1' => '1', - 'p2' => '20', - 'p3' => '34', - 'p4' => '114', - 'p5' => '712', - 'p6' => '824', + 'p2' => '9', + 'p3' => '30', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', 'p7' => '0', 'p8' => '0', 'p9' => '0', @@ -43851,25 +18950,25 @@ $connection->insert('menu_links') )) ->values(array( 'menu_name' => 'management', - 'mlid' => '825', - 'plid' => '807', - 'link_path' => 'admin/structure/views/view/%/preview/%', - 'router_path' => 'admin/structure/views/view/%/preview/%', - 'link_title' => '', + 'mlid' => '32', + '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' => '0', - 'depth' => '5', + 'weight' => '-10', + 'depth' => '3', 'customized' => '0', 'p1' => '1', - 'p2' => '20', - 'p3' => '779', - 'p4' => '807', - 'p5' => '825', + 'p2' => '9', + 'p3' => '32', + 'p4' => '0', + 'p5' => '0', 'p6' => '0', 'p7' => '0', 'p8' => '0', @@ -43878,24 +18977,24 @@ $connection->insert('menu_links') )) ->values(array( 'menu_name' => 'management', - 'mlid' => '826', - 'plid' => '779', - 'link_path' => 'admin/structure/views/ajax/preview/%/%', - 'router_path' => 'admin/structure/views/ajax/preview/%/%', - 'link_title' => '', - 'options' => 'a:0:{}', + 'mlid' => '33', + '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' => '0', + 'has_children' => '1', 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', + 'weight' => '-15', + 'depth' => '3', 'customized' => '0', 'p1' => '1', - 'p2' => '20', - 'p3' => '779', - 'p4' => '826', + 'p2' => '8', + 'p3' => '33', + 'p4' => '0', 'p5' => '0', 'p6' => '0', 'p7' => '0', @@ -43905,23 +19004,23 @@ $connection->insert('menu_links') )) ->values(array( 'menu_name' => 'management', - 'mlid' => '827', - 'plid' => '587', - 'link_path' => 'admin/help/replicate', - 'router_path' => 'admin/help/replicate', - 'link_title' => 'replicate', - 'options' => 'a:0:{}', + 'mlid' => '34', + 'plid' => '20', + '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' => '-1', + 'hidden' => '0', 'external' => '0', - 'has_children' => '0', + 'has_children' => '1', 'expanded' => '0', 'weight' => '0', 'depth' => '3', 'customized' => '0', 'p1' => '1', - 'p2' => '587', - 'p3' => '827', + 'p2' => '20', + 'p3' => '34', 'p4' => '0', 'p5' => '0', 'p6' => '0', @@ -43931,24 +19030,24 @@ $connection->insert('menu_links') 'updated' => '0', )) ->values(array( - 'menu_name' => 'management', - 'mlid' => '828', - 'plid' => '587', - 'link_path' => 'admin/help/replicate_paragraphs', - 'router_path' => 'admin/help/replicate_paragraphs', - 'link_title' => 'replicate_paragraphs', + 'menu_name' => 'navigation', + 'mlid' => '36', + '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' => '0', - 'depth' => '3', + 'weight' => '1', + 'depth' => '2', 'customized' => '0', - 'p1' => '1', - 'p2' => '587', - 'p3' => '828', + 'p1' => '5', + 'p2' => '36', + 'p3' => '0', 'p4' => '0', 'p5' => '0', 'p6' => '0', @@ -43957,9540 +19056,10687 @@ $connection->insert('menu_links') 'p9' => '0', 'updated' => '0', )) -->execute(); - -$connection->schema()->createTable('menu_router', array( - 'fields' => array( - 'path' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'load_functions' => array( - 'type' => 'blob', - 'not null' => TRUE, - 'size' => 'normal', - ), - 'to_arg_functions' => array( - 'type' => 'blob', - 'not null' => TRUE, - 'size' => 'normal', - ), - 'access_callback' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'access_arguments' => array( - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'normal', - ), - 'page_callback' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'page_arguments' => array( - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'normal', - ), - 'delivery_callback' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'fit' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'number_parts' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'context' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'tab_parent' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'tab_root' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'title' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'title_callback' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'title_arguments' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'theme_callback' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'theme_arguments' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'type' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'description' => array( - 'type' => 'text', - 'not null' => TRUE, - 'size' => 'normal', - ), - 'position' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'weight' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'include_file' => array( - 'type' => 'text', - 'not null' => FALSE, - 'size' => 'normal', - ), - ), - 'primary key' => array( - 'path', - ), - 'mysql_character_set' => 'utf8', -)); - -$connection->insert('menu_router') -->fields(array( - 'path', - 'load_functions', - 'to_arg_functions', - 'access_callback', - 'access_arguments', - 'page_callback', - 'page_arguments', - 'delivery_callback', - 'fit', - 'number_parts', - 'context', - 'tab_parent', - 'tab_root', - 'title', - 'title_callback', - 'title_arguments', - 'theme_callback', - 'theme_arguments', - 'type', - 'description', - 'position', - 'weight', - 'include_file', -)) -->values(array( - 'path' => 'admin', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'system_admin_menu_block_page', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '1', - 'number_parts' => '1', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin', - 'title' => 'Administration', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', - 'weight' => '9', - 'include_file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/appearance', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}', - 'page_callback' => 'system_themes_page', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/appearance', - 'title' => 'Appearance', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Select and configure your themes.', - 'position' => 'left', - 'weight' => '-6', - 'include_file' => 'modules/system/system.admin.inc', -)) ->values(array( - 'path' => 'admin/appearance/default', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}', - 'page_callback' => 'system_theme_default', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/appearance/default', - 'title' => 'Set default theme', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '37', + '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' => '37', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/appearance/disable', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}', - 'page_callback' => 'system_theme_disable', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/appearance/disable', - 'title' => 'Disable theme', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '38', + 'plid' => '16', + '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', - 'include_file' => 'modules/system/system.admin.inc', + 'depth' => '2', + 'customized' => '0', + 'p1' => '16', + 'p2' => '38', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/appearance/enable', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}', - 'page_callback' => 'system_theme_enable', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/appearance/enable', - 'title' => 'Enable theme', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '39', + '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', - 'include_file' => 'modules/system/system.admin.inc', + '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( - 'path' => 'admin/appearance/install', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'update_manager_access', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:27:"update_manager_install_form";i:1;s:5:"theme";}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '1', - 'tab_parent' => 'admin/appearance', - 'tab_root' => 'admin/appearance', - 'title' => 'Install new theme', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', - 'weight' => '25', - 'include_file' => 'modules/update/update.manager.inc', + 'menu_name' => 'management', + 'mlid' => '40', + 'plid' => '15', + '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' => '15', + 'p3' => '40', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/appearance/list', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}', - 'page_callback' => 'system_themes_page', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '1', - 'tab_parent' => 'admin/appearance', - 'tab_root' => 'admin/appearance', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => 'Select and configure your theme', - 'position' => '', - 'weight' => '-1', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '41', + 'plid' => '17', + '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' => '17', + 'p3' => '41', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/appearance/settings', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '1', - 'tab_parent' => 'admin/appearance', - 'tab_root' => 'admin/appearance', - 'title' => 'Settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => 'Configure default and theme specific settings.', - 'position' => '', - 'weight' => '20', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '42', + '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' => '42', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/appearance/settings/bartik', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_system_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:25:"themes/bartik/bartik.info";s:4:"name";s:6:"bartik";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:19:{s:4:"name";s:6:"Bartik";s:11:"description";s:48:"A flexible, recolorable theme with many regions.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:3:{s:14:"css/layout.css";s:28:"themes/bartik/css/layout.css";s:13:"css/style.css";s:27:"themes/bartik/css/style.css";s:14:"css/colors.css";s:28:"themes/bartik/css/colors.css";}s:5:"print";a:1:{s:13:"css/print.css";s:27:"themes/bartik/css/print.css";}}s:7:"regions";a:20:{s:6:"header";s:6:"Header";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:11:"highlighted";s:11:"Highlighted";s:8:"featured";s:8:"Featured";s:7:"content";s:7:"Content";s:13:"sidebar_first";s:13:"Sidebar first";s:14:"sidebar_second";s:14:"Sidebar second";s:14:"triptych_first";s:14:"Triptych first";s:15:"triptych_middle";s:15:"Triptych middle";s:13:"triptych_last";s:13:"Triptych last";s:18:"footer_firstcolumn";s:19:"Footer first column";s:19:"footer_secondcolumn";s:20:"Footer second column";s:18:"footer_thirdcolumn";s:19:"Footer third column";s:19:"footer_fourthcolumn";s:20:"Footer fourth column";s:6:"footer";s:6:"Footer";s:14:"dashboard_main";s:16:"Dashboard (main)";s:17:"dashboard_sidebar";s:19:"Dashboard (sidebar)";s:18:"dashboard_inactive";s:20:"Dashboard (inactive)";}s:8:"settings";a:1:{s:20:"shortcut_module_link";s:1:"0";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:6:"engine";s:11:"phptemplate";s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:28:"themes/bartik/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1498069849;s:15:"overlay_regions";a:5:{i:0;s:14:"dashboard_main";i:1;s:17:"dashboard_sidebar";i:2;s:18:"dashboard_inactive";i:3;s:7:"content";i:4;s:4:"help";}s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:3:{s:14:"css/layout.css";s:28:"themes/bartik/css/layout.css";s:13:"css/style.css";s:27:"themes/bartik/css/style.css";s:14:"css/colors.css";s:28:"themes/bartik/css/colors.css";}s:5:"print";a:1:{s:13:"css/print.css";s:27:"themes/bartik/css/print.css";}}s:6:"engine";s:11:"phptemplate";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:6:"bartik";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/appearance/settings', - 'tab_root' => 'admin/appearance', - 'title' => 'Bartik', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '43', + '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' => '43', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/appearance/settings/garland', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_system_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:19:{s:4:"name";s:7:"Garland";s:11:"description";s:111:"A multi-column theme which can be configured to modify colors and switch between fixed and fluid width layouts.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:8:"settings";a:1:{s:13:"garland_width";s:5:"fluid";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:6:"engine";s:11:"phptemplate";s:7:"regions";a:12:{s:13:"sidebar_first";s:12:"Left sidebar";s:14:"sidebar_second";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";s:11:"highlighted";s:11:"Highlighted";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:14:"dashboard_main";s:16:"Dashboard (main)";s:17:"dashboard_sidebar";s:19:"Dashboard (sidebar)";s:18:"dashboard_inactive";s:20:"Dashboard (inactive)";}s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1498069849;s:15:"overlay_regions";a:5:{i:0;s:14:"dashboard_main";i:1;s:17:"dashboard_sidebar";i:2;s:18:"dashboard_inactive";i:3;s:7:"content";i:4;s:4:"help";}s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:7:"garland";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/appearance/settings', - 'tab_root' => 'admin/appearance', - 'title' => 'Garland', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '44', + 'plid' => '20', + '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', - 'include_file' => 'modules/system/system.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '44', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/appearance/settings/global', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/appearance/settings', - 'tab_root' => 'admin/appearance', - 'title' => 'Global settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', - 'weight' => '-1', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '45', + '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' => '45', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/appearance/settings/seven', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_system_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:23:"themes/seven/seven.info";s:4:"name";s:5:"seven";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:19:{s:4:"name";s:5:"Seven";s:11:"description";s:65:"A simple one-column, tableless, fluid width administration theme.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:1:{s:6:"screen";a:2:{s:9:"reset.css";s:22:"themes/seven/reset.css";s:9:"style.css";s:22:"themes/seven/style.css";}}s:8:"settings";a:1:{s:20:"shortcut_module_link";s:1:"1";}s:7:"regions";a:8:{s:7:"content";s:7:"Content";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:13:"sidebar_first";s:13:"First sidebar";s:14:"dashboard_main";s:16:"Dashboard (main)";s:17:"dashboard_sidebar";s:19:"Dashboard (sidebar)";s:18:"dashboard_inactive";s:20:"Dashboard (inactive)";}s:14:"regions_hidden";a:3:{i:0;s:13:"sidebar_first";i:1;s:8:"page_top";i:2;s:11:"page_bottom";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:6:"engine";s:11:"phptemplate";s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:27:"themes/seven/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1498069849;s:15:"overlay_regions";a:5:{i:0;s:14:"dashboard_main";i:1;s:17:"dashboard_sidebar";i:2;s:18:"dashboard_inactive";i:3;s:7:"content";i:4;s:4:"help";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:1:{s:6:"screen";a:2:{s:9:"reset.css";s:22:"themes/seven/reset.css";s:9:"style.css";s:22:"themes/seven/style.css";}}s:6:"engine";s:11:"phptemplate";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:5:"seven";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/appearance/settings', - 'tab_root' => 'admin/appearance', - 'title' => 'Seven', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '46', + 'plid' => '17', + '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', - 'include_file' => 'modules/system/system.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '17', + 'p3' => '46', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/appearance/settings/stark', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_system_themes_access', - 'access_arguments' => "a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:23:\"themes/stark/stark.info\";s:4:\"name\";s:5:\"stark\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:18:{s:4:\"name\";s:5:\"Stark\";s:11:\"description\";s:208:\"This theme demonstrates Drupal's default HTML markup and CSS styles. To learn how to build your own theme and override Drupal's default code, see the Theming Guide.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.56\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1498069849\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:27:\"themes/stark/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1498069849;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:6:\"prefix\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:6:\"engine\";s:11:\"phptemplate\";}}", - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:5:"stark";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/appearance/settings', - 'tab_root' => 'admin/appearance', - 'title' => 'Stark', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '47', + 'plid' => '18', + 'link_path' => 'admin/reports/dblog', + 'router_path' => 'admin/reports/dblog', + 'link_title' => 'Recent log messages', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"View events that have recently been logged.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '-1', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '18', + 'p3' => '47', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/appearance/update', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'update_manager_access', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:26:"update_manager_update_form";i:1;s:5:"theme";}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '1', - 'tab_parent' => 'admin/appearance', - 'tab_root' => 'admin/appearance', - 'title' => 'Update', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '10', - 'include_file' => 'modules/update/update.manager.inc', + 'menu_name' => 'management', + 'mlid' => '48', + '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' => '48', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/compact', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'system_admin_compact_page', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/compact', - 'title' => 'Compact mode', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'navigation', + 'mlid' => '49', + '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' => '49', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'system_admin_config_page', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config', - 'title' => 'Configuration', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Administer settings.', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '50', + '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' => '50', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/content', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'system_admin_menu_block_page', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/content', - 'title' => 'Content authoring', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Settings related to formatting and authoring content.', - 'position' => 'left', - 'weight' => '-15', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '51', + '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' => '51', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/content/email', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:20:"email_admin_settings";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/content/email', - 'title' => 'Email Contact Form Settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Administer flood control settings for email contact forms', - 'position' => '', - 'weight' => '0', - 'include_file' => '', + 'menu_name' => 'management', + 'mlid' => '52', + 'plid' => '18', + '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' => '18', + 'p3' => '52', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/content/formats', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/content/formats', - 'title' => 'Text formats', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/filter/filter.admin.inc', + 'menu_name' => 'management', + 'mlid' => '53', + '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' => '53', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/content/formats/%', - 'load_functions' => 'a:1:{i:4;s:18:"filter_format_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}', - 'page_callback' => 'filter_admin_format_page', - 'page_arguments' => 'a:1:{i:0;i:4;}', - 'delivery_callback' => '', - 'fit' => '30', - 'number_parts' => '5', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/content/formats/%', - 'title' => '', - 'title_callback' => 'filter_admin_format_title', - 'title_arguments' => 'a:1:{i:0;i:4;}', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '54', + 'plid' => '18', + 'link_path' => 'admin/reports/access-denied', + 'router_path' => 'admin/reports/access-denied', + 'link_title' => "Top 'access denied' errors", + 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:35:\"View 'access denied' errors (403s).\";}}", + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/filter/filter.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '18', + 'p3' => '54', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/content/formats/%/disable', - 'load_functions' => 'a:1:{i:4;s:18:"filter_format_load";}', - 'to_arg_functions' => '', - 'access_callback' => '_filter_disable_format_access', - 'access_arguments' => 'a:1:{i:0;i:4;}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:20:"filter_admin_disable";i:1;i:4;}', - 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/content/formats/%/disable', - 'title' => 'Disable text format', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '55', + 'plid' => '18', + 'link_path' => 'admin/reports/page-not-found', + 'router_path' => 'admin/reports/page-not-found', + 'link_title' => "Top 'page not found' errors", + 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:36:\"View 'page not found' errors (404s).\";}}", + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/filter/filter.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '18', + 'p3' => '55', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/content/formats/add', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}', - 'page_callback' => 'filter_admin_format_page', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/content/formats', - 'tab_root' => 'admin/config/content/formats', - 'title' => 'Add text format', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', - 'weight' => '1', - 'include_file' => 'modules/filter/filter.admin.inc', + 'menu_name' => 'management', + 'mlid' => '56', + 'plid' => '15', + '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' => '15', + 'p3' => '56', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/content/formats/list', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/content/formats', - 'tab_root' => 'admin/config/content/formats', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/filter/filter.admin.inc', + 'menu_name' => 'management', + 'mlid' => '57', + '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' => '1', + 'expanded' => '0', + 'weight' => '-15', + '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( - 'path' => 'admin/config/date', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'system_admin_menu_block_page', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/date', - 'title' => 'Date API', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Settings for modules the use the Date API.', - 'position' => 'left', + 'menu_name' => 'navigation', + 'mlid' => '58', + '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', - 'include_file' => 'modules/system/system.admin.inc', + 'depth' => '2', + 'customized' => '0', + 'p1' => '5', + 'p2' => '58', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', +)) +->values(array( + 'menu_name' => 'navigation', + 'mlid' => '59', + 'plid' => '16', + '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' => '16', + 'p2' => '59', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/development', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'system_admin_menu_block_page', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/development', - 'title' => 'Development', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Development tools.', - 'position' => 'right', - 'weight' => '-10', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '60', + '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' => '60', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/development/logging', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:23:"system_logging_settings";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/development/logging', - 'title' => 'Logging and errors', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => "Settings for logging and alerts modules. Various modules can route Drupal's system events to different destinations, such as syslog, database, email, etc.", - 'position' => '', - 'weight' => '-15', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '61', + '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' => '61', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/development/maintenance', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:28:"system_site_maintenance_mode";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/development/maintenance', - 'title' => 'Maintenance mode', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Take the site offline for maintenance or bring it back online.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '66', + 'plid' => '45', + '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', - 'include_file' => 'modules/system/system.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '45', + 'p4' => '66', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/development/performance', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:27:"system_performance_settings";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/development/performance', - 'title' => 'Performance', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.', - 'position' => '', - 'weight' => '-20', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '67', + 'plid' => '53', + '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' => '53', + 'p4' => '67', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/development/testing', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:21:"administer unit tests";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:20:"simpletest_test_form";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/development/testing', - 'title' => 'Testing', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Run tests against Drupal core and your active modules. These tests help assure that your site code is working as designed.', - 'position' => '', - 'weight' => '-5', - 'include_file' => 'modules/simpletest/simpletest.pages.inc', + 'menu_name' => 'management', + 'mlid' => '68', + 'plid' => '28', + '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' => '20', + 'p3' => '28', + 'p4' => '68', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/development/testing/list', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:21:"administer unit tests";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:20:"simpletest_test_form";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/development/testing', - 'tab_root' => 'admin/config/development/testing', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '69', + 'plid' => '34', + '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', - 'include_file' => 'modules/simpletest/simpletest.pages.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '34', + 'p4' => '69', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/development/testing/results/%', - 'load_functions' => 'a:1:{i:5;N;}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:21:"administer unit tests";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:22:"simpletest_result_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '62', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/development/testing/results/%', - 'title' => 'Test result', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'View result of tests.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '70', + 'plid' => '44', + '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', - 'include_file' => 'modules/simpletest/simpletest.pages.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '44', + 'p4' => '70', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/development/testing/settings', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:21:"administer unit tests";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:24:"simpletest_settings_form";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/development/testing', - 'tab_root' => 'admin/config/development/testing', - 'title' => 'Settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '71', + 'plid' => '51', + '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', - 'include_file' => 'modules/simpletest/simpletest.pages.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '7', + 'p3' => '51', + 'p4' => '71', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/media', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'system_admin_menu_block_page', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/media', - 'title' => 'Media', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Media tools.', - 'position' => 'left', - 'weight' => '-10', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '72', + 'plid' => '50', + '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' => '50', + 'p4' => '72', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/media/file-system', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:27:"system_file_system_settings";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/media/file-system', - 'title' => 'File system', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Tell Drupal where to store uploaded files and how they are accessed.', - 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '73', + 'plid' => '53', + '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' => '53', + 'p4' => '73', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/media/image-styles', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}', - 'page_callback' => 'image_style_list', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/media/image-styles', - 'title' => 'Image styles', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Configure styles that can be used for resizing or adjusting images on display.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '74', + 'plid' => '48', + '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' => '48', + 'p4' => '74', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', +)) +->values(array( + 'menu_name' => 'management', + 'mlid' => '75', + 'plid' => '18', + 'link_path' => 'admin/reports/event/%', + 'router_path' => 'admin/reports/event/%', + 'link_title' => 'Details', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/image/image.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '18', + 'p3' => '75', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/media/image-styles/add', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:20:"image_style_add_form";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/media/image-styles', - 'tab_root' => 'admin/config/media/image-styles', - 'title' => 'Add style', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => 'Add a new image style.', - 'position' => '', - 'weight' => '2', - 'include_file' => 'modules/image/image.admin.inc', + 'menu_name' => 'management', + 'mlid' => '76', + 'plid' => '43', + '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' => '43', + 'p4' => '76', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/media/image-styles/delete/%', - 'load_functions' => 'a:1:{i:5;a:1:{s:16:"image_style_load";a:2:{i:0;N;i:1;s:1:"1";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:23:"image_style_delete_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '62', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/media/image-styles/delete/%', - 'title' => 'Delete style', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Delete an image style.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '78', + 'plid' => '51', + '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', - 'include_file' => 'modules/image/image.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '7', + 'p3' => '51', + 'p4' => '78', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/media/image-styles/edit/%', - 'load_functions' => 'a:1:{i:5;s:16:"image_style_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:16:"image_style_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '62', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/media/image-styles/edit/%', - 'title' => 'Edit style', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Configure an image style.', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/image/image.admin.inc', + 'menu_name' => 'management', + 'mlid' => '79', + 'plid' => '51', + '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' => '51', + 'p4' => '79', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/media/image-styles/edit/%/add/%', - 'load_functions' => 'a:2:{i:5;a:1:{s:16:"image_style_load";a:1:{i:0;i:5;}}i:7;a:1:{s:28:"image_effect_definition_load";a:1:{i:0;i:5;}}}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:3:{i:0;s:17:"image_effect_form";i:1;i:5;i:2;i:7;}', - 'delivery_callback' => '', - 'fit' => '250', - 'number_parts' => '8', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/media/image-styles/edit/%/add/%', - 'title' => 'Add image effect', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Add a new effect to a style.', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/image/image.admin.inc', + 'menu_name' => 'management', + 'mlid' => '80', + 'plid' => '45', + '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' => '45', + 'p4' => '80', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/media/image-styles/edit/%/effects/%', - 'load_functions' => 'a:2:{i:5;a:1:{s:16:"image_style_load";a:2:{i:0;i:5;i:1;s:1:"3";}}i:7;a:1:{s:17:"image_effect_load";a:2:{i:0;i:5;i:1;s:1:"3";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:3:{i:0;s:17:"image_effect_form";i:1;i:5;i:2;i:7;}', - 'delivery_callback' => '', - 'fit' => '250', - 'number_parts' => '8', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/media/image-styles/edit/%/effects/%', - 'title' => 'Edit image effect', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Edit an existing effect within a style.', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/image/image.admin.inc', + 'menu_name' => 'management', + 'mlid' => '81', + 'plid' => '43', + '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' => '43', + 'p4' => '81', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/media/image-styles/edit/%/effects/%/delete', - 'load_functions' => 'a:2:{i:5;a:1:{s:16:"image_style_load";a:2:{i:0;i:5;i:1;s:1:"3";}}i:7;a:1:{s:17:"image_effect_load";a:2:{i:0;i:5;i:1;s:1:"3";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:3:{i:0;s:24:"image_effect_delete_form";i:1;i:5;i:2;i:7;}', - 'delivery_callback' => '', - 'fit' => '501', - 'number_parts' => '9', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/media/image-styles/edit/%/effects/%/delete', - 'title' => 'Delete image effect', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Delete an existing effect from a style.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '82', + 'plid' => '40', + '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', - 'include_file' => 'modules/image/image.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '15', + 'p3' => '40', + 'p4' => '82', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/media/image-styles/list', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}', - 'page_callback' => 'image_style_list', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/media/image-styles', - 'tab_root' => 'admin/config/media/image-styles', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => 'List the current image styles on the site.', - 'position' => '', - 'weight' => '1', - 'include_file' => 'modules/image/image.admin.inc', + 'menu_name' => 'management', + 'mlid' => '83', + 'plid' => '34', + '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' => '20', + 'p3' => '34', + 'p4' => '83', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/media/image-styles/revert/%', - 'load_functions' => 'a:1:{i:5;a:1:{s:16:"image_style_load";a:2:{i:0;N;i:1;s:1:"2";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:23:"image_style_revert_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '62', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/media/image-styles/revert/%', - 'title' => 'Revert style', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Revert an image style.', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/image/image.admin.inc', + 'menu_name' => 'management', + 'mlid' => '84', + 'plid' => '44', + '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' => '20', + 'p3' => '44', + 'p4' => '84', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/media/image-toolkit', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:29:"system_image_toolkit_settings";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/media/image-toolkit', - 'title' => 'Image toolkit', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Choose which image toolkit to use if you have installed optional toolkits.', - 'position' => '', - 'weight' => '20', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '85', + 'plid' => '37', + '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' => '37', + 'p4' => '85', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/people', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'system_admin_menu_block_page', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/people', - 'title' => 'People', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Configure user accounts.', - 'position' => 'left', + 'menu_name' => 'management', + 'mlid' => '86', + 'plid' => '37', + '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' => '37', + 'p4' => '86', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', +)) +->values(array( + 'menu_name' => 'management', + 'mlid' => '89', + 'plid' => '37', + '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', - 'include_file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/config/people/accounts', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer users";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:19:"user_admin_settings";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/people/accounts', - 'title' => 'Account settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Configure default behavior of users, including registration requirements, e-mails, fields, and user pictures.', - 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/user/user.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '37', + 'p4' => '89', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/people/accounts/display', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:16:"administer users";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"user";i:2;s:4:"user";i:3;s:7:"default";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/people/accounts', - 'tab_root' => 'admin/config/people/accounts', - 'title' => 'Manage display', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '2', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'management', + 'mlid' => '90', + 'plid' => '46', + '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' => '17', + 'p3' => '46', + 'p4' => '90', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/people/accounts/display/default', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_field_ui_view_mode_menu_access', - 'access_arguments' => 'a:6:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:7:"default";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:16:"administer users";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"user";i:2;s:4:"user";i:3;s:7:"default";}', - 'delivery_callback' => '', - 'fit' => '63', - 'number_parts' => '6', - 'context' => '1', - 'tab_parent' => 'admin/config/people/accounts/display', - 'tab_root' => 'admin/config/people/accounts', - 'title' => 'Default', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '93', + 'plid' => '30', + 'link_path' => 'admin/content/comment/new', + 'router_path' => 'admin/content/comment/new', + 'link_title' => 'Published comments', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '-10', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '9', + 'p3' => '30', + 'p4' => '93', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/people/accounts/display/full', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_field_ui_view_mode_menu_access', - 'access_arguments' => 'a:6:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:4:"full";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:16:"administer users";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"user";i:2;s:4:"user";i:3;s:4:"full";}', - 'delivery_callback' => '', - 'fit' => '63', - 'number_parts' => '6', - 'context' => '1', - 'tab_parent' => 'admin/config/people/accounts/display', - 'tab_root' => 'admin/config/people/accounts', - 'title' => 'User account', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '94', + 'plid' => '60', + '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', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', -)) -->values(array( - 'path' => 'admin/config/people/accounts/fields', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:16:"administer users";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:4:"user";i:2;s:4:"user";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/people/accounts', - 'tab_root' => 'admin/config/people/accounts', - 'title' => 'Manage fields', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '1', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '60', + 'p4' => '94', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/people/accounts/fields/%', - 'load_functions' => 'a:1:{i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:1:"0";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:16:"administer users";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '62', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/people/accounts/fields/%', - 'title' => '', - 'title_callback' => 'field_ui_menu_title', - 'title_arguments' => 'a:1:{i:0;i:5;}', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'management', + 'mlid' => '95', + 'plid' => '48', + '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' => '48', + 'p4' => '95', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/people/accounts/fields/%/delete', - 'load_functions' => 'a:1:{i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:1:"0";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:16:"administer users";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:26:"field_ui_field_delete_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '125', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/config/people/accounts/fields/%', - 'tab_root' => 'admin/config/people/accounts/fields/%', - 'title' => 'Delete', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '10', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'management', + 'mlid' => '96', + 'plid' => '46', + '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' => '17', + 'p3' => '46', + 'p4' => '96', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/people/accounts/fields/%/edit', - 'load_functions' => 'a:1:{i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:1:"0";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:16:"administer users";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '125', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/config/people/accounts/fields/%', - 'tab_root' => 'admin/config/people/accounts/fields/%', - 'title' => 'Edit', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'management', + 'mlid' => '97', + 'plid' => '44', + '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' => '20', + 'p3' => '44', + 'p4' => '97', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/people/accounts/fields/%/field-settings', - 'load_functions' => 'a:1:{i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:1:"0";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:16:"administer users";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:28:"field_ui_field_settings_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '125', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/config/people/accounts/fields/%', - 'tab_root' => 'admin/config/people/accounts/fields/%', - 'title' => 'Field settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '98', + 'plid' => '51', + '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', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '7', + 'p3' => '51', + 'p4' => '98', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/people/accounts/fields/%/translate', - 'load_functions' => 'a:1:{i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:1:"0";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer users";}', - 'page_callback' => 'i18n_field_page_translate', - 'page_arguments' => 'a:1:{i:0;i:5;}', - 'delivery_callback' => '', - 'fit' => '125', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/config/people/accounts/fields/%', - 'tab_root' => 'admin/config/people/accounts/fields/%', - 'title' => 'Translate', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/i18n/i18n_field/i18n_field.pages.inc', + 'menu_name' => 'management', + 'mlid' => '99', + 'plid' => '53', + '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' => '53', + 'p4' => '99', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/people/accounts/fields/%/translate/%', - 'load_functions' => 'a:2:{i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:1:"0";i:3;s:4:"%map";}}i:7;a:1:{s:18:"i18n_language_load";a:4:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:1:"0";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer users";}', - 'page_callback' => 'i18n_field_page_translate', - 'page_arguments' => 'a:2:{i:0;i:5;i:1;i:7;}', - 'delivery_callback' => '', - 'fit' => '250', - 'number_parts' => '8', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/people/accounts/fields/%/translate/%', - 'title' => 'Instance', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '100', + 'plid' => '51', + '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', - 'include_file' => 'sites/all/modules/i18n/i18n_field/i18n_field.pages.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '7', + 'p3' => '51', + 'p4' => '100', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/people/accounts/fields/%/widget-type', - 'load_functions' => 'a:1:{i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:1:"0";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:16:"administer users";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:25:"field_ui_widget_type_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '125', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/config/people/accounts/fields/%', - 'tab_root' => 'admin/config/people/accounts/fields/%', - 'title' => 'Widget type', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '101', + 'plid' => '33', + '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', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '33', + 'p4' => '101', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/people/accounts/settings', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer users";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:19:"user_admin_settings";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/people/accounts', - 'tab_root' => 'admin/config/people/accounts', - 'title' => 'Settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/user/user.admin.inc', + 'menu_name' => 'management', + 'mlid' => '102', + 'plid' => '30', + 'link_path' => 'admin/content/comment/approval', + 'router_path' => 'admin/content/comment/approval', + 'link_title' => 'Unapproved comments', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '9', + 'p3' => '30', + 'p4' => '102', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/people/ip-blocking', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:18:"block IP addresses";}', - 'page_callback' => 'system_ip_blocking', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/people/ip-blocking', - 'title' => 'IP address blocking', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Manage blocked IP addresses.', - 'position' => '', - 'weight' => '10', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '103', + 'plid' => '56', + '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' => '15', + 'p3' => '56', + 'p4' => '103', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/people/ip-blocking/delete/%', - 'load_functions' => 'a:1:{i:5;s:15:"blocked_ip_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:18:"block IP addresses";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:25:"system_ip_blocking_delete";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '62', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/people/ip-blocking/delete/%', - 'title' => 'Delete IP address', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '104', + 'plid' => '38', + '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', - 'include_file' => 'modules/system/system.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '16', + 'p2' => '38', + 'p3' => '104', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'system_admin_menu_block_page', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/regional', - 'title' => 'Regional and language', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Regional settings, localization and translation.', - 'position' => 'left', - 'weight' => '-5', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '105', + 'plid' => '101', + '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' => '33', + 'p4' => '101', + 'p5' => '105', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/date-time', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:25:"system_date_time_settings";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/regional/date-time', - 'title' => 'Date and time', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Configure display formats for date and time.', - 'position' => '', - 'weight' => '-15', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '110', + 'plid' => '101', + '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' => '33', + 'p4' => '101', + 'p5' => '110', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/date-time/formats', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'system_date_time_formats', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/regional/date-time', - 'tab_root' => 'admin/config/regional/date-time', - 'title' => 'Formats', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => 'Configure display format strings for date and time.', - 'position' => '', - 'weight' => '-9', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '111', + 'plid' => '28', + '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' => '20', + 'p3' => '28', + 'p4' => '111', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/date-time/formats/%/delete', - 'load_functions' => 'a:1:{i:5;N;}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:30:"system_date_delete_format_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '125', - 'number_parts' => '7', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/regional/date-time/formats/%/delete', - 'title' => 'Delete date format', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Allow users to delete a configured date format.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '112', + 'plid' => '67', + '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', - 'include_file' => 'modules/system/system.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '53', + 'p4' => '67', + 'p5' => '112', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/date-time/formats/%/edit', - 'load_functions' => 'a:1:{i:5;N;}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:34:"system_configure_date_formats_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '125', - 'number_parts' => '7', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/regional/date-time/formats/%/edit', - 'title' => 'Edit date format', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Allow users to edit a configured date format.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '113', + 'plid' => '44', + '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', - 'include_file' => 'modules/system/system.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '44', + 'p4' => '113', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/date-time/formats/add', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:34:"system_configure_date_formats_form";}', - 'delivery_callback' => '', - 'fit' => '63', - 'number_parts' => '6', - 'context' => '1', - 'tab_parent' => 'admin/config/regional/date-time/formats', - 'tab_root' => 'admin/config/regional/date-time', - 'title' => 'Add format', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => 'Allow users to add additional date formats.', - 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '114', + 'plid' => '34', + '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' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/date-time/formats/lookup', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'system_date_time_lookup', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '63', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/regional/date-time/formats/lookup', - 'title' => 'Date and time lookup', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '116', + 'plid' => '74', + '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' => '48', + 'p4' => '74', + 'p5' => '116', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/date-time/locale', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'locale_date_format_language_overview_page', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/regional/date-time', - 'tab_root' => 'admin/config/regional/date-time', - 'title' => 'Localize', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => 'Configure date formats for each locale', - 'position' => '', - 'weight' => '-8', - 'include_file' => 'modules/locale/locale.admin.inc', + 'menu_name' => 'management', + 'mlid' => '117', + 'plid' => '28', + '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' => '20', + 'p3' => '28', + 'p4' => '117', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/date-time/locale/%/edit', - 'load_functions' => 'a:1:{i:5;N;}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:23:"locale_date_format_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '125', - 'number_parts' => '7', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/regional/date-time/locale/%/edit', - 'title' => 'Localize date formats', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Configure date formats for each locale', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '118', + 'plid' => '101', + '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', - 'include_file' => 'modules/locale/locale.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '33', + 'p4' => '101', + 'p5' => '118', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/date-time/locale/%/reset', - 'load_functions' => 'a:1:{i:5;N;}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:29:"locale_date_format_reset_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '125', - 'number_parts' => '7', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/regional/date-time/locale/%/reset', - 'title' => 'Reset date formats', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Reset localized date formats to global defaults', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/locale/locale.admin.inc', + 'menu_name' => 'management', + 'mlid' => '119', + 'plid' => '67', + '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' => '53', + 'p4' => '67', + 'p5' => '119', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/date-time/types', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:25:"system_date_time_settings";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/regional/date-time', - 'tab_root' => 'admin/config/regional/date-time', - 'title' => 'Types', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => 'Configure display formats for date and time.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '124', + 'plid' => '66', + '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', - 'include_file' => 'modules/system/system.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '45', + 'p4' => '66', + 'p5' => '124', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/date-time/types/%/delete', - 'load_functions' => 'a:1:{i:5;N;}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:35:"system_delete_date_format_type_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '125', - 'number_parts' => '7', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/regional/date-time/types/%/delete', - 'title' => 'Delete date type', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Allow users to delete a configured date type.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '125', + 'plid' => '28', + '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', - 'include_file' => 'modules/system/system.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '28', + 'p4' => '125', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/date-time/types/add', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:32:"system_add_date_format_type_form";}', - 'delivery_callback' => '', - 'fit' => '63', - 'number_parts' => '6', - 'context' => '1', - 'tab_parent' => 'admin/config/regional/date-time/types', - 'tab_root' => 'admin/config/regional/date-time', - 'title' => 'Add date type', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => 'Add new date type.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '126', + 'plid' => '28', + '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' => '20', + 'p3' => '28', + 'p4' => '126', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', +)) +->values(array( + 'menu_name' => 'management', + 'mlid' => '127', + 'plid' => '74', + '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', - 'include_file' => 'modules/system/system.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '48', + 'p4' => '74', + 'p5' => '127', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/i18n', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:20:"variable_module_form";i:1;s:4:"i18n";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/regional/i18n', - 'title' => 'Multilingual settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Configure extended options for multilingual content and translations.', - 'position' => '', - 'weight' => '10', - 'include_file' => '', + 'menu_name' => 'navigation', + 'mlid' => '128', + 'plid' => '49', + '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' => '49', + 'p3' => '128', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/i18n/configure', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:20:"variable_module_form";i:1;s:4:"i18n";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/regional/i18n', - 'tab_root' => 'admin/config/regional/i18n', - 'title' => 'Multilingual system', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => 'Configure extended options for multilingual content and translations.', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '129', + 'plid' => '49', + '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', - 'include_file' => '', + 'depth' => '3', + 'customized' => '0', + 'p1' => '5', + 'p2' => '49', + 'p3' => '129', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/i18n/node', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:19:"variable_group_form";i:1;s:9:"i18n_node";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/regional/i18n', - 'tab_root' => 'admin/config/regional/i18n', - 'title' => 'Node options', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => 'Configure extended options for multilingual content and translations.', - 'position' => '', - 'weight' => '10', - 'include_file' => '', + 'menu_name' => 'navigation', + 'mlid' => '130', + 'plid' => '49', + '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' => '49', + 'p3' => '130', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/i18n/strings', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:18:"variable_edit_form";i:1;a:2:{i:0;s:27:"i18n_string_allowed_formats";i:1;s:27:"i18n_string_source_language";}}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/regional/i18n', - 'tab_root' => 'admin/config/regional/i18n', - 'title' => 'Strings', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => 'Options for user defined strings.', - 'position' => '', - 'weight' => '20', - 'include_file' => '', + 'menu_name' => 'management', + 'mlid' => '136', + 'plid' => '117', + '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' => '20', + 'p3' => '28', + 'p4' => '117', + 'p5' => '136', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/language', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:30:"locale_languages_overview_form";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/regional/language', - 'title' => 'Languages', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Configure languages for content and the user interface.', - 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/locale/locale.admin.inc', + 'menu_name' => 'management', + 'mlid' => '141', + 'plid' => '125', + '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' => '20', + 'p3' => '28', + 'p4' => '125', + 'p5' => '141', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/language/add', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}', - 'page_callback' => 'locale_languages_add_screen', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/regional/language', - 'tab_root' => 'admin/config/regional/language', - 'title' => 'Add language', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', - 'weight' => '5', - 'include_file' => 'modules/locale/locale.admin.inc', + 'menu_name' => 'management', + 'mlid' => '142', + 'plid' => '126', + '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' => '20', + 'p3' => '28', + 'p4' => '126', + 'p5' => '142', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', +)) +->values(array( + 'menu_name' => 'management', + 'mlid' => '143', + 'plid' => '127', + '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' => '48', + 'p4' => '74', + 'p5' => '127', + 'p6' => '143', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/language/configure', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:31:"locale_languages_configure_form";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/regional/language', - 'tab_root' => 'admin/config/regional/language', - 'title' => 'Detection and selection', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '10', - 'include_file' => 'modules/locale/locale.admin.inc', + 'menu_name' => 'management', + 'mlid' => '144', + 'plid' => '116', + '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' => '48', + 'p4' => '74', + 'p5' => '116', + 'p6' => '144', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/language/configure/session', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:38:"locale_language_providers_session_form";}', - 'delivery_callback' => '', - 'fit' => '63', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/regional/language/configure/session', - 'title' => 'Session language detection configuration', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '145', + 'plid' => '113', + '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', - 'include_file' => 'modules/locale/locale.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '44', + 'p4' => '113', + 'p5' => '145', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/language/configure/url', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:34:"locale_language_providers_url_form";}', - 'delivery_callback' => '', - 'fit' => '63', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/regional/language/configure/url', - 'title' => 'URL language detection configuration', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '146', + 'plid' => '28', + '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', - 'include_file' => 'modules/locale/locale.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '28', + 'p4' => '146', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/language/delete/%', - 'load_functions' => 'a:1:{i:5;N;}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:28:"locale_languages_delete_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '62', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/regional/language/delete/%', - 'title' => 'Confirm', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '147', + 'plid' => '29', + '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', - 'include_file' => 'modules/locale/locale.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '16', + 'p2' => '29', + 'p3' => '147', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/language/edit/%', - 'load_functions' => 'a:1:{i:5;N;}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:26:"locale_languages_edit_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '62', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/regional/language/edit/%', - 'title' => 'Edit language', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '148', + 'plid' => '114', + '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', - 'include_file' => 'modules/locale/locale.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '148', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/language/overview', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:30:"locale_languages_overview_form";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/regional/language', - 'tab_root' => 'admin/config/regional/language', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '149', + 'plid' => '80', + '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', - 'include_file' => 'modules/locale/locale.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '45', + 'p4' => '80', + 'p5' => '149', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/settings', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:24:"system_regional_settings";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/regional/settings', - 'title' => 'Regional settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => "Settings for the site's default time zone and country.", - 'position' => '', - 'weight' => '-20', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '150', + 'plid' => '67', + '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' => '53', + 'p4' => '67', + 'p5' => '150', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/translate', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}', - 'page_callback' => 'locale_translate_overview_screen', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/regional/translate', - 'title' => 'Translate interface', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Translate the built in interface and optionally other text.', - 'position' => '', - 'weight' => '-5', - 'include_file' => 'modules/locale/locale.admin.inc', + 'menu_name' => 'management', + 'mlid' => '151', + 'plid' => '113', + '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' => '20', + 'p3' => '44', + 'p4' => '113', + 'p5' => '151', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/translate/delete/%', - 'load_functions' => 'a:1:{i:5;N;}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}', - 'page_callback' => 'locale_translate_delete_page', - 'page_arguments' => 'a:1:{i:0;i:5;}', - 'delivery_callback' => '', - 'fit' => '62', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/regional/translate/delete/%', - 'title' => 'Delete string', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '152', + 'plid' => '44', + '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', - 'include_file' => 'modules/locale/locale.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '44', + 'p4' => '152', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/translate/edit/%', - 'load_functions' => 'a:1:{i:5;N;}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:38:"i18n_string_locale_translate_edit_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '62', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/regional/translate/edit/%', - 'title' => 'Edit string', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '153', + 'plid' => '96', + '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', - 'include_file' => 'sites/all/modules/i18n/i18n_string/i18n_string.pages.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '17', + 'p3' => '46', + 'p4' => '96', + 'p5' => '153', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/translate/export', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}', - 'page_callback' => 'locale_translate_export_screen', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/regional/translate', - 'tab_root' => 'admin/config/regional/translate', - 'title' => 'Export', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '30', - 'include_file' => 'modules/locale/locale.admin.inc', + 'menu_name' => 'management', + 'mlid' => '154', + 'plid' => '105', + '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' => '33', + 'p4' => '101', + 'p5' => '105', + 'p6' => '154', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/translate/i18n_string', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:30:"i18n_string_admin_refresh_form";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/regional/translate', - 'tab_root' => 'admin/config/regional/translate', - 'title' => 'Strings', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => 'Refresh user defined strings.', - 'position' => '', - 'weight' => '20', - 'include_file' => 'sites/all/modules/i18n/i18n_string/i18n_string.admin.inc', + 'menu_name' => 'management', + 'mlid' => '155', + 'plid' => '114', + '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' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '155', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/translate/import', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:28:"locale_translate_import_form";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/regional/translate', - 'tab_root' => 'admin/config/regional/translate', - 'title' => 'Import', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '20', - 'include_file' => 'modules/locale/locale.admin.inc', + 'menu_name' => 'management', + 'mlid' => '156', + 'plid' => '113', + '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' => '20', + 'p3' => '44', + 'p4' => '113', + 'p5' => '156', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/translate/overview', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}', - 'page_callback' => 'locale_translate_overview_screen', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/regional/translate', - 'tab_root' => 'admin/config/regional/translate', - 'title' => 'Overview', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '157', + 'plid' => '44', + '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', - 'include_file' => 'modules/locale/locale.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '44', + 'p4' => '157', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/regional/translate/translate', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}', - 'page_callback' => 'locale_translate_seek_screen', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/regional/translate', - 'tab_root' => 'admin/config/regional/translate', - 'title' => 'Translate', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '10', - 'include_file' => 'modules/locale/locale.admin.inc', + 'menu_name' => 'management', + 'mlid' => '158', + 'plid' => '96', + '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' => '17', + 'p3' => '46', + 'p4' => '96', + 'p5' => '158', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/search', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'system_admin_menu_block_page', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/search', - 'title' => 'Search and metadata', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Local site search, metadata and SEO.', - 'position' => 'left', + 'menu_name' => 'management', + 'mlid' => '159', + 'plid' => '113', + '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', - 'include_file' => 'modules/system/system.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '44', + 'p4' => '113', + 'p5' => '159', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/search/clean-urls', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:25:"system_clean_url_settings";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/search/clean-urls', - 'title' => 'Clean URLs', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Enable or disable clean URLs for your site.', - 'position' => '', - 'weight' => '5', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '160', + 'plid' => '44', + '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' => '20', + 'p3' => '44', + 'p4' => '160', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/search/clean-urls/check', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'drupal_json_output', - 'page_arguments' => 'a:1:{i:0;a:1:{s:6:"status";b:1;}}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/search/clean-urls/check', - 'title' => 'Clean URL check', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '161', + 'plid' => '114', + 'link_path' => 'admin/structure/types/manage/%/comment/display', + 'router_path' => 'admin/structure/types/manage/%/comment/display', + 'link_title' => 'Comment display', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '4', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '161', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/search/path', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}', - 'page_callback' => 'path_admin_overview', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/search/path', - 'title' => 'URL aliases', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => "Change your site's URL paths by aliasing them.", - 'position' => '', - 'weight' => '-5', - 'include_file' => 'modules/path/path.admin.inc', + 'menu_name' => 'management', + 'mlid' => '162', + 'plid' => '114', + 'link_path' => 'admin/structure/types/manage/%/comment/fields', + 'router_path' => 'admin/structure/types/manage/%/comment/fields', + 'link_title' => 'Comment fields', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '1', + 'expanded' => '0', + 'weight' => '3', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '162', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/search/path/add', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}', - 'page_callback' => 'path_admin_edit', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/search/path', - 'tab_root' => 'admin/config/search/path', - 'title' => 'Add alias', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '163', + 'plid' => '146', + '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', - 'include_file' => 'modules/path/path.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '28', + 'p4' => '146', + 'p5' => '163', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/search/path/delete/%', - 'load_functions' => 'a:1:{i:5;s:9:"path_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:25:"path_admin_delete_confirm";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '62', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/search/path/delete/%', - 'title' => 'Delete alias', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '164', + 'plid' => '146', + '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', - 'include_file' => 'modules/path/path.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '28', + 'p4' => '146', + 'p5' => '164', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/search/path/edit/%', - 'load_functions' => 'a:1:{i:5;s:9:"path_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}', - 'page_callback' => 'path_admin_edit', - 'page_arguments' => 'a:1:{i:0;i:5;}', - 'delivery_callback' => '', - 'fit' => '62', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/search/path/edit/%', - 'title' => 'Edit alias', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '165', + 'plid' => '116', + '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', - 'include_file' => 'modules/path/path.admin.inc', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '48', + 'p4' => '74', + 'p5' => '116', + 'p6' => '165', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/search/path/list', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}', - 'page_callback' => 'path_admin_overview', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/search/path', - 'tab_root' => 'admin/config/search/path', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/path/path.admin.inc', + 'menu_name' => 'management', + 'mlid' => '166', + 'plid' => '127', + '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' => '48', + 'p4' => '74', + 'p5' => '127', + 'p6' => '166', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/search/settings', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer search";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:21:"search_admin_settings";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/search/settings', - 'title' => 'Search settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Configure relevance settings for search and other indexing options.', - 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/search/search.admin.inc', + 'menu_name' => 'management', + 'mlid' => '167', + 'plid' => '116', + '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' => '48', + 'p4' => '74', + 'p5' => '116', + 'p6' => '167', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/search/settings/reindex', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer search";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:22:"search_reindex_confirm";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/search/settings/reindex', - 'title' => 'Clear index', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '168', + 'plid' => '44', + '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', - 'include_file' => 'modules/search/search.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '44', + 'p4' => '168', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/services', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'system_admin_menu_block_page', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/services', - 'title' => 'Web services', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Tools related to web services.', - 'position' => 'right', + 'menu_name' => 'management', + 'mlid' => '169', + 'plid' => '44', + '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', - 'include_file' => 'modules/system/system.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '44', + 'p4' => '169', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/services/aggregator', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', - 'page_callback' => 'aggregator_admin_overview', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/services/aggregator', - 'title' => 'Feed aggregator', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => "Configure which content your site aggregates from other sites, how often it polls them, and how they're categorized.", - 'position' => '', - 'weight' => '10', - 'include_file' => 'modules/aggregator/aggregator.admin.inc', + 'menu_name' => 'management', + 'mlid' => '170', + 'plid' => '44', + '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' => '20', + 'p3' => '44', + 'p4' => '170', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/services/aggregator/add/category', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:24:"aggregator_form_category";}', - 'delivery_callback' => '', - 'fit' => '63', - 'number_parts' => '6', - 'context' => '1', - 'tab_parent' => 'admin/config/services/aggregator', - 'tab_root' => 'admin/config/services/aggregator', - 'title' => 'Add category', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '171', + 'plid' => '44', + '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', - 'include_file' => 'modules/aggregator/aggregator.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '44', + 'p4' => '171', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/services/aggregator/add/feed', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:20:"aggregator_form_feed";}', - 'delivery_callback' => '', - 'fit' => '63', - 'number_parts' => '6', - 'context' => '1', - 'tab_parent' => 'admin/config/services/aggregator', - 'tab_root' => 'admin/config/services/aggregator', - 'title' => 'Add feed', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '172', + 'plid' => '0', + 'link_path' => 'search', + 'router_path' => 'search', + 'link_title' => 'Search', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/aggregator/aggregator.admin.inc', + 'depth' => '1', + 'customized' => '0', + 'p1' => '172', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/services/aggregator/add/opml', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:20:"aggregator_form_opml";}', - 'delivery_callback' => '', - 'fit' => '63', - 'number_parts' => '6', - 'context' => '1', - 'tab_parent' => 'admin/config/services/aggregator', - 'tab_root' => 'admin/config/services/aggregator', - 'title' => 'Import OPML', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/aggregator/aggregator.admin.inc', + 'menu_name' => 'navigation', + 'mlid' => '173', + 'plid' => '172', + 'link_path' => 'search/node', + 'router_path' => 'search/node', + 'link_title' => 'Content', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '-10', + 'depth' => '2', + 'customized' => '0', + 'p1' => '172', + 'p2' => '173', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/services/aggregator/edit/category/%', - 'load_functions' => 'a:1:{i:6;s:24:"aggregator_category_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:24:"aggregator_form_category";i:1;i:6;}', - 'delivery_callback' => '', - 'fit' => '126', - 'number_parts' => '7', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/services/aggregator/edit/category/%', - 'title' => 'Edit category', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '174', + 'plid' => '172', + 'link_path' => 'search/user', + 'router_path' => 'search/user', + 'link_title' => 'Users', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/aggregator/aggregator.admin.inc', + 'depth' => '2', + 'customized' => '0', + 'p1' => '172', + 'p2' => '174', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/services/aggregator/edit/feed/%', - 'load_functions' => 'a:1:{i:6;s:20:"aggregator_feed_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:20:"aggregator_form_feed";i:1;i:6;}', - 'delivery_callback' => '', - 'fit' => '126', - 'number_parts' => '7', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/services/aggregator/edit/feed/%', - 'title' => 'Edit feed', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '175', + 'plid' => '1', + 'link_path' => 'admin/help', + 'router_path' => 'admin/help', + 'link_title' => 'Help', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:48:"Reference for usage, configuration, and modules.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '9', + 'depth' => '2', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', +)) +->values(array( + 'menu_name' => 'navigation', + 'mlid' => '176', + 'plid' => '0', + 'link_path' => 'taxonomy/term/%', + 'router_path' => 'taxonomy/term/%', + 'link_title' => 'Taxonomy term', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/aggregator/aggregator.admin.inc', + 'depth' => '1', + 'customized' => '0', + 'p1' => '176', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/services/aggregator/list', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', - 'page_callback' => 'aggregator_admin_overview', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/services/aggregator', - 'tab_root' => 'admin/config/services/aggregator', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/aggregator/aggregator.admin.inc', + 'menu_name' => 'navigation', + 'mlid' => '177', + 'plid' => '173', + 'link_path' => 'search/node/%', + 'router_path' => 'search/node/%', + 'link_title' => 'Content', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '3', + 'customized' => '0', + 'p1' => '172', + 'p2' => '173', + 'p3' => '177', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/services/aggregator/remove/%', - 'load_functions' => 'a:1:{i:5;s:20:"aggregator_feed_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:28:"aggregator_admin_remove_feed";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '62', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/services/aggregator/remove/%', - 'title' => 'Remove items', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '178', + 'plid' => '18', + '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', - 'include_file' => 'modules/aggregator/aggregator.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '18', + 'p3' => '178', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/services/aggregator/settings', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:21:"aggregator_admin_form";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/services/aggregator', - 'tab_root' => 'admin/config/services/aggregator', - 'title' => 'Settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => 'Configure the behavior of the feed aggregator, including when to discard feed items and how to present feed items and categories.', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '179', + 'plid' => '16', + 'link_path' => 'user/%/shortcuts', + 'router_path' => 'user/%/shortcuts', + 'link_title' => 'Shortcuts', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/aggregator/aggregator.admin.inc', + 'depth' => '2', + 'customized' => '0', + 'p1' => '16', + 'p2' => '179', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/services/aggregator/update/%', - 'load_functions' => 'a:1:{i:5;s:20:"aggregator_feed_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', - 'page_callback' => 'aggregator_admin_refresh_feed', - 'page_arguments' => 'a:1:{i:0;i:5;}', - 'delivery_callback' => '', - 'fit' => '62', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/services/aggregator/update/%', - 'title' => 'Update items', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '180', + 'plid' => '20', + 'link_path' => 'admin/structure/taxonomy', + 'router_path' => 'admin/structure/taxonomy', + 'link_title' => 'Taxonomy', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:67:"Manage tagging, categorization, and classification of your content.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '1', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/aggregator/aggregator.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '180', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/services/rss-publishing', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:25:"system_rss_feeds_settings";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/services/rss-publishing', - 'title' => 'RSS publishing', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Configure the site description, the number of items per feed and whether feeds should be titles/teasers/full-text.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '181', + 'plid' => '18', + 'link_path' => 'admin/reports/search', + 'router_path' => 'admin/reports/search', + 'link_title' => 'Top search phrases', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:33:"View most popular search phrases.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/config/system', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'system_admin_menu_block_page', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/system', - 'title' => 'System', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'General system related configuration.', - 'position' => 'right', - 'weight' => '-20', - 'include_file' => 'modules/system/system.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '18', + 'p3' => '181', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/system/actions', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}', - 'page_callback' => 'system_actions_manage', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/system/actions', - 'title' => 'Actions', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Manage the actions defined for your site.', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '182', + 'plid' => '174', + 'link_path' => 'search/user/%', + 'router_path' => 'search/user/%', + 'link_title' => 'Users', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/system/system.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '172', + 'p2' => '174', + 'p3' => '182', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/system/actions/configure', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:24:"system_actions_configure";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/system/actions/configure', - 'title' => 'Configure an advanced action', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '183', + 'plid' => '175', + 'link_path' => 'admin/help/block', + 'router_path' => 'admin/help/block', + 'link_title' => 'block', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/system/system.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '183', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/system/actions/delete/%', - 'load_functions' => 'a:1:{i:5;s:12:"actions_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:26:"system_actions_delete_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '62', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/system/actions/delete/%', - 'title' => 'Delete action', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Delete an action.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '184', + 'plid' => '175', + 'link_path' => 'admin/help/color', + 'router_path' => 'admin/help/color', + 'link_title' => 'color', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/system/system.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '184', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/system/actions/manage', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}', - 'page_callback' => 'system_actions_manage', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/system/actions', - 'tab_root' => 'admin/config/system/actions', - 'title' => 'Manage actions', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => 'Manage the actions defined for your site.', - 'position' => '', - 'weight' => '-2', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '185', + 'plid' => '175', + 'link_path' => 'admin/help/comment', + 'router_path' => 'admin/help/comment', + 'link_title' => 'comment', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '185', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/system/actions/orphan', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}', - 'page_callback' => 'system_actions_remove_orphans', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/system/actions/orphan', - 'title' => 'Remove orphans', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '186', + 'plid' => '175', + 'link_path' => 'admin/help/contextual', + 'router_path' => 'admin/help/contextual', + 'link_title' => 'contextual', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/system/system.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '186', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/system/cron', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:20:"system_cron_settings";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/system/cron', - 'title' => 'Cron', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Manage automatic site maintenance tasks.', - 'position' => '', - 'weight' => '20', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '188', + 'plid' => '175', + 'link_path' => 'admin/help/dblog', + 'router_path' => 'admin/help/dblog', + 'link_title' => 'dblog', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '188', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/system/site-information', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:32:"system_site_information_settings";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/system/site-information', - 'title' => 'Site information', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Change site name, e-mail address, slogan, default front page, and number of posts per page, error pages.', - 'position' => '', - 'weight' => '-20', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '189', + 'plid' => '175', + 'link_path' => 'admin/help/field', + 'router_path' => 'admin/help/field', + 'link_title' => 'field', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '189', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/system/statistics', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:21:"administer statistics";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:24:"statistics_settings_form";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/system/statistics', - 'title' => 'Statistics', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Control details about what and how your site logs access statistics.', - 'position' => '', - 'weight' => '-15', - 'include_file' => 'modules/statistics/statistics.admin.inc', + 'menu_name' => 'management', + 'mlid' => '190', + 'plid' => '175', + 'link_path' => 'admin/help/field_sql_storage', + 'router_path' => 'admin/help/field_sql_storage', + 'link_title' => 'field_sql_storage', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '190', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/user-interface', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'system_admin_menu_block_page', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/user-interface', - 'title' => 'User interface', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Tools that enhance the user interface.', - 'position' => 'right', - 'weight' => '-15', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '191', + 'plid' => '175', + 'link_path' => 'admin/help/field_ui', + 'router_path' => 'admin/help/field_ui', + 'link_title' => 'field_ui', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '191', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/user-interface/shortcut', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:20:"administer shortcuts";}', - 'page_callback' => 'shortcut_set_admin', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/user-interface/shortcut', - 'title' => 'Shortcuts', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Add and modify shortcut sets.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '192', + 'plid' => '175', + 'link_path' => 'admin/help/file', + 'router_path' => 'admin/help/file', + 'link_title' => 'file', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/shortcut/shortcut.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '192', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/user-interface/shortcut/%', - 'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'shortcut_set_edit_access', - 'access_arguments' => 'a:1:{i:0;i:4;}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:22:"shortcut_set_customize";i:1;i:4;}', - 'delivery_callback' => '', - 'fit' => '30', - 'number_parts' => '5', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/user-interface/shortcut/%', - 'title' => 'Edit shortcuts', - 'title_callback' => 'shortcut_set_title_callback', - 'title_arguments' => 'a:1:{i:0;i:4;}', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '193', + 'plid' => '175', + 'link_path' => 'admin/help/filter', + 'router_path' => 'admin/help/filter', + 'link_title' => 'filter', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/shortcut/shortcut.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '193', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/user-interface/shortcut/%/add-link', - 'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'shortcut_set_edit_access', - 'access_arguments' => 'a:1:{i:0;i:4;}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:17:"shortcut_link_add";i:1;i:4;}', - 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', - 'context' => '1', - 'tab_parent' => 'admin/config/user-interface/shortcut/%', - 'tab_root' => 'admin/config/user-interface/shortcut/%', - 'title' => 'Add shortcut', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '194', + 'plid' => '175', + 'link_path' => 'admin/help/help', + 'router_path' => 'admin/help/help', + 'link_title' => 'help', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/shortcut/shortcut.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '194', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/user-interface/shortcut/%/add-link-inline', - 'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'shortcut_set_edit_access', - 'access_arguments' => 'a:1:{i:0;i:4;}', - 'page_callback' => 'shortcut_link_add_inline', - 'page_arguments' => 'a:1:{i:0;i:4;}', - 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/user-interface/shortcut/%/add-link-inline', - 'title' => 'Add shortcut', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '195', + 'plid' => '175', + 'link_path' => 'admin/help/image', + 'router_path' => 'admin/help/image', + 'link_title' => 'image', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/shortcut/shortcut.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '195', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/user-interface/shortcut/%/delete', - 'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'shortcut_set_delete_access', - 'access_arguments' => 'a:1:{i:0;i:4;}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:24:"shortcut_set_delete_form";i:1;i:4;}', - 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/user-interface/shortcut/%/delete', - 'title' => 'Delete shortcut set', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '196', + 'plid' => '175', + 'link_path' => 'admin/help/list', + 'router_path' => 'admin/help/list', + 'link_title' => 'list', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/shortcut/shortcut.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '196', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/user-interface/shortcut/%/edit', - 'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'shortcut_set_edit_access', - 'access_arguments' => 'a:1:{i:0;i:4;}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:22:"shortcut_set_edit_form";i:1;i:4;}', - 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', - 'context' => '1', - 'tab_parent' => 'admin/config/user-interface/shortcut/%', - 'tab_root' => 'admin/config/user-interface/shortcut/%', - 'title' => 'Edit set name', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '10', - 'include_file' => 'modules/shortcut/shortcut.admin.inc', + 'menu_name' => 'management', + 'mlid' => '197', + 'plid' => '175', + 'link_path' => 'admin/help/menu', + 'router_path' => 'admin/help/menu', + 'link_title' => 'menu', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '197', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/user-interface/shortcut/%/links', - 'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'shortcut_set_edit_access', - 'access_arguments' => 'a:1:{i:0;i:4;}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:22:"shortcut_set_customize";i:1;i:4;}', - 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', - 'context' => '1', - 'tab_parent' => 'admin/config/user-interface/shortcut/%', - 'tab_root' => 'admin/config/user-interface/shortcut/%', - 'title' => 'List links', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '198', + 'plid' => '175', + 'link_path' => 'admin/help/node', + 'router_path' => 'admin/help/node', + 'link_title' => 'node', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/shortcut/shortcut.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '198', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/user-interface/shortcut/add-set', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:20:"administer shortcuts";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:21:"shortcut_set_add_form";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/config/user-interface/shortcut', - 'tab_root' => 'admin/config/user-interface/shortcut', - 'title' => 'Add shortcut set', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '199', + 'plid' => '175', + 'link_path' => 'admin/help/number', + 'router_path' => 'admin/help/number', + 'link_title' => 'number', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/shortcut/shortcut.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '199', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/user-interface/shortcut/link/%', - 'load_functions' => 'a:1:{i:5;s:14:"menu_link_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'shortcut_link_access', - 'access_arguments' => 'a:1:{i:0;i:5;}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:18:"shortcut_link_edit";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '62', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/user-interface/shortcut/link/%', - 'title' => 'Edit shortcut', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '200', + 'plid' => '175', + 'link_path' => 'admin/help/options', + 'router_path' => 'admin/help/options', + 'link_title' => 'options', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/shortcut/shortcut.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '200', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/user-interface/shortcut/link/%/delete', - 'load_functions' => 'a:1:{i:5;s:14:"menu_link_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'shortcut_link_access', - 'access_arguments' => 'a:1:{i:0;i:5;}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:20:"shortcut_link_delete";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '125', - 'number_parts' => '7', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/user-interface/shortcut/link/%/delete', - 'title' => 'Delete shortcut', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '202', + 'plid' => '175', + 'link_path' => 'admin/help/path', + 'router_path' => 'admin/help/path', + 'link_title' => 'path', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/shortcut/shortcut.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '202', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/config/workflow', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'system_admin_menu_block_page', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/config/workflow', - 'title' => 'Workflow', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Content workflow, editorial workflow tools.', - 'position' => 'right', - 'weight' => '5', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '203', + 'plid' => '175', + 'link_path' => 'admin/help/rdf', + 'router_path' => 'admin/help/rdf', + 'link_title' => 'rdf', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '203', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/content', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:23:"access content overview";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}', - 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/content', - 'title' => 'Content', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Administer content and comments.', - 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/node/node.admin.inc', + 'menu_name' => 'management', + 'mlid' => '204', + 'plid' => '175', + 'link_path' => 'admin/help/search', + 'router_path' => 'admin/help/search', + 'link_title' => 'search', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '204', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/content/book', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:24:"administer book outlines";}', - 'page_callback' => 'book_admin_overview', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '1', - 'tab_parent' => 'admin/content', - 'tab_root' => 'admin/content', - 'title' => 'Books', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => "Manage your site's book outlines.", - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '205', + 'plid' => '175', + 'link_path' => 'admin/help/shortcut', + 'router_path' => 'admin/help/shortcut', + 'link_title' => 'shortcut', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/book/book.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '205', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/content/book/%', - 'load_functions' => 'a:1:{i:3;s:9:"node_load";}', - 'to_arg_functions' => '', - 'access_callback' => '_book_outline_access', - 'access_arguments' => 'a:1:{i:0;i:3;}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:15:"book_admin_edit";i:1;i:3;}', - 'delivery_callback' => '', - 'fit' => '14', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/content/book/%', - 'title' => 'Re-order book pages and change titles', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '206', + 'plid' => '175', + 'link_path' => 'admin/help/system', + 'router_path' => 'admin/help/system', + 'link_title' => 'system', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/book/book.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '206', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/content/book/list', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:24:"administer book outlines";}', - 'page_callback' => 'book_admin_overview', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/content/book', - 'tab_root' => 'admin/content', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '207', + 'plid' => '175', + 'link_path' => 'admin/help/taxonomy', + 'router_path' => 'admin/help/taxonomy', + 'link_title' => 'taxonomy', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/book/book.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '207', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/content/book/settings', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:19:"book_admin_settings";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/content/book', - 'tab_root' => 'admin/content', - 'title' => 'Settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '8', - 'include_file' => 'modules/book/book.admin.inc', + 'menu_name' => 'management', + 'mlid' => '208', + 'plid' => '175', + 'link_path' => 'admin/help/text', + 'router_path' => 'admin/help/text', + 'link_title' => 'text', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '208', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/content/comment', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}', - 'page_callback' => 'comment_admin', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '1', - 'tab_parent' => 'admin/content', - 'tab_root' => 'admin/content', - 'title' => 'Comments', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '134', - 'description' => 'List and edit site comments and the comment approval queue.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '209', + 'plid' => '175', + 'link_path' => 'admin/help/user', + 'router_path' => 'admin/help/user', + 'link_title' => 'user', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/comment/comment.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '209', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/content/comment/approval', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}', - 'page_callback' => 'comment_admin', - 'page_arguments' => 'a:1:{i:0;s:8:"approval";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/content/comment', - 'tab_root' => 'admin/content', - 'title' => 'Unapproved comments', - 'title_callback' => 'comment_count_unpublished', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/comment/comment.admin.inc', + 'menu_name' => 'navigation', + 'mlid' => '210', + 'plid' => '176', + 'link_path' => 'taxonomy/term/%/edit', + 'router_path' => 'taxonomy/term/%/edit', + 'link_title' => 'Edit', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '10', + 'depth' => '2', + 'customized' => '0', + 'p1' => '176', + 'p2' => '210', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/content/comment/new', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}', - 'page_callback' => 'comment_admin', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/content/comment', - 'tab_root' => 'admin/content', - 'title' => 'Published comments', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/comment/comment.admin.inc', + 'menu_name' => 'navigation', + 'mlid' => '211', + 'plid' => '176', + 'link_path' => 'taxonomy/term/%/view', + 'router_path' => 'taxonomy/term/%/view', + 'link_title' => 'View', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '2', + 'customized' => '0', + 'p1' => '176', + 'p2' => '211', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/content/node', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:23:"access content overview";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '1', - 'tab_parent' => 'admin/content', - 'tab_root' => 'admin/content', - 'title' => 'Content', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/node/node.admin.inc', + 'menu_name' => 'management', + 'mlid' => '212', + 'plid' => '180', + 'link_path' => 'admin/structure/taxonomy/%', + 'router_path' => 'admin/structure/taxonomy/%', + 'link_title' => '', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '180', + 'p4' => '212', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/dashboard', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"access dashboard";}', - 'page_callback' => 'dashboard_admin', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/dashboard', - 'title' => 'Dashboard', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'View and customize your dashboard.', - 'position' => '', - 'weight' => '-15', - 'include_file' => '', + 'menu_name' => 'management', + 'mlid' => '213', + 'plid' => '180', + 'link_path' => 'admin/structure/taxonomy/add', + 'router_path' => 'admin/structure/taxonomy/add', + 'link_title' => 'Add vocabulary', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '180', + 'p4' => '213', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/dashboard/block-content/%/%', - 'load_functions' => 'a:2:{i:3;N;i:4;N;}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}', - 'page_callback' => 'dashboard_show_block_content', - 'page_arguments' => 'a:2:{i:0;i:3;i:1;i:4;}', - 'delivery_callback' => '', - 'fit' => '28', - 'number_parts' => '5', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/dashboard/block-content/%/%', - 'title' => '', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '214', + 'plid' => '43', + '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', - 'include_file' => '', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '43', + 'p4' => '214', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', +)) +->values(array( + 'menu_name' => 'management', + 'mlid' => '215', + 'plid' => '180', + 'link_path' => 'admin/structure/taxonomy/list', + 'router_path' => 'admin/structure/taxonomy/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' => '20', + 'p3' => '180', + 'p4' => '215', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/dashboard/configure', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}', - 'page_callback' => 'dashboard_admin_blocks', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/dashboard/configure', - 'title' => 'Configure available dashboard blocks', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => 'Configure which blocks can be shown on the dashboard.', - 'position' => '', - 'weight' => '0', - 'include_file' => '', + 'menu_name' => 'management', + 'mlid' => '216', + 'plid' => '50', + 'link_path' => 'admin/config/search/settings', + 'router_path' => 'admin/config/search/settings', + 'link_title' => 'Search settings', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:67:"Configure relevance settings for search and other indexing options.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '-10', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '50', + 'p4' => '216', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/dashboard/customize', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"access dashboard";}', - 'page_callback' => 'dashboard_admin', - 'page_arguments' => 'a:1:{i:0;b:1;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/dashboard/customize', - 'title' => 'Customize dashboard', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => 'Customize your dashboard.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '217', + 'plid' => '57', + 'link_path' => 'admin/config/user-interface/shortcut', + 'router_path' => 'admin/config/user-interface/shortcut', + 'link_title' => 'Shortcuts', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:29:"Add and modify shortcut sets.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '1', + 'expanded' => '0', 'weight' => '0', - 'include_file' => '', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '57', + 'p4' => '217', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/dashboard/drawer', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}', - 'page_callback' => 'dashboard_show_disabled', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/dashboard/drawer', - 'title' => '', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => '', + 'menu_name' => 'management', + 'mlid' => '218', + 'plid' => '50', + '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' => '50', + 'p4' => '218', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/dashboard/update', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}', - 'page_callback' => 'dashboard_update', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/dashboard/update', - 'title' => '', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '219', + 'plid' => '218', + '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', - 'include_file' => '', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '50', + 'p4' => '218', + 'p5' => '219', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_main', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help', - 'title' => 'Help', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Reference for usage, configuration, and modules.', - 'position' => '', - 'weight' => '9', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'management', + 'mlid' => '220', + 'plid' => '217', + 'link_path' => 'admin/config/user-interface/shortcut/add-set', + 'router_path' => 'admin/config/user-interface/shortcut/add-set', + 'link_title' => 'Add shortcut set', + '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' => '217', + 'p5' => '220', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/aggregator', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/aggregator', - 'title' => 'aggregator', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'management', + 'mlid' => '221', + 'plid' => '214', + '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' => '43', + 'p4' => '214', + 'p5' => '221', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/block', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/block', - 'title' => 'block', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '222', + 'plid' => '212', + 'link_path' => 'admin/structure/taxonomy/%/add', + 'router_path' => 'admin/structure/taxonomy/%/add', + 'link_title' => 'Add term', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '180', + 'p4' => '212', + 'p5' => '222', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/blog', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/blog', - 'title' => 'blog', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '223', + 'plid' => '216', + 'link_path' => 'admin/config/search/settings/reindex', + 'router_path' => 'admin/config/search/settings/reindex', + 'link_title' => 'Clear index', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '50', + 'p4' => '216', + 'p5' => '223', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/book', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/book', - 'title' => 'book', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'management', + 'mlid' => '224', + 'plid' => '212', + 'link_path' => 'admin/structure/taxonomy/%/edit', + 'router_path' => 'admin/structure/taxonomy/%/edit', + 'link_title' => 'Edit', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '-10', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '180', + 'p4' => '212', + 'p5' => '224', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/color', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/color', - 'title' => 'color', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '225', + 'plid' => '217', + 'link_path' => 'admin/config/user-interface/shortcut/%', + 'router_path' => 'admin/config/user-interface/shortcut/%', + 'link_title' => 'Edit shortcuts', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '1', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '57', + 'p4' => '217', + 'p5' => '225', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/comment', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/comment', - 'title' => 'comment', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'management', + 'mlid' => '226', + 'plid' => '212', + 'link_path' => 'admin/structure/taxonomy/%/list', + 'router_path' => 'admin/structure/taxonomy/%/list', + 'link_title' => 'List', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '-20', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '180', + 'p4' => '212', + 'p5' => '226', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/contact', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/contact', - 'title' => 'contact', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'management', + 'mlid' => '227', + 'plid' => '218', + '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' => '50', + 'p4' => '218', + 'p5' => '227', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/contextual', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/contextual', - 'title' => 'contextual', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'management', + 'mlid' => '228', + 'plid' => '214', + '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' => '43', + 'p4' => '214', + 'p5' => '228', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/dashboard', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/dashboard', - 'title' => 'dashboard', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '229', + 'plid' => '225', + 'link_path' => 'admin/config/user-interface/shortcut/%/add-link', + 'router_path' => 'admin/config/user-interface/shortcut/%/add-link', + 'link_title' => 'Add shortcut', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '57', + 'p4' => '217', + 'p5' => '225', + 'p6' => '229', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/date', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/date', - 'title' => 'date', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '230', + 'plid' => '218', + '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', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '50', + 'p4' => '218', + 'p5' => '230', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/dblog', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/dblog', - 'title' => 'dblog', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '231', + 'plid' => '225', + 'link_path' => 'admin/config/user-interface/shortcut/%/delete', + 'router_path' => 'admin/config/user-interface/shortcut/%/delete', + 'link_title' => 'Delete shortcut set', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '57', + 'p4' => '217', + 'p5' => '225', + 'p6' => '231', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/field', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/field', - 'title' => 'field', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '232', + 'plid' => '218', + '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', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '50', + 'p4' => '218', + 'p5' => '232', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/field_collection', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/field_collection', - 'title' => 'field_collection', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'management', + 'mlid' => '233', + 'plid' => '225', + 'link_path' => 'admin/config/user-interface/shortcut/%/edit', + 'router_path' => 'admin/config/user-interface/shortcut/%/edit', + 'link_title' => 'Edit set name', + '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' => '57', + 'p4' => '217', + 'p5' => '225', + 'p6' => '233', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/field_sql_storage', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/field_sql_storage', - 'title' => 'field_sql_storage', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '234', + 'plid' => '217', + 'link_path' => 'admin/config/user-interface/shortcut/link/%', + 'router_path' => 'admin/config/user-interface/shortcut/link/%', + 'link_title' => 'Edit shortcut', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '1', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '57', + 'p4' => '217', + 'p5' => '234', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/field_ui', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/field_ui', - 'title' => 'field_ui', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '235', + 'plid' => '214', + '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', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '43', + 'p4' => '214', + 'p5' => '235', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/file', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/file', - 'title' => 'file', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '236', + 'plid' => '225', + 'link_path' => 'admin/config/user-interface/shortcut/%/links', + 'router_path' => 'admin/config/user-interface/shortcut/%/links', + 'link_title' => 'List links', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '57', + 'p4' => '217', + 'p5' => '225', + 'p6' => '236', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/filter', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/filter', - 'title' => 'filter', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '237', + 'plid' => '214', + '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', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '43', + 'p4' => '214', + 'p5' => '237', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/forum', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/forum', - 'title' => 'forum', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '238', + 'plid' => '214', + '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', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '43', + 'p4' => '214', + 'p5' => '238', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/help', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/help', - 'title' => 'help', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '239', + 'plid' => '234', + 'link_path' => 'admin/config/user-interface/shortcut/link/%/delete', + 'router_path' => 'admin/config/user-interface/shortcut/link/%/delete', + 'link_title' => 'Delete shortcut', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '57', + 'p4' => '217', + 'p5' => '234', + 'p6' => '239', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/i18n', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/i18n', - 'title' => 'i18n', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '240', + 'plid' => '235', + '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', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '43', + 'p4' => '214', + 'p5' => '235', + 'p6' => '240', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/i18n_node', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/i18n_node', - 'title' => 'i18n_node', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '241', + 'plid' => '235', + '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', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '43', + 'p4' => '214', + 'p5' => '235', + 'p6' => '241', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/i18n_string', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/i18n_string', - 'title' => 'i18n_string', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '242', + 'plid' => '241', + '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', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '7', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '43', + 'p4' => '214', + 'p5' => '235', + 'p6' => '241', + 'p7' => '242', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/image', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/image', - 'title' => 'image', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'shortcut-set-1', + 'mlid' => '243', + 'plid' => '0', + 'link_path' => 'node/add', + 'router_path' => 'node/add', + 'link_title' => 'Add content', + 'options' => 'a:0:{}', + 'module' => 'menu', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '-20', + 'depth' => '1', + 'customized' => '0', + 'p1' => '243', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/list', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/list', - 'title' => 'list', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'shortcut-set-1', + 'mlid' => '244', + 'plid' => '0', + 'link_path' => 'admin/content', + 'router_path' => 'admin/content', + 'link_title' => 'Find content', + 'options' => 'a:0:{}', + 'module' => 'menu', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '-19', + 'depth' => '1', + 'customized' => '0', + 'p1' => '244', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/locale', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/locale', - 'title' => 'locale', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'main-menu', + 'mlid' => '245', + 'plid' => '0', + 'link_path' => '', + 'router_path' => '', + 'link_title' => 'Home', + 'options' => 'a:0:{}', + 'module' => 'menu', + 'hidden' => '0', + 'external' => '1', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '1', + 'customized' => '0', + 'p1' => '245', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/menu', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/menu', - 'title' => 'menu', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '246', + '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 articles for time-sensitive content like news, press releases or blog posts.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '2', + 'customized' => '0', + 'p1' => '6', + 'p2' => '246', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/node', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/node', - 'title' => 'node', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '247', + 'plid' => '6', + 'link_path' => 'node/add/page', + 'router_path' => 'node/add/page', + 'link_title' => 'Basic page', + 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:77:\"Use basic pages for your static content, such as an 'About us' page.\";}}", + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '2', + 'customized' => '0', + 'p1' => '6', + 'p2' => '247', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/number', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/number', - 'title' => 'number', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '248', + 'plid' => '175', + 'link_path' => 'admin/help/toolbar', + 'router_path' => 'admin/help/toolbar', + 'link_title' => 'toolbar', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '248', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/openid', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/openid', - 'title' => 'openid', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'management', + 'mlid' => '287', + 'plid' => '18', + 'link_path' => 'admin/reports/updates', + 'router_path' => 'admin/reports/updates', + 'link_title' => 'Available updates', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:82:"Get a status report about available updates for your installed modules and themes.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '-50', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '18', + 'p3' => '287', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/options', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/options', - 'title' => 'options', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'management', + 'mlid' => '288', + 'plid' => '15', + 'link_path' => 'admin/modules/install', + 'router_path' => 'admin/modules/install', + 'link_title' => 'Install new module', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '25', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '15', + 'p3' => '288', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', +)) +->values(array( + 'menu_name' => 'management', + 'mlid' => '289', + 'plid' => '7', + 'link_path' => 'admin/appearance/install', + 'router_path' => 'admin/appearance/install', + 'link_title' => 'Install new theme', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '25', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '7', + 'p3' => '289', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/overlay', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/overlay', - 'title' => 'overlay', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'management', + 'mlid' => '290', + 'plid' => '15', + 'link_path' => 'admin/modules/update', + 'router_path' => 'admin/modules/update', + 'link_title' => 'Update', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '10', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '15', + 'p3' => '290', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/path', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/path', - 'title' => 'path', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'management', + 'mlid' => '291', + 'plid' => '7', + 'link_path' => 'admin/appearance/update', + 'router_path' => 'admin/appearance/update', + 'link_title' => 'Update', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '10', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '7', + 'p3' => '291', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/php', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/php', - 'title' => 'php', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '292', + 'plid' => '175', + 'link_path' => 'admin/help/update', + 'router_path' => 'admin/help/update', + 'link_title' => 'update', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '292', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/rdf', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/rdf', - 'title' => 'rdf', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '293', + 'plid' => '287', + 'link_path' => 'admin/reports/updates/list', + 'router_path' => 'admin/reports/updates/list', + 'link_title' => 'List', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '18', + 'p3' => '287', + 'p4' => '293', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/replicate', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/replicate', - 'title' => 'replicate', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'management', + 'mlid' => '294', + 'plid' => '287', + 'link_path' => 'admin/reports/updates/settings', + 'router_path' => 'admin/reports/updates/settings', + 'link_title' => 'Settings', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '50', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '18', + 'p3' => '287', + 'p4' => '294', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/replicate_paragraphs', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/replicate_paragraphs', - 'title' => 'replicate_paragraphs', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'management', + 'mlid' => '295', + 'plid' => '287', + 'link_path' => 'admin/reports/updates/install', + 'router_path' => 'admin/reports/updates/install', + 'link_title' => 'Install new module or theme', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '25', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '18', + 'p3' => '287', + 'p4' => '295', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/search', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/search', - 'title' => 'search', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'management', + 'mlid' => '296', + 'plid' => '287', + 'link_path' => 'admin/reports/updates/update', + 'router_path' => 'admin/reports/updates/update', + 'link_title' => 'Update', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '10', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '18', + 'p3' => '287', + 'p4' => '296', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/shortcut', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/shortcut', - 'title' => 'shortcut', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'management', + 'mlid' => '297', + 'plid' => '212', + 'link_path' => 'admin/structure/taxonomy/%/display', + 'router_path' => 'admin/structure/taxonomy/%/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' => '20', + 'p3' => '180', + 'p4' => '212', + 'p5' => '297', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/simpletest', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/simpletest', - 'title' => 'simpletest', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'management', + 'mlid' => '298', + 'plid' => '66', + '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' => '45', + 'p4' => '66', + 'p5' => '298', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/statistics', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/statistics', - 'title' => 'statistics', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'management', + 'mlid' => '299', + 'plid' => '212', + 'link_path' => 'admin/structure/taxonomy/%/fields', + 'router_path' => 'admin/structure/taxonomy/%/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' => '20', + 'p3' => '180', + 'p4' => '212', + 'p5' => '299', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/syslog', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/syslog', - 'title' => 'syslog', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'management', + 'mlid' => '300', + 'plid' => '66', + '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' => '45', + 'p4' => '66', + 'p5' => '300', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/system', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/system', - 'title' => 'system', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'management', + 'mlid' => '301', + 'plid' => '297', + 'link_path' => 'admin/structure/taxonomy/%/display/default', + 'router_path' => 'admin/structure/taxonomy/%/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' => '20', + 'p3' => '180', + 'p4' => '212', + 'p5' => '297', + 'p6' => '301', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/taxonomy', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/taxonomy', - 'title' => 'taxonomy', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'management', + 'mlid' => '302', + 'plid' => '298', + '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' => '45', + 'p4' => '66', + 'p5' => '298', + 'p6' => '302', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/text', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/text', - 'title' => 'text', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'management', + 'mlid' => '303', + 'plid' => '114', + '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' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '303', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/toolbar', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/toolbar', - 'title' => 'toolbar', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'management', + 'mlid' => '304', + 'plid' => '114', + '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' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '304', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/tracker', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/tracker', - 'title' => 'tracker', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '305', + 'plid' => '297', + 'link_path' => 'admin/structure/taxonomy/%/display/full', + 'router_path' => 'admin/structure/taxonomy/%/display/full', + 'link_title' => 'Taxonomy term page', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '180', + 'p4' => '212', + 'p5' => '297', + 'p6' => '305', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/translation', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/translation', - 'title' => 'translation', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '306', + 'plid' => '298', + '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', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '45', + 'p4' => '66', + 'p5' => '298', + 'p6' => '306', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/trigger', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/trigger', - 'title' => 'trigger', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '307', + 'plid' => '299', + 'link_path' => 'admin/structure/taxonomy/%/fields/%', + 'router_path' => 'admin/structure/taxonomy/%/fields/%', + 'link_title' => '', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '180', + 'p4' => '212', + 'p5' => '299', + 'p6' => '307', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/update', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/update', - 'title' => 'update', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '308', + 'plid' => '300', + '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', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '45', + 'p4' => '66', + 'p5' => '300', + 'p6' => '308', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/user', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/user', - 'title' => 'user', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'management', + 'mlid' => '309', + 'plid' => '303', + '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' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '303', + 'p6' => '309', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/views', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/views', - 'title' => 'views', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '310', + 'plid' => '303', + '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', - 'include_file' => 'modules/help/help.admin.inc', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '303', + 'p6' => '310', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/help/views_ui', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'help_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/help/views_ui', - 'title' => 'views_ui', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/help/help.admin.inc', + 'menu_name' => 'management', + 'mlid' => '311', + 'plid' => '303', + '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' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '303', + 'p6' => '311', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/index', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'system_admin_index', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', - 'context' => '1', - 'tab_parent' => 'admin', - 'tab_root' => 'admin', - 'title' => 'Index', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '-18', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '312', + 'plid' => '303', + 'link_path' => 'admin/structure/types/manage/%/display/search_index', + 'router_path' => 'admin/structure/types/manage/%/display/search_index', + 'link_title' => 'Search index', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '3', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '303', + 'p6' => '312', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/modules', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}', - 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/modules', - 'title' => 'Modules', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Extend site functionality.', - 'position' => '', - 'weight' => '-2', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '313', + 'plid' => '303', + 'link_path' => 'admin/structure/types/manage/%/display/search_result', + 'router_path' => 'admin/structure/types/manage/%/display/search_result', + 'link_title' => 'Search result highlighting input', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '4', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '303', + 'p6' => '313', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/modules/install', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'update_manager_access', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:27:"update_manager_install_form";i:1;s:6:"module";}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '1', - 'tab_parent' => 'admin/modules', - 'tab_root' => 'admin/modules', - 'title' => 'Install new module', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', - 'weight' => '25', - 'include_file' => 'modules/update/update.manager.inc', + 'menu_name' => 'management', + 'mlid' => '314', + 'plid' => '303', + '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' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '303', + 'p6' => '314', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/modules/list', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '1', - 'tab_parent' => 'admin/modules', - 'tab_root' => 'admin/modules', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '315', + 'plid' => '304', + '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', - 'include_file' => 'modules/system/system.admin.inc', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '304', + 'p6' => '315', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/modules/list/confirm', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/modules/list/confirm', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '316', + 'plid' => '307', + 'link_path' => 'admin/structure/taxonomy/%/fields/%/delete', + 'router_path' => 'admin/structure/taxonomy/%/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' => '20', + 'p3' => '180', + 'p4' => '212', + 'p5' => '299', + 'p6' => '307', + 'p7' => '316', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', +)) +->values(array( + 'menu_name' => 'management', + 'mlid' => '317', + 'plid' => '307', + 'link_path' => 'admin/structure/taxonomy/%/fields/%/edit', + 'router_path' => 'admin/structure/taxonomy/%/fields/%/edit', + 'link_title' => 'Edit', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/system/system.admin.inc', + 'depth' => '7', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '180', + 'p4' => '212', + 'p5' => '299', + 'p6' => '307', + 'p7' => '317', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/modules/uninstall', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '1', - 'tab_parent' => 'admin/modules', - 'tab_root' => 'admin/modules', - 'title' => 'Uninstall', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '20', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '318', + 'plid' => '307', + 'link_path' => 'admin/structure/taxonomy/%/fields/%/field-settings', + 'router_path' => 'admin/structure/taxonomy/%/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' => '20', + 'p3' => '180', + 'p4' => '212', + 'p5' => '299', + 'p6' => '307', + 'p7' => '318', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/modules/uninstall/confirm', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/modules/uninstall/confirm', - 'title' => 'Uninstall', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '319', + 'plid' => '307', + 'link_path' => 'admin/structure/taxonomy/%/fields/%/widget-type', + 'router_path' => 'admin/structure/taxonomy/%/fields/%/widget-type', + 'link_title' => 'Widget type', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/system/system.admin.inc', + 'depth' => '7', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '180', + 'p4' => '212', + 'p5' => '299', + 'p6' => '307', + 'p7' => '319', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/modules/update', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'update_manager_access', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:26:"update_manager_update_form";i:1;s:6:"module";}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '1', - 'tab_parent' => 'admin/modules', - 'tab_root' => 'admin/modules', - 'title' => 'Update', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '320', + 'plid' => '308', + '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', - 'include_file' => 'modules/update/update.manager.inc', + 'depth' => '7', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '45', + 'p4' => '66', + 'p5' => '300', + 'p6' => '308', + 'p7' => '320', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/people', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer users";}', - 'page_callback' => 'user_admin', - 'page_arguments' => 'a:1:{i:0;s:4:"list";}', - 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/people', - 'title' => 'People', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Manage user accounts, roles, and permissions.', - 'position' => 'left', - 'weight' => '-4', - 'include_file' => 'modules/user/user.admin.inc', + 'menu_name' => 'management', + 'mlid' => '321', + 'plid' => '308', + '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' => '45', + 'p4' => '66', + 'p5' => '300', + 'p6' => '308', + 'p7' => '321', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/people/create', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer users";}', - 'page_callback' => 'user_admin', - 'page_arguments' => 'a:1:{i:0;s:6:"create";}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '1', - 'tab_parent' => 'admin/people', - 'tab_root' => 'admin/people', - 'title' => 'Add user', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '322', + 'plid' => '308', + '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', - 'include_file' => 'modules/user/user.admin.inc', + 'depth' => '7', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '45', + 'p4' => '66', + 'p5' => '300', + 'p6' => '308', + 'p7' => '322', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/people/people', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer users";}', - 'page_callback' => 'user_admin', - 'page_arguments' => 'a:1:{i:0;s:4:"list";}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '1', - 'tab_parent' => 'admin/people', - 'tab_root' => 'admin/people', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => 'Find and manage people interacting with your site.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '323', + 'plid' => '308', + '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' => '45', + 'p4' => '66', + 'p5' => '300', + 'p6' => '308', + 'p7' => '323', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', +)) +->values(array( + 'menu_name' => 'management', + 'mlid' => '324', + 'plid' => '161', + 'link_path' => 'admin/structure/types/manage/%/comment/display/default', + 'router_path' => 'admin/structure/types/manage/%/comment/display/default', + 'link_title' => 'Default', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '-10', - 'include_file' => 'modules/user/user.admin.inc', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '161', + 'p6' => '324', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/people/permissions', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:22:"user_admin_permissions";}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '1', - 'tab_parent' => 'admin/people', - 'tab_root' => 'admin/people', - 'title' => 'Permissions', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => 'Determine access to features by selecting permissions for roles.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '325', + 'plid' => '161', + 'link_path' => 'admin/structure/types/manage/%/comment/display/full', + 'router_path' => 'admin/structure/types/manage/%/comment/display/full', + 'link_title' => 'Full comment', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/user/user.admin.inc', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '161', + 'p6' => '325', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/people/permissions/list', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:22:"user_admin_permissions";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/people/permissions', - 'tab_root' => 'admin/people', - 'title' => 'Permissions', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => 'Determine access to features by selecting permissions for roles.', - 'position' => '', - 'weight' => '-8', - 'include_file' => 'modules/user/user.admin.inc', + 'menu_name' => 'management', + 'mlid' => '326', + 'plid' => '162', + 'link_path' => 'admin/structure/types/manage/%/comment/fields/%', + 'router_path' => 'admin/structure/types/manage/%/comment/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' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '162', + 'p6' => '326', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/people/permissions/roles', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:16:"user_admin_roles";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/people/permissions', - 'tab_root' => 'admin/people', - 'title' => 'Roles', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => 'List, edit, or add user roles.', - 'position' => '', - 'weight' => '-5', - 'include_file' => 'modules/user/user.admin.inc', + 'menu_name' => 'management', + 'mlid' => '327', + 'plid' => '315', + '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' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '304', + 'p6' => '315', + 'p7' => '327', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/people/permissions/roles/delete/%', - 'load_functions' => 'a:1:{i:5;s:14:"user_role_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_role_edit_access', - 'access_arguments' => 'a:1:{i:0;i:5;}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:30:"user_admin_role_delete_confirm";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '62', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/people/permissions/roles/delete/%', - 'title' => 'Delete role', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '328', + 'plid' => '315', + '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', - 'include_file' => 'modules/user/user.admin.inc', + 'depth' => '7', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '304', + 'p6' => '315', + 'p7' => '328', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/people/permissions/roles/edit/%', - 'load_functions' => 'a:1:{i:5;s:14:"user_role_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_role_edit_access', - 'access_arguments' => 'a:1:{i:0;i:5;}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:15:"user_admin_role";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '62', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/people/permissions/roles/edit/%', - 'title' => 'Edit role', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '329', + 'plid' => '315', + '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', - 'include_file' => 'modules/user/user.admin.inc', + 'depth' => '7', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '304', + 'p6' => '315', + 'p7' => '329', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}', - 'page_callback' => 'system_admin_menu_block_page', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/reports', - 'title' => 'Reports', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'View reports, updates, and errors.', - 'position' => 'left', - 'weight' => '5', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'management', + 'mlid' => '330', + 'plid' => '315', + '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' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '304', + 'p6' => '315', + 'p7' => '330', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports/access-denied', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}', - 'page_callback' => 'dblog_top', - 'page_arguments' => 'a:1:{i:0;s:13:"access denied";}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/access-denied', - 'title' => "Top 'access denied' errors", - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => "View 'access denied' errors (403s).", - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/dblog/dblog.admin.inc', + 'menu_name' => 'management', + 'mlid' => '331', + 'plid' => '326', + 'link_path' => 'admin/structure/types/manage/%/comment/fields/%/delete', + 'router_path' => 'admin/structure/types/manage/%/comment/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' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '162', + 'p6' => '326', + 'p7' => '331', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports/access/%', - 'load_functions' => 'a:1:{i:3;N;}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}', - 'page_callback' => 'statistics_access_log', - 'page_arguments' => 'a:1:{i:0;i:3;}', - 'delivery_callback' => '', - 'fit' => '14', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/access/%', - 'title' => 'Details', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'View access log.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '332', + 'plid' => '326', + 'link_path' => 'admin/structure/types/manage/%/comment/fields/%/edit', + 'router_path' => 'admin/structure/types/manage/%/comment/fields/%/edit', + 'link_title' => 'Edit', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/statistics/statistics.admin.inc', + 'depth' => '7', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '162', + 'p6' => '326', + 'p7' => '332', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports/dblog', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}', - 'page_callback' => 'dblog_overview', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/dblog', - 'title' => 'Recent log messages', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'View events that have recently been logged.', - 'position' => '', - 'weight' => '-1', - 'include_file' => 'modules/dblog/dblog.admin.inc', + 'menu_name' => 'management', + 'mlid' => '333', + 'plid' => '326', + 'link_path' => 'admin/structure/types/manage/%/comment/fields/%/field-settings', + 'router_path' => 'admin/structure/types/manage/%/comment/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' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '162', + 'p6' => '326', + 'p7' => '333', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports/event/%', - 'load_functions' => 'a:1:{i:3;N;}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}', - 'page_callback' => 'dblog_event', - 'page_arguments' => 'a:1:{i:0;i:3;}', - 'delivery_callback' => '', - 'fit' => '14', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/event/%', - 'title' => 'Details', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '334', + 'plid' => '326', + 'link_path' => 'admin/structure/types/manage/%/comment/fields/%/widget-type', + 'router_path' => 'admin/structure/types/manage/%/comment/fields/%/widget-type', + 'link_title' => 'Widget type', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/dblog/dblog.admin.inc', + 'depth' => '7', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '162', + 'p6' => '326', + 'p7' => '334', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports/fields', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}', - 'page_callback' => 'field_ui_fields_list', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/fields', - 'title' => 'Field list', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Overview of fields on all entity types.', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '335', + 'plid' => '0', + 'link_path' => 'blog', + 'router_path' => 'blog', + 'link_title' => 'Blogs', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '1', + 'external' => '0', + 'has_children' => '1', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '1', + 'customized' => '0', + 'p1' => '335', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports/fields/list', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}', - 'page_callback' => 'field_ui_fields_list', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/reports/fields', - 'tab_root' => 'admin/reports/fields', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'navigation', + 'mlid' => '336', + 'plid' => '0', + 'link_path' => 'book', + 'router_path' => 'book', + 'link_title' => 'Books', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '1', + 'customized' => '0', + 'p1' => '336', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports/fields/views-fields', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer views";}', - 'page_callback' => 'views_ui_field_list', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/reports/fields', - 'tab_root' => 'admin/reports/fields', - 'title' => 'Used in views', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => 'Overview of fields used in all views.', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '337', + 'plid' => '0', + 'link_path' => 'contact', + 'router_path' => 'contact', + 'link_title' => 'Contact', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'sites/all/modules/views/includes/admin.inc', + 'depth' => '1', + 'customized' => '0', + 'p1' => '337', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports/hits', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}', - 'page_callback' => 'statistics_recent_hits', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/hits', - 'title' => 'Recent hits', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'View pages that have recently been visited.', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/statistics/statistics.admin.inc', + 'menu_name' => 'navigation', + 'mlid' => '338', + 'plid' => '0', + 'link_path' => 'aggregator', + 'router_path' => 'aggregator', + 'link_title' => 'Feed aggregator', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '1', + 'expanded' => '0', + 'weight' => '5', + 'depth' => '1', + 'customized' => '0', + 'p1' => '338', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports/page-not-found', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}', - 'page_callback' => 'dblog_top', - 'page_arguments' => 'a:1:{i:0;s:14:"page not found";}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/page-not-found', - 'title' => "Top 'page not found' errors", - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => "View 'page not found' errors (404s).", - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '339', + 'plid' => '0', + 'link_path' => 'forum', + 'router_path' => 'forum', + 'link_title' => 'Forums', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '1', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/dblog/dblog.admin.inc', + 'depth' => '1', + 'customized' => '0', + 'p1' => '339', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports/pages', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}', - 'page_callback' => 'statistics_top_pages', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/pages', - 'title' => 'Top pages', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'View pages that have been hit frequently.', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '340', + 'plid' => '0', + 'link_path' => 'tracker', + 'router_path' => 'tracker', + 'link_title' => 'Recent content', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '1', - 'include_file' => 'modules/statistics/statistics.admin.inc', + 'depth' => '1', + 'customized' => '0', + 'p1' => '340', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports/referrers', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}', - 'page_callback' => 'statistics_top_referrers', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/referrers', - 'title' => 'Top referrers', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'View top referrers.', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '341', + 'plid' => '340', + 'link_path' => 'tracker/all', + 'router_path' => 'tracker/all', + 'link_title' => 'All recent content', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/statistics/statistics.admin.inc', + 'depth' => '2', + 'customized' => '0', + 'p1' => '340', + 'p2' => '341', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports/search', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}', - 'page_callback' => 'dblog_top', - 'page_arguments' => 'a:1:{i:0;s:6:"search";}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/search', - 'title' => 'Top search phrases', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'View most popular search phrases.', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '342', + 'plid' => '338', + 'link_path' => 'aggregator/categories', + 'router_path' => 'aggregator/categories', + 'link_title' => 'Categories', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '1', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/dblog/dblog.admin.inc', + 'depth' => '2', + 'customized' => '0', + 'p1' => '338', + 'p2' => '342', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports/status', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'system_status', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/status', - 'title' => 'Status report', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => "Get a status report about your site's operation and any detected problems.", - 'position' => '', - 'weight' => '-60', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'navigation', + 'mlid' => '343', + 'plid' => '339', + 'link_path' => 'forum/%', + 'router_path' => 'forum/%', + 'link_title' => 'Forums', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '2', + 'customized' => '0', + 'p1' => '339', + 'p2' => '343', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports/status/php', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'system_php', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/status/php', - 'title' => 'PHP', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '344', + 'plid' => '335', + 'link_path' => 'blog/%', + 'router_path' => 'blog/%', + 'link_title' => 'My blog', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/system/system.admin.inc', + 'depth' => '2', + 'customized' => '0', + 'p1' => '335', + 'p2' => '344', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports/status/rebuild', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:30:"node_configure_rebuild_confirm";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/status/rebuild', - 'title' => 'Rebuild permissions', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '345', + 'plid' => '340', + 'link_path' => 'tracker/%', + 'router_path' => 'tracker/%', + 'link_title' => 'My recent content', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/node/node.admin.inc', + 'depth' => '2', + 'customized' => '0', + 'p1' => '340', + 'p2' => '345', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports/status/run-cron', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'system_run_cron', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/status/run-cron', - 'title' => 'Run cron', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '346', + 'plid' => '338', + 'link_path' => 'aggregator/sources', + 'router_path' => 'aggregator/sources', + 'link_title' => 'Sources', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '1', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/system/system.admin.inc', + 'depth' => '2', + 'customized' => '0', + 'p1' => '338', + 'p2' => '346', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports/updates', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'update_status', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/updates', - 'title' => 'Available updates', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Get a status report about available updates for your installed modules and themes.', - 'position' => '', - 'weight' => '-50', - 'include_file' => 'modules/update/update.report.inc', + 'menu_name' => 'navigation', + 'mlid' => '347', + 'plid' => '342', + 'link_path' => 'aggregator/categories/%', + 'router_path' => 'aggregator/categories/%', + 'link_title' => '', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '3', + 'customized' => '0', + 'p1' => '338', + 'p2' => '342', + 'p3' => '347', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports/updates/check', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'update_manual_status', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/updates/check', - 'title' => 'Manual update check', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '348', + 'plid' => '346', + 'link_path' => 'aggregator/sources/%', + 'router_path' => 'aggregator/sources/%', + 'link_title' => '', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/update/update.fetch.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '338', + 'p2' => '346', + 'p3' => '348', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports/updates/install', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'update_manager_access', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:27:"update_manager_install_form";i:1;s:6:"report";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/reports/updates', - 'tab_root' => 'admin/reports/updates', - 'title' => 'Install new module or theme', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', - 'weight' => '25', - 'include_file' => 'modules/update/update.manager.inc', + 'menu_name' => 'navigation', + 'mlid' => '349', + 'plid' => '6', + 'link_path' => 'node/add/blog', + 'router_path' => 'node/add/blog', + 'link_title' => 'Blog entry', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:58:"Use for multi-user blogs. Every user gets a personal blog.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '2', + 'customized' => '0', + 'p1' => '6', + 'p2' => '349', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports/updates/list', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'update_status', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/reports/updates', - 'tab_root' => 'admin/reports/updates', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '350', + 'plid' => '6', + 'link_path' => 'node/add/book', + 'router_path' => 'node/add/book', + 'link_title' => 'Book page', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:87:"Books have a built-in hierarchical navigation. Use for handbooks or tutorials.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/update/update.report.inc', + 'depth' => '2', + 'customized' => '0', + 'p1' => '6', + 'p2' => '350', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports/updates/settings', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:15:"update_settings";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/reports/updates', - 'tab_root' => 'admin/reports/updates', - 'title' => 'Settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '50', - 'include_file' => 'modules/update/update.settings.inc', + 'menu_name' => 'management', + 'mlid' => '351', + 'plid' => '9', + 'link_path' => 'admin/content/book', + 'router_path' => 'admin/content/book', + 'link_title' => 'Books', + 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Manage your site's book outlines.\";}}", + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '9', + 'p3' => '351', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports/updates/update', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'update_manager_access', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:26:"update_manager_update_form";i:1;s:6:"report";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/reports/updates', - 'tab_root' => 'admin/reports/updates', - 'title' => 'Update', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '10', - 'include_file' => 'modules/update/update.manager.inc', + 'menu_name' => 'navigation', + 'mlid' => '352', + 'plid' => '16', + 'link_path' => 'user/%/contact', + 'router_path' => 'user/%/contact', + 'link_title' => 'Contact', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '2', + 'depth' => '2', + 'customized' => '0', + 'p1' => '16', + 'p2' => '352', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports/views-plugins', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer views";}', - 'page_callback' => 'views_ui_plugin_list', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/views-plugins', - 'title' => 'Views plugins', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Overview of plugins used in all views.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '353', + 'plid' => '20', + 'link_path' => 'admin/structure/contact', + 'router_path' => 'admin/structure/contact', + 'link_title' => 'Contact form', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:71:"Create a system contact form and set up categories for the form to use.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '1', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'sites/all/modules/views/includes/admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '353', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/reports/visitors', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}', - 'page_callback' => 'statistics_top_visitors', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/visitors', - 'title' => 'Top visitors', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'View visitors that hit many pages.', - 'position' => '', - 'weight' => '2', - 'include_file' => 'modules/statistics/statistics.admin.inc', + 'menu_name' => 'management', + 'mlid' => '354', + 'plid' => '8', + 'link_path' => 'admin/config/date', + 'router_path' => 'admin/config/date', + 'link_title' => 'Date API', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:42:"Settings for modules the use the Date API.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '-10', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '354', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'system_admin_menu_block_page', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure', - 'title' => 'Structure', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Administer blocks, content types, menus, etc.', - 'position' => 'right', - 'weight' => '-8', - 'include_file' => 'modules/system/system.admin.inc', + 'menu_name' => 'navigation', + 'mlid' => '355', + 'plid' => '6', + 'link_path' => 'node/add/forum', + 'router_path' => 'node/add/forum', + 'link_title' => 'Forum topic', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:69:"A forum topic starts a new discussion thread within a forum.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '2', + 'customized' => '0', + 'p1' => '6', + 'p2' => '355', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/block', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}', - 'page_callback' => 'block_admin_display', - 'page_arguments' => 'a:1:{i:0;s:6:"bartik";}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/block', - 'title' => 'Blocks', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => "Configure what block content appears in your site's sidebars and other regions.", - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '356', + 'plid' => '20', + 'link_path' => 'admin/structure/forum', + 'router_path' => 'admin/structure/forum', + 'link_title' => 'Forums', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:33:"Control forum hierarchy settings.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '1', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/block/block.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '356', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/block/add', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/structure/block', - 'tab_root' => 'admin/structure/block', - 'title' => 'Add block', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/block/block.admin.inc', + 'menu_name' => 'navigation', + 'mlid' => '358', + 'plid' => '5', + 'link_path' => 'node/%/outline', + 'router_path' => 'node/%/outline', + 'link_title' => 'Outline', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '1', + 'expanded' => '0', + 'weight' => '2', + 'depth' => '2', + 'customized' => '0', + 'p1' => '5', + 'p2' => '358', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/block/demo/bartik', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_block_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:25:"themes/bartik/bartik.info";s:4:"name";s:6:"bartik";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:19:{s:4:"name";s:6:"Bartik";s:11:"description";s:48:"A flexible, recolorable theme with many regions.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:3:{s:14:"css/layout.css";s:28:"themes/bartik/css/layout.css";s:13:"css/style.css";s:27:"themes/bartik/css/style.css";s:14:"css/colors.css";s:28:"themes/bartik/css/colors.css";}s:5:"print";a:1:{s:13:"css/print.css";s:27:"themes/bartik/css/print.css";}}s:7:"regions";a:20:{s:6:"header";s:6:"Header";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:11:"highlighted";s:11:"Highlighted";s:8:"featured";s:8:"Featured";s:7:"content";s:7:"Content";s:13:"sidebar_first";s:13:"Sidebar first";s:14:"sidebar_second";s:14:"Sidebar second";s:14:"triptych_first";s:14:"Triptych first";s:15:"triptych_middle";s:15:"Triptych middle";s:13:"triptych_last";s:13:"Triptych last";s:18:"footer_firstcolumn";s:19:"Footer first column";s:19:"footer_secondcolumn";s:20:"Footer second column";s:18:"footer_thirdcolumn";s:19:"Footer third column";s:19:"footer_fourthcolumn";s:20:"Footer fourth column";s:6:"footer";s:6:"Footer";s:14:"dashboard_main";s:16:"Dashboard (main)";s:17:"dashboard_sidebar";s:19:"Dashboard (sidebar)";s:18:"dashboard_inactive";s:20:"Dashboard (inactive)";}s:8:"settings";a:1:{s:20:"shortcut_module_link";s:1:"0";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:6:"engine";s:11:"phptemplate";s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:28:"themes/bartik/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1498069849;s:15:"overlay_regions";a:5:{i:0;s:14:"dashboard_main";i:1;s:17:"dashboard_sidebar";i:2;s:18:"dashboard_inactive";i:3;s:7:"content";i:4;s:4:"help";}s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:3:{s:14:"css/layout.css";s:28:"themes/bartik/css/layout.css";s:13:"css/style.css";s:27:"themes/bartik/css/style.css";s:14:"css/colors.css";s:28:"themes/bartik/css/colors.css";}s:5:"print";a:1:{s:13:"css/print.css";s:27:"themes/bartik/css/print.css";}}s:6:"engine";s:11:"phptemplate";}}', - 'page_callback' => 'block_admin_demo', - 'page_arguments' => 'a:1:{i:0;s:6:"bartik";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/block/demo/bartik', - 'title' => 'Bartik', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '_block_custom_theme', - 'theme_arguments' => 'a:1:{i:0;s:6:"bartik";}', - 'type' => '0', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '359', + 'plid' => '18', + 'link_path' => 'admin/reports/hits', + 'router_path' => 'admin/reports/hits', + 'link_title' => 'Recent hits', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"View pages that have recently been visited.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/block/block.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '18', + 'p3' => '359', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/block/demo/garland', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_block_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:19:{s:4:"name";s:7:"Garland";s:11:"description";s:111:"A multi-column theme which can be configured to modify colors and switch between fixed and fluid width layouts.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:8:"settings";a:1:{s:13:"garland_width";s:5:"fluid";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:6:"engine";s:11:"phptemplate";s:7:"regions";a:12:{s:13:"sidebar_first";s:12:"Left sidebar";s:14:"sidebar_second";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";s:11:"highlighted";s:11:"Highlighted";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:14:"dashboard_main";s:16:"Dashboard (main)";s:17:"dashboard_sidebar";s:19:"Dashboard (sidebar)";s:18:"dashboard_inactive";s:20:"Dashboard (inactive)";}s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1498069849;s:15:"overlay_regions";a:5:{i:0;s:14:"dashboard_main";i:1;s:17:"dashboard_sidebar";i:2;s:18:"dashboard_inactive";i:3;s:7:"content";i:4;s:4:"help";}s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}', - 'page_callback' => 'block_admin_demo', - 'page_arguments' => 'a:1:{i:0;s:7:"garland";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/block/demo/garland', - 'title' => 'Garland', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '_block_custom_theme', - 'theme_arguments' => 'a:1:{i:0;s:7:"garland";}', - 'type' => '0', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/block/block.admin.inc', + 'menu_name' => 'management', + 'mlid' => '360', + 'plid' => '18', + 'link_path' => 'admin/reports/pages', + 'router_path' => 'admin/reports/pages', + 'link_title' => 'Top pages', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:41:"View pages that have been hit frequently.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '1', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '18', + 'p3' => '360', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/block/demo/seven', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_block_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:23:"themes/seven/seven.info";s:4:"name";s:5:"seven";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:19:{s:4:"name";s:5:"Seven";s:11:"description";s:65:"A simple one-column, tableless, fluid width administration theme.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:1:{s:6:"screen";a:2:{s:9:"reset.css";s:22:"themes/seven/reset.css";s:9:"style.css";s:22:"themes/seven/style.css";}}s:8:"settings";a:1:{s:20:"shortcut_module_link";s:1:"1";}s:7:"regions";a:8:{s:7:"content";s:7:"Content";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:13:"sidebar_first";s:13:"First sidebar";s:14:"dashboard_main";s:16:"Dashboard (main)";s:17:"dashboard_sidebar";s:19:"Dashboard (sidebar)";s:18:"dashboard_inactive";s:20:"Dashboard (inactive)";}s:14:"regions_hidden";a:3:{i:0;s:13:"sidebar_first";i:1;s:8:"page_top";i:2;s:11:"page_bottom";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:6:"engine";s:11:"phptemplate";s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:27:"themes/seven/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1498069849;s:15:"overlay_regions";a:5:{i:0;s:14:"dashboard_main";i:1;s:17:"dashboard_sidebar";i:2;s:18:"dashboard_inactive";i:3;s:7:"content";i:4;s:4:"help";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:1:{s:6:"screen";a:2:{s:9:"reset.css";s:22:"themes/seven/reset.css";s:9:"style.css";s:22:"themes/seven/style.css";}}s:6:"engine";s:11:"phptemplate";}}', - 'page_callback' => 'block_admin_demo', - 'page_arguments' => 'a:1:{i:0;s:5:"seven";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/block/demo/seven', - 'title' => 'Seven', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '_block_custom_theme', - 'theme_arguments' => 'a:1:{i:0;s:5:"seven";}', - 'type' => '0', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '361', + 'plid' => '18', + 'link_path' => 'admin/reports/referrers', + 'router_path' => 'admin/reports/referrers', + 'link_title' => 'Top referrers', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:19:"View top referrers.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/block/block.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '18', + 'p3' => '361', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', +)) +->values(array( + 'menu_name' => 'management', + 'mlid' => '362', + 'plid' => '18', + 'link_path' => 'admin/reports/visitors', + 'router_path' => 'admin/reports/visitors', + 'link_title' => 'Top visitors', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:34:"View visitors that hit many pages.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '2', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '18', + 'p3' => '362', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/block/demo/stark', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_block_themes_access', - 'access_arguments' => "a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:23:\"themes/stark/stark.info\";s:4:\"name\";s:5:\"stark\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:18:{s:4:\"name\";s:5:\"Stark\";s:11:\"description\";s:208:\"This theme demonstrates Drupal's default HTML markup and CSS styles. To learn how to build your own theme and override Drupal's default code, see the Theming Guide.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.56\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1498069849\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:27:\"themes/stark/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1498069849;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:6:\"prefix\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:6:\"engine\";s:11:\"phptemplate\";}}", - 'page_callback' => 'block_admin_demo', - 'page_arguments' => 'a:1:{i:0;s:5:"stark";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/block/demo/stark', - 'title' => 'Stark', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '_block_custom_theme', - 'theme_arguments' => 'a:1:{i:0;s:5:"stark";}', - 'type' => '0', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/block/block.admin.inc', + 'menu_name' => 'navigation', + 'mlid' => '363', + 'plid' => '5', + 'link_path' => 'node/%/track', + 'router_path' => 'node/%/track', + 'link_title' => 'Track', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '2', + 'depth' => '2', + 'customized' => '0', + 'p1' => '5', + 'p2' => '363', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/block/list/bartik', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_block_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:25:"themes/bartik/bartik.info";s:4:"name";s:6:"bartik";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:19:{s:4:"name";s:6:"Bartik";s:11:"description";s:48:"A flexible, recolorable theme with many regions.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:3:{s:14:"css/layout.css";s:28:"themes/bartik/css/layout.css";s:13:"css/style.css";s:27:"themes/bartik/css/style.css";s:14:"css/colors.css";s:28:"themes/bartik/css/colors.css";}s:5:"print";a:1:{s:13:"css/print.css";s:27:"themes/bartik/css/print.css";}}s:7:"regions";a:20:{s:6:"header";s:6:"Header";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:11:"highlighted";s:11:"Highlighted";s:8:"featured";s:8:"Featured";s:7:"content";s:7:"Content";s:13:"sidebar_first";s:13:"Sidebar first";s:14:"sidebar_second";s:14:"Sidebar second";s:14:"triptych_first";s:14:"Triptych first";s:15:"triptych_middle";s:15:"Triptych middle";s:13:"triptych_last";s:13:"Triptych last";s:18:"footer_firstcolumn";s:19:"Footer first column";s:19:"footer_secondcolumn";s:20:"Footer second column";s:18:"footer_thirdcolumn";s:19:"Footer third column";s:19:"footer_fourthcolumn";s:20:"Footer fourth column";s:6:"footer";s:6:"Footer";s:14:"dashboard_main";s:16:"Dashboard (main)";s:17:"dashboard_sidebar";s:19:"Dashboard (sidebar)";s:18:"dashboard_inactive";s:20:"Dashboard (inactive)";}s:8:"settings";a:1:{s:20:"shortcut_module_link";s:1:"0";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:6:"engine";s:11:"phptemplate";s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:28:"themes/bartik/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1498069849;s:15:"overlay_regions";a:5:{i:0;s:14:"dashboard_main";i:1;s:17:"dashboard_sidebar";i:2;s:18:"dashboard_inactive";i:3;s:7:"content";i:4;s:4:"help";}s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:3:{s:14:"css/layout.css";s:28:"themes/bartik/css/layout.css";s:13:"css/style.css";s:27:"themes/bartik/css/style.css";s:14:"css/colors.css";s:28:"themes/bartik/css/colors.css";}s:5:"print";a:1:{s:13:"css/print.css";s:27:"themes/bartik/css/print.css";}}s:6:"engine";s:11:"phptemplate";}}', - 'page_callback' => 'block_admin_display', - 'page_arguments' => 'a:1:{i:0;s:6:"bartik";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/structure/block', - 'tab_root' => 'admin/structure/block', - 'title' => 'Bartik', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/block/block.admin.inc', + 'menu_name' => 'navigation', + 'mlid' => '364', + 'plid' => '16', + 'link_path' => 'user/%/track', + 'router_path' => 'user/%/track', + 'link_title' => 'Track', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '2', + 'customized' => '0', + 'p1' => '16', + 'p2' => '364', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/block/list/garland', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_block_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:19:{s:4:"name";s:7:"Garland";s:11:"description";s:111:"A multi-column theme which can be configured to modify colors and switch between fixed and fluid width layouts.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:8:"settings";a:1:{s:13:"garland_width";s:5:"fluid";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:6:"engine";s:11:"phptemplate";s:7:"regions";a:12:{s:13:"sidebar_first";s:12:"Left sidebar";s:14:"sidebar_second";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";s:11:"highlighted";s:11:"Highlighted";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:14:"dashboard_main";s:16:"Dashboard (main)";s:17:"dashboard_sidebar";s:19:"Dashboard (sidebar)";s:18:"dashboard_inactive";s:20:"Dashboard (inactive)";}s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1498069849;s:15:"overlay_regions";a:5:{i:0;s:14:"dashboard_main";i:1;s:17:"dashboard_sidebar";i:2;s:18:"dashboard_inactive";i:3;s:7:"content";i:4;s:4:"help";}s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}', - 'page_callback' => 'block_admin_display', - 'page_arguments' => 'a:1:{i:0;s:7:"garland";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/structure/block', - 'tab_root' => 'admin/structure/block', - 'title' => 'Garland', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/block/block.admin.inc', + 'menu_name' => 'navigation', + 'mlid' => '365', + 'plid' => '5', + 'link_path' => 'node/%/translate', + 'router_path' => 'node/%/translate', + 'link_title' => 'Translate', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '2', + 'depth' => '2', + 'customized' => '0', + 'p1' => '5', + 'p2' => '365', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/block/list/garland/add', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}', - 'delivery_callback' => '', - 'fit' => '63', - 'number_parts' => '6', - 'context' => '1', - 'tab_parent' => 'admin/structure/block/list/garland', - 'tab_root' => 'admin/structure/block', - 'title' => 'Add block', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '366', + 'plid' => '20', + 'link_path' => 'admin/structure/trigger', + 'router_path' => 'admin/structure/trigger', + 'link_title' => 'Triggers', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:34:"Configure when to execute actions.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/block/block.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '366', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/block/list/seven', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_block_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:23:"themes/seven/seven.info";s:4:"name";s:5:"seven";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:19:{s:4:"name";s:5:"Seven";s:11:"description";s:65:"A simple one-column, tableless, fluid width administration theme.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:1:{s:6:"screen";a:2:{s:9:"reset.css";s:22:"themes/seven/reset.css";s:9:"style.css";s:22:"themes/seven/style.css";}}s:8:"settings";a:1:{s:20:"shortcut_module_link";s:1:"1";}s:7:"regions";a:8:{s:7:"content";s:7:"Content";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:13:"sidebar_first";s:13:"First sidebar";s:14:"dashboard_main";s:16:"Dashboard (main)";s:17:"dashboard_sidebar";s:19:"Dashboard (sidebar)";s:18:"dashboard_inactive";s:20:"Dashboard (inactive)";}s:14:"regions_hidden";a:3:{i:0;s:13:"sidebar_first";i:1;s:8:"page_top";i:2;s:11:"page_bottom";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:6:"engine";s:11:"phptemplate";s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:27:"themes/seven/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1498069849;s:15:"overlay_regions";a:5:{i:0;s:14:"dashboard_main";i:1;s:17:"dashboard_sidebar";i:2;s:18:"dashboard_inactive";i:3;s:7:"content";i:4;s:4:"help";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:1:{s:6:"screen";a:2:{s:9:"reset.css";s:22:"themes/seven/reset.css";s:9:"style.css";s:22:"themes/seven/style.css";}}s:6:"engine";s:11:"phptemplate";}}', - 'page_callback' => 'block_admin_display', - 'page_arguments' => 'a:1:{i:0;s:5:"seven";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/structure/block', - 'tab_root' => 'admin/structure/block', - 'title' => 'Seven', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '369', + 'plid' => '175', + 'link_path' => 'admin/help/aggregator', + 'router_path' => 'admin/help/aggregator', + 'link_title' => 'aggregator', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/block/block.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '369', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/block/list/seven/add', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}', - 'delivery_callback' => '', - 'fit' => '63', - 'number_parts' => '6', - 'context' => '1', - 'tab_parent' => 'admin/structure/block/list/seven', - 'tab_root' => 'admin/structure/block', - 'title' => 'Add block', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '370', + 'plid' => '175', + 'link_path' => 'admin/help/blog', + 'router_path' => 'admin/help/blog', + 'link_title' => 'blog', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/block/block.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '370', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/block/list/stark', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_block_themes_access', - 'access_arguments' => "a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:23:\"themes/stark/stark.info\";s:4:\"name\";s:5:\"stark\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:18:{s:4:\"name\";s:5:\"Stark\";s:11:\"description\";s:208:\"This theme demonstrates Drupal's default HTML markup and CSS styles. To learn how to build your own theme and override Drupal's default code, see the Theming Guide.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.56\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1498069849\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:27:\"themes/stark/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1498069849;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:6:\"prefix\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:6:\"engine\";s:11:\"phptemplate\";}}", - 'page_callback' => 'block_admin_display', - 'page_arguments' => 'a:1:{i:0;s:5:"stark";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/structure/block', - 'tab_root' => 'admin/structure/block', - 'title' => 'Stark', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '371', + 'plid' => '175', + 'link_path' => 'admin/help/book', + 'router_path' => 'admin/help/book', + 'link_title' => 'book', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/block/block.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '371', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/block/list/stark/add', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}', - 'delivery_callback' => '', - 'fit' => '63', - 'number_parts' => '6', - 'context' => '1', - 'tab_parent' => 'admin/structure/block/list/stark', - 'tab_root' => 'admin/structure/block', - 'title' => 'Add block', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '372', + 'plid' => '175', + 'link_path' => 'admin/help/contact', + 'router_path' => 'admin/help/contact', + 'link_title' => 'contact', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/block/block.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '372', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/block/manage/%/%', - 'load_functions' => 'a:2:{i:4;N;i:5;N;}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:3:{i:0;s:21:"block_admin_configure";i:1;i:4;i:2;i:5;}', - 'delivery_callback' => '', - 'fit' => '60', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/block/manage/%/%', - 'title' => 'Configure block', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '373', + 'plid' => '175', + 'link_path' => 'admin/help/date', + 'router_path' => 'admin/help/date', + 'link_title' => 'date', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/block/block.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '373', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/block/manage/%/%/configure', - 'load_functions' => 'a:2:{i:4;N;i:5;N;}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:3:{i:0;s:21:"block_admin_configure";i:1;i:4;i:2;i:5;}', - 'delivery_callback' => '', - 'fit' => '121', - 'number_parts' => '7', - 'context' => '2', - 'tab_parent' => 'admin/structure/block/manage/%/%', - 'tab_root' => 'admin/structure/block/manage/%/%', - 'title' => 'Configure block', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '374', + 'plid' => '175', + 'link_path' => 'admin/help/forum', + 'router_path' => 'admin/help/forum', + 'link_title' => 'forum', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/block/block.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '374', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/block/manage/%/%/delete', - 'load_functions' => 'a:2:{i:4;N;i:5;N;}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:3:{i:0;s:25:"block_custom_block_delete";i:1;i:4;i:2;i:5;}', - 'delivery_callback' => '', - 'fit' => '121', - 'number_parts' => '7', - 'context' => '0', - 'tab_parent' => 'admin/structure/block/manage/%/%', - 'tab_root' => 'admin/structure/block/manage/%/%', - 'title' => 'Delete block', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '375', + 'plid' => '175', + 'link_path' => 'admin/help/locale', + 'router_path' => 'admin/help/locale', + 'link_title' => 'locale', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/block/block.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '375', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/contact', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:24:"administer contact forms";}', - 'page_callback' => 'contact_category_list', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/contact', - 'title' => 'Contact form', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Create a system contact form and set up categories for the form to use.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '377', + 'plid' => '175', + 'link_path' => 'admin/help/simpletest', + 'router_path' => 'admin/help/simpletest', + 'link_title' => 'simpletest', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/contact/contact.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '377', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/contact/add', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:24:"administer contact forms";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:26:"contact_category_edit_form";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/structure/contact', - 'tab_root' => 'admin/structure/contact', - 'title' => 'Add category', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', - 'weight' => '1', - 'include_file' => 'modules/contact/contact.admin.inc', + 'menu_name' => 'management', + 'mlid' => '378', + 'plid' => '175', + 'link_path' => 'admin/help/statistics', + 'router_path' => 'admin/help/statistics', + 'link_title' => 'statistics', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '378', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/contact/delete/%', - 'load_functions' => 'a:1:{i:4;s:12:"contact_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:24:"administer contact forms";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:28:"contact_category_delete_form";i:1;i:4;}', - 'delivery_callback' => '', - 'fit' => '30', - 'number_parts' => '5', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/contact/delete/%', - 'title' => 'Delete contact', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '379', + 'plid' => '175', + 'link_path' => 'admin/help/syslog', + 'router_path' => 'admin/help/syslog', + 'link_title' => 'syslog', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/contact/contact.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '379', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/contact/edit/%', - 'load_functions' => 'a:1:{i:4;s:12:"contact_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:24:"administer contact forms";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:26:"contact_category_edit_form";i:1;i:4;}', - 'delivery_callback' => '', - 'fit' => '30', - 'number_parts' => '5', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/contact/edit/%', - 'title' => 'Edit contact category', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '380', + 'plid' => '175', + 'link_path' => 'admin/help/tracker', + 'router_path' => 'admin/help/tracker', + 'link_title' => 'tracker', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/contact/contact.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '380', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/field-collections', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:28:"administer field collections";}', - 'page_callback' => 'field_collections_overview', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/field-collections', - 'title' => 'Field collections', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Manage fields on field collections.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '381', + 'plid' => '175', + 'link_path' => 'admin/help/translation', + 'router_path' => 'admin/help/translation', + 'link_title' => 'translation', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'sites/all/modules/field_collection/field_collection.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '381', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/field-collections/%', - 'load_functions' => 'a:1:{i:3;s:32:"field_collection_field_name_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:28:"administer field collections";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:21:"field_collection_item";i:2;i:3;}', - 'delivery_callback' => '', - 'fit' => '14', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/field-collections/%', - 'title' => 'Manage fields', - 'title_callback' => 'field_collection_admin_page_title', - 'title_arguments' => 'a:1:{i:0;i:3;}', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', - 'weight' => '1', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'management', + 'mlid' => '382', + 'plid' => '175', + 'link_path' => 'admin/help/trigger', + 'router_path' => 'admin/help/trigger', + 'link_title' => 'trigger', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '382', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/field-collections/%/display', - 'load_functions' => 'a:1:{i:3;s:32:"field_collection_field_name_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:28:"administer field collections";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:21:"field_collection_item";i:2;i:3;i:3;s:7:"default";}', - 'delivery_callback' => '', - 'fit' => '29', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/structure/field-collections/%', - 'tab_root' => 'admin/structure/field-collections/%', - 'title' => 'Manage display', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '2', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'navigation', + 'mlid' => '383', + 'plid' => '347', + 'link_path' => 'aggregator/categories/%/categorize', + 'router_path' => 'aggregator/categories/%/categorize', + 'link_title' => 'Categorize', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '4', + 'customized' => '0', + 'p1' => '338', + 'p2' => '342', + 'p3' => '347', + 'p4' => '383', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/field-collections/%/display/default', - 'load_functions' => 'a:1:{i:3;s:32:"field_collection_field_name_load";}', - 'to_arg_functions' => '', - 'access_callback' => '_field_ui_view_mode_menu_access', - 'access_arguments' => 'a:6:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:7:"default";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:28:"administer field collections";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:21:"field_collection_item";i:2;i:3;i:3;s:7:"default";}', - 'delivery_callback' => '', - 'fit' => '59', - 'number_parts' => '6', - 'context' => '1', - 'tab_parent' => 'admin/structure/field-collections/%/display', - 'tab_root' => 'admin/structure/field-collections/%', - 'title' => 'Default', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'navigation', + 'mlid' => '384', + 'plid' => '348', + 'link_path' => 'aggregator/sources/%/categorize', + 'router_path' => 'aggregator/sources/%/categorize', + 'link_title' => 'Categorize', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '4', + 'customized' => '0', + 'p1' => '338', + 'p2' => '346', + 'p3' => '348', + 'p4' => '384', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/field-collections/%/display/full', - 'load_functions' => 'a:1:{i:3;s:32:"field_collection_field_name_load";}', - 'to_arg_functions' => '', - 'access_callback' => '_field_ui_view_mode_menu_access', - 'access_arguments' => 'a:6:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:4:"full";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:28:"administer field collections";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:21:"field_collection_item";i:2;i:3;i:3;s:4:"full";}', - 'delivery_callback' => '', - 'fit' => '59', - 'number_parts' => '6', - 'context' => '1', - 'tab_parent' => 'admin/structure/field-collections/%/display', - 'tab_root' => 'admin/structure/field-collections/%', - 'title' => 'Full content', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'navigation', + 'mlid' => '385', + 'plid' => '347', + 'link_path' => 'aggregator/categories/%/configure', + 'router_path' => 'aggregator/categories/%/configure', + 'link_title' => 'Configure', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '1', + 'depth' => '4', + 'customized' => '0', + 'p1' => '338', + 'p2' => '342', + 'p3' => '347', + 'p4' => '385', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/field-collections/%/fields', - 'load_functions' => 'a:1:{i:3;s:32:"field_collection_field_name_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:28:"administer field collections";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:21:"field_collection_item";i:2;i:3;}', - 'delivery_callback' => '', - 'fit' => '29', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/structure/field-collections/%', - 'tab_root' => 'admin/structure/field-collections/%', - 'title' => 'Manage fields', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '386', + 'plid' => '348', + 'link_path' => 'aggregator/sources/%/configure', + 'router_path' => 'aggregator/sources/%/configure', + 'link_title' => 'Configure', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '1', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '338', + 'p2' => '346', + 'p3' => '348', + 'p4' => '386', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/field-collections/%/fields/%', - 'load_functions' => 'a:2:{i:3;a:1:{s:32:"field_collection_field_name_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:28:"administer field collections";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '58', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/field-collections/%/fields/%', - 'title' => '', - 'title_callback' => 'field_ui_menu_title', - 'title_arguments' => 'a:1:{i:0;i:5;}', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'navigation', + 'mlid' => '387', + 'plid' => '347', + 'link_path' => 'aggregator/categories/%/view', + 'router_path' => 'aggregator/categories/%/view', + 'link_title' => 'View', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '-10', + 'depth' => '4', + 'customized' => '0', + 'p1' => '338', + 'p2' => '342', + 'p3' => '347', + 'p4' => '387', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/field-collections/%/fields/%/delete', - 'load_functions' => 'a:2:{i:3;a:1:{s:32:"field_collection_field_name_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:28:"administer field collections";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:26:"field_ui_field_delete_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '117', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/structure/field-collections/%/fields/%', - 'tab_root' => 'admin/structure/field-collections/%/fields/%', - 'title' => 'Delete', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '10', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'navigation', + 'mlid' => '388', + 'plid' => '348', + 'link_path' => 'aggregator/sources/%/view', + 'router_path' => 'aggregator/sources/%/view', + 'link_title' => 'View', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '-10', + 'depth' => '4', + 'customized' => '0', + 'p1' => '338', + 'p2' => '346', + 'p3' => '348', + 'p4' => '388', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/field-collections/%/fields/%/edit', - 'load_functions' => 'a:2:{i:3;a:1:{s:32:"field_collection_field_name_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:28:"administer field collections";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '117', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/structure/field-collections/%/fields/%', - 'tab_root' => 'admin/structure/field-collections/%/fields/%', - 'title' => 'Edit', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'management', + 'mlid' => '389', + 'plid' => '353', + 'link_path' => 'admin/structure/contact/add', + 'router_path' => 'admin/structure/contact/add', + 'link_title' => 'Add category', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '1', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '353', + 'p4' => '389', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/field-collections/%/fields/%/field-settings', - 'load_functions' => 'a:2:{i:3;a:1:{s:32:"field_collection_field_name_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:28:"administer field collections";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:28:"field_ui_field_settings_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '117', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/structure/field-collections/%/fields/%', - 'tab_root' => 'admin/structure/field-collections/%/fields/%', - 'title' => 'Field settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '391', + 'plid' => '18', + 'link_path' => 'admin/reports/access/%', + 'router_path' => 'admin/reports/access/%', + 'link_title' => 'Details', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:16:"View access log.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '18', + 'p3' => '391', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/field-collections/%/fields/%/translate', - 'load_functions' => 'a:2:{i:3;a:1:{s:32:"field_collection_field_name_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:28:"administer field collections";}', - 'page_callback' => 'i18n_field_page_translate', - 'page_arguments' => 'a:1:{i:0;i:5;}', - 'delivery_callback' => '', - 'fit' => '117', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/structure/field-collections/%/fields/%', - 'tab_root' => 'admin/structure/field-collections/%/fields/%', - 'title' => 'Translate', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '392', + 'plid' => '33', + 'link_path' => 'admin/config/content/email', + 'router_path' => 'admin/config/content/email', + 'link_title' => 'Email Contact Form Settings', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:57:"Administer flood control settings for email contact forms";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'sites/all/modules/i18n/i18n_field/i18n_field.pages.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '33', + 'p4' => '392', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/field-collections/%/fields/%/translate/%', - 'load_functions' => 'a:3:{i:3;a:1:{s:32:"field_collection_field_name_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:7;a:1:{s:18:"i18n_language_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:28:"administer field collections";}', - 'page_callback' => 'i18n_field_page_translate', - 'page_arguments' => 'a:2:{i:0;i:5;i:1;i:7;}', - 'delivery_callback' => '', - 'fit' => '234', - 'number_parts' => '8', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/field-collections/%/fields/%/translate/%', - 'title' => 'Instance', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/i18n/i18n_field/i18n_field.pages.inc', + 'menu_name' => 'management', + 'mlid' => '393', + 'plid' => '60', + 'link_path' => 'admin/config/services/aggregator', + 'router_path' => 'admin/config/services/aggregator', + 'link_title' => 'Feed aggregator', + 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:116:\"Configure which content your site aggregates from other sites, how often it polls them, and how they're categorized.\";}}", + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '1', + 'expanded' => '0', + 'weight' => '10', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '60', + 'p4' => '393', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/field-collections/%/fields/%/widget-type', - 'load_functions' => 'a:2:{i:3;a:1:{s:32:"field_collection_field_name_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:28:"administer field collections";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:25:"field_ui_widget_type_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '117', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/structure/field-collections/%/fields/%', - 'tab_root' => 'admin/structure/field-collections/%/fields/%', - 'title' => 'Widget type', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'management', + 'mlid' => '395', + 'plid' => '48', + 'link_path' => 'admin/config/regional/language', + 'router_path' => 'admin/config/regional/language', + 'link_title' => 'Languages', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:55:"Configure languages for content and the user interface.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '1', + 'expanded' => '0', + 'weight' => '-10', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '48', + 'p4' => '395', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/forum', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:14:"forum_overview";}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/forum', - 'title' => 'Forums', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Control forum hierarchy settings.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '396', + 'plid' => '351', + 'link_path' => 'admin/content/book/list', + 'router_path' => 'admin/content/book/list', + 'link_title' => 'List', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/forum/forum.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '9', + 'p3' => '351', + 'p4' => '396', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/forum/add/container', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}', - 'page_callback' => 'forum_form_main', - 'page_arguments' => 'a:1:{i:0;s:9:"container";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/structure/forum', - 'tab_root' => 'admin/structure/forum', - 'title' => 'Add container', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/forum/forum.admin.inc', + 'menu_name' => 'management', + 'mlid' => '398', + 'plid' => '356', + 'link_path' => 'admin/structure/forum/list', + 'router_path' => 'admin/structure/forum/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' => '20', + 'p3' => '356', + 'p4' => '398', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/forum/add/forum', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}', - 'page_callback' => 'forum_form_main', - 'page_arguments' => 'a:1:{i:0;s:5:"forum";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/structure/forum', - 'tab_root' => 'admin/structure/forum', - 'title' => 'Add forum', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '399', + 'plid' => '358', + 'link_path' => 'node/%/outline/remove', + 'router_path' => 'node/%/outline/remove', + 'link_title' => 'Remove from outline', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/forum/forum.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '5', + 'p2' => '358', + 'p3' => '399', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/forum/edit/container/%', - 'load_functions' => 'a:1:{i:5;s:18:"taxonomy_term_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}', - 'page_callback' => 'forum_form_main', - 'page_arguments' => 'a:2:{i:0;s:9:"container";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '62', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/forum/edit/container/%', - 'title' => 'Edit container', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/forum/forum.admin.inc', + 'menu_name' => 'management', + 'mlid' => '400', + 'plid' => '351', + 'link_path' => 'admin/content/book/settings', + 'router_path' => 'admin/content/book/settings', + 'link_title' => 'Settings', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '8', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '9', + 'p3' => '351', + 'p4' => '400', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/forum/edit/forum/%', - 'load_functions' => 'a:1:{i:5;s:18:"taxonomy_term_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}', - 'page_callback' => 'forum_form_main', - 'page_arguments' => 'a:2:{i:0;s:5:"forum";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '62', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/forum/edit/forum/%', - 'title' => 'Edit forum', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/forum/forum.admin.inc', + 'menu_name' => 'management', + 'mlid' => '402', + 'plid' => '53', + 'link_path' => 'admin/config/system/statistics', + 'router_path' => 'admin/config/system/statistics', + 'link_title' => 'Statistics', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:68:"Control details about what and how your site logs access statistics.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '-15', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '53', + 'p4' => '402', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/forum/list', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:14:"forum_overview";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/structure/forum', - 'tab_root' => 'admin/structure/forum', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/forum/forum.admin.inc', + 'menu_name' => 'management', + 'mlid' => '405', + 'plid' => '366', + 'link_path' => 'admin/structure/trigger/comment', + 'router_path' => 'admin/structure/trigger/comment', + 'link_title' => 'Comment', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '366', + 'p4' => '405', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/forum/settings', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:20:"forum_admin_settings";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/structure/forum', - 'tab_root' => 'admin/structure/forum', - 'title' => 'Settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '5', - 'include_file' => 'modules/forum/forum.admin.inc', + 'menu_name' => 'management', + 'mlid' => '407', + 'plid' => '366', + 'link_path' => 'admin/structure/trigger/node', + 'router_path' => 'admin/structure/trigger/node', + 'link_title' => 'Node', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '366', + 'p4' => '407', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/menu', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', - 'page_callback' => 'menu_overview_page', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/menu', - 'title' => 'Menus', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Add new menus to your site, edit existing menus, and rename and reorganize menu links.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '408', + 'plid' => '366', + 'link_path' => 'admin/structure/trigger/system', + 'router_path' => 'admin/structure/trigger/system', + 'link_title' => 'System', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/menu/menu.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '366', + 'p4' => '408', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/menu/add', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:14:"menu_edit_menu";i:1;s:3:"add";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/structure/menu', - 'tab_root' => 'admin/structure/menu', - 'title' => 'Add menu', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '409', + 'plid' => '366', + 'link_path' => 'admin/structure/trigger/taxonomy', + 'router_path' => 'admin/structure/trigger/taxonomy', + 'link_title' => 'Taxonomy', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/menu/menu.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '366', + 'p4' => '409', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/menu/item/%/delete', - 'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', - 'page_callback' => 'menu_item_delete_page', - 'page_arguments' => 'a:1:{i:0;i:4;}', - 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/menu/item/%/delete', - 'title' => 'Delete menu link', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/menu/menu.admin.inc', + 'menu_name' => 'management', + 'mlid' => '410', + 'plid' => '37', + 'link_path' => 'admin/config/development/testing', + 'router_path' => 'admin/config/development/testing', + 'link_title' => 'Testing', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:122:"Run tests against Drupal core and your active modules. These tests help assure that your site code is working as designed.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '1', + 'expanded' => '0', + 'weight' => '-5', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '37', + 'p4' => '410', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/menu/item/%/edit', - 'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:14:"menu_edit_item";i:1;s:4:"edit";i:2;i:4;i:3;N;}', - 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/menu/item/%/edit', - 'title' => 'Edit menu link', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '411', + 'plid' => '364', + 'link_path' => 'user/%/track/content', + 'router_path' => 'user/%/track/content', + 'link_title' => 'Track content', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/menu/menu.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '16', + 'p2' => '364', + 'p3' => '411', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/menu/item/%/reset', - 'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:23:"menu_reset_item_confirm";i:1;i:4;}', - 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/menu/item/%/reset', - 'title' => 'Reset menu link', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/menu/menu.admin.inc', + 'menu_name' => 'navigation', + 'mlid' => '412', + 'plid' => '364', + 'link_path' => 'user/%/track/navigation', + 'router_path' => 'user/%/track/navigation', + 'link_title' => 'Track page visits', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '2', + 'depth' => '3', + 'customized' => '0', + 'p1' => '16', + 'p2' => '364', + 'p3' => '412', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/menu/list', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', - 'page_callback' => 'menu_overview_page', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/structure/menu', - 'tab_root' => 'admin/structure/menu', - 'title' => 'List menus', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/menu/menu.admin.inc', + 'menu_name' => 'management', + 'mlid' => '413', + 'plid' => '48', + 'link_path' => 'admin/config/regional/translate', + 'router_path' => 'admin/config/regional/translate', + 'link_title' => 'Translate interface', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:59:"Translate the built in interface and optionally other text.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '1', + 'expanded' => '0', + 'weight' => '-5', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '48', + 'p4' => '413', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/menu/manage/%', - 'load_functions' => 'a:1:{i:4;s:9:"menu_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:18:"menu_overview_form";i:1;i:4;}', - 'delivery_callback' => '', - 'fit' => '30', - 'number_parts' => '5', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/menu/manage/%', - 'title' => 'Customize menu', - 'title_callback' => 'menu_overview_title', - 'title_arguments' => 'a:1:{i:0;i:4;}', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '414', + 'plid' => '366', + 'link_path' => 'admin/structure/trigger/unassign', + 'router_path' => 'admin/structure/trigger/unassign', + 'link_title' => 'Unassign', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:34:"Unassign an action from a trigger.";}}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/menu/menu.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '366', + 'p4' => '414', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/menu/manage/%/add', - 'load_functions' => 'a:1:{i:4;s:9:"menu_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:14:"menu_edit_item";i:1;s:3:"add";i:2;N;i:3;i:4;}', - 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', - 'context' => '1', - 'tab_parent' => 'admin/structure/menu/manage/%', - 'tab_root' => 'admin/structure/menu/manage/%', - 'title' => 'Add link', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '416', + 'plid' => '366', + 'link_path' => 'admin/structure/trigger/user', + 'router_path' => 'admin/structure/trigger/user', + 'link_title' => 'User', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/menu/menu.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '366', + 'p4' => '416', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/menu/manage/%/delete', - 'load_functions' => 'a:1:{i:4;s:9:"menu_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', - 'page_callback' => 'menu_delete_menu_page', - 'page_arguments' => 'a:1:{i:0;i:4;}', - 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/menu/manage/%/delete', - 'title' => 'Delete menu', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/menu/menu.admin.inc', + 'menu_name' => 'management', + 'mlid' => '417', + 'plid' => '356', + 'link_path' => 'admin/structure/forum/settings', + 'router_path' => 'admin/structure/forum/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' => '20', + 'p3' => '356', + 'p4' => '417', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/menu/manage/%/edit', - 'load_functions' => 'a:1:{i:4;s:9:"menu_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:3:{i:0;s:14:"menu_edit_menu";i:1;s:4:"edit";i:2;i:4;}', - 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', - 'context' => '3', - 'tab_parent' => 'admin/structure/menu/manage/%', - 'tab_root' => 'admin/structure/menu/manage/%', - 'title' => 'Edit menu', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '418', + 'plid' => '395', + 'link_path' => 'admin/config/regional/language/add', + 'router_path' => 'admin/config/regional/language/add', + 'link_title' => 'Add language', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '5', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '48', + 'p4' => '395', + 'p5' => '418', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', +)) +->values(array( + 'menu_name' => 'management', + 'mlid' => '421', + 'plid' => '353', + 'link_path' => 'admin/structure/contact/delete/%', + 'router_path' => 'admin/structure/contact/delete/%', + 'link_title' => 'Delete contact', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/menu/menu.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '353', + 'p4' => '421', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/menu/manage/%/list', - 'load_functions' => 'a:1:{i:4;s:9:"menu_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:18:"menu_overview_form";i:1;i:4;}', - 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', - 'context' => '3', - 'tab_parent' => 'admin/structure/menu/manage/%', - 'tab_root' => 'admin/structure/menu/manage/%', - 'title' => 'List links', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/menu/menu.admin.inc', + 'menu_name' => 'management', + 'mlid' => '422', + 'plid' => '395', + 'link_path' => 'admin/config/regional/language/configure', + 'router_path' => 'admin/config/regional/language/configure', + 'link_title' => 'Detection and selection', + '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' => '48', + 'p4' => '395', + 'p5' => '422', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/menu/parents', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', - 'page_callback' => 'menu_parent_options_js', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/menu/parents', - 'title' => 'Parent menu items', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '423', + 'plid' => '353', + 'link_path' => 'admin/structure/contact/edit/%', + 'router_path' => 'admin/structure/contact/edit/%', + 'link_title' => 'Edit contact category', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => '', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '353', + 'p4' => '423', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/menu/settings', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:14:"menu_configure";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/structure/menu', - 'tab_root' => 'admin/structure/menu', - 'title' => 'Settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '5', - 'include_file' => 'modules/menu/menu.admin.inc', + 'menu_name' => 'management', + 'mlid' => '424', + 'plid' => '413', + 'link_path' => 'admin/config/regional/translate/export', + 'router_path' => 'admin/config/regional/translate/export', + 'link_title' => 'Export', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '30', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '48', + 'p4' => '413', + 'p5' => '424', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/paragraphs', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer paragraphs bundles";}', - 'page_callback' => 'paragraphs_admin_bundle_overview', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/paragraphs', - 'title' => 'Paragraph Bundles', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Manage Paragraph bundles', - 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/paragraphs/paragraphs.admin.inc', + 'menu_name' => 'management', + 'mlid' => '425', + 'plid' => '413', + 'link_path' => 'admin/config/regional/translate/import', + 'router_path' => 'admin/config/regional/translate/import', + 'link_title' => 'Import', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '20', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '48', + 'p4' => '413', + 'p5' => '425', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/paragraphs/%', - 'load_functions' => 'a:1:{i:3;s:22:"paragraphs_bundle_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer paragraphs bundles";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:28:"paragraphs_admin_bundle_form";i:1;i:3;}', - 'delivery_callback' => '', - 'fit' => '14', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/paragraphs/%', - 'title' => 'Edit paragraph bundle', - 'title_callback' => 'paragraphs_bundle_title_callback', - 'title_arguments' => 'a:1:{i:0;i:3;}', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/paragraphs/paragraphs.admin.inc', + 'menu_name' => 'management', + 'mlid' => '426', + 'plid' => '393', + 'link_path' => 'admin/config/services/aggregator/list', + 'router_path' => 'admin/config/services/aggregator/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' => '60', + 'p4' => '393', + 'p5' => '426', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/paragraphs/%/delete', - 'load_functions' => 'a:1:{i:3;s:22:"paragraphs_bundle_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer paragraphs bundles";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:35:"paragraphs_admin_bundle_delete_form";i:1;i:3;}', - 'delivery_callback' => '', - 'fit' => '29', - 'number_parts' => '5', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/paragraphs/%/delete', - 'title' => 'Delete Paragraph Bundle', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '427', + 'plid' => '395', + 'link_path' => 'admin/config/regional/language/overview', + 'router_path' => 'admin/config/regional/language/overview', + 'link_title' => 'List', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'sites/all/modules/paragraphs/paragraphs.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '48', + 'p4' => '395', + 'p5' => '427', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/paragraphs/%/display', - 'load_functions' => 'a:1:{i:3;s:22:"paragraphs_bundle_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:29:"administer paragraphs bundles";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:15:"paragraphs_item";i:2;i:3;i:3;s:7:"default";}', - 'delivery_callback' => '', - 'fit' => '29', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/structure/paragraphs/%', - 'tab_root' => 'admin/structure/paragraphs/%', - 'title' => 'Manage display', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '2', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'management', + 'mlid' => '428', + 'plid' => '410', + 'link_path' => 'admin/config/development/testing/list', + 'router_path' => 'admin/config/development/testing/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' => '37', + 'p4' => '410', + 'p5' => '428', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/paragraphs/%/display/default', - 'load_functions' => 'a:1:{i:3;s:22:"paragraphs_bundle_load";}', - 'to_arg_functions' => '', - 'access_callback' => '_field_ui_view_mode_menu_access', - 'access_arguments' => 'a:6:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:7:"default";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:29:"administer paragraphs bundles";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:15:"paragraphs_item";i:2;i:3;i:3;s:7:"default";}', - 'delivery_callback' => '', - 'fit' => '59', - 'number_parts' => '6', - 'context' => '1', - 'tab_parent' => 'admin/structure/paragraphs/%/display', - 'tab_root' => 'admin/structure/paragraphs/%', - 'title' => 'Default', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'management', + 'mlid' => '429', + 'plid' => '74', + 'link_path' => 'admin/config/regional/date-time/locale', + 'router_path' => 'admin/config/regional/date-time/locale', + 'link_title' => 'Localize', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:38:"Configure date formats for each locale";}}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '1', + 'expanded' => '0', + 'weight' => '-8', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '48', + 'p4' => '74', + 'p5' => '429', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/paragraphs/%/display/full', - 'load_functions' => 'a:1:{i:3;s:22:"paragraphs_bundle_load";}', - 'to_arg_functions' => '', - 'access_callback' => '_field_ui_view_mode_menu_access', - 'access_arguments' => 'a:6:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:4:"full";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:29:"administer paragraphs bundles";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:15:"paragraphs_item";i:2;i:3;i:3;s:4:"full";}', - 'delivery_callback' => '', - 'fit' => '59', - 'number_parts' => '6', - 'context' => '1', - 'tab_parent' => 'admin/structure/paragraphs/%/display', - 'tab_root' => 'admin/structure/paragraphs/%', - 'title' => 'Full content', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '430', + 'plid' => '413', + 'link_path' => 'admin/config/regional/translate/overview', + 'router_path' => 'admin/config/regional/translate/overview', + 'link_title' => 'Overview', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '48', + 'p4' => '413', + 'p5' => '430', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/paragraphs/%/display/paragraphs_editor_preview', - 'load_functions' => 'a:1:{i:3;s:22:"paragraphs_bundle_load";}', - 'to_arg_functions' => '', - 'access_callback' => '_field_ui_view_mode_menu_access', - 'access_arguments' => 'a:6:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:25:"paragraphs_editor_preview";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:29:"administer paragraphs bundles";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:15:"paragraphs_item";i:2;i:3;i:3;s:25:"paragraphs_editor_preview";}', - 'delivery_callback' => '', - 'fit' => '59', - 'number_parts' => '6', - 'context' => '1', - 'tab_parent' => 'admin/structure/paragraphs/%/display', - 'tab_root' => 'admin/structure/paragraphs/%', - 'title' => 'Paragraphs Editor Preview', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '1', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'management', + 'mlid' => '431', + 'plid' => '410', + 'link_path' => 'admin/config/development/testing/settings', + 'router_path' => 'admin/config/development/testing/settings', + 'link_title' => 'Settings', + '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' => '37', + 'p4' => '410', + 'p5' => '431', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/paragraphs/%/edit', - 'load_functions' => 'a:1:{i:3;s:22:"paragraphs_bundle_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer paragraphs bundles";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:28:"paragraphs_admin_bundle_form";i:1;i:3;}', - 'delivery_callback' => '', - 'fit' => '29', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/structure/paragraphs/%', - 'tab_root' => 'admin/structure/paragraphs/%', - 'title' => 'Edit', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '432', + 'plid' => '393', + 'link_path' => 'admin/config/services/aggregator/settings', + 'router_path' => 'admin/config/services/aggregator/settings', + 'link_title' => 'Settings', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:129:"Configure the behavior of the feed aggregator, including when to discard feed items and how to present feed items and categories.";}}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'sites/all/modules/paragraphs/paragraphs.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '60', + 'p4' => '393', + 'p5' => '432', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/paragraphs/%/fields', - 'load_functions' => 'a:1:{i:3;s:22:"paragraphs_bundle_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:29:"administer paragraphs bundles";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:15:"paragraphs_item";i:2;i:3;}', - 'delivery_callback' => '', - 'fit' => '29', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/structure/paragraphs/%', - 'tab_root' => 'admin/structure/paragraphs/%', - 'title' => 'Manage fields', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '1', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'management', + 'mlid' => '433', + 'plid' => '413', + 'link_path' => 'admin/config/regional/translate/translate', + 'router_path' => 'admin/config/regional/translate/translate', + 'link_title' => 'Translate', + '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' => '48', + 'p4' => '413', + 'p5' => '433', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/paragraphs/%/fields/%', - 'load_functions' => 'a:2:{i:3;a:1:{s:22:"paragraphs_bundle_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:29:"administer paragraphs bundles";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '58', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/paragraphs/%/fields/%', - 'title' => '', - 'title_callback' => 'field_ui_menu_title', - 'title_arguments' => 'a:1:{i:0;i:5;}', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '435', + 'plid' => '356', + 'link_path' => 'admin/structure/forum/add/container', + 'router_path' => 'admin/structure/forum/add/container', + 'link_title' => 'Add container', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '356', + 'p4' => '435', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/paragraphs/%/fields/%/delete', - 'load_functions' => 'a:2:{i:3;a:1:{s:22:"paragraphs_bundle_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:29:"administer paragraphs bundles";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:26:"field_ui_field_delete_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '117', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/structure/paragraphs/%/fields/%', - 'tab_root' => 'admin/structure/paragraphs/%/fields/%', - 'title' => 'Delete', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '10', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'management', + 'mlid' => '436', + 'plid' => '356', + 'link_path' => 'admin/structure/forum/add/forum', + 'router_path' => 'admin/structure/forum/add/forum', + 'link_title' => 'Add forum', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '356', + 'p4' => '436', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/paragraphs/%/fields/%/edit', - 'load_functions' => 'a:2:{i:3;a:1:{s:22:"paragraphs_bundle_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:29:"administer paragraphs bundles";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '117', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/structure/paragraphs/%/fields/%', - 'tab_root' => 'admin/structure/paragraphs/%/fields/%', - 'title' => 'Edit', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '437', + 'plid' => '393', + 'link_path' => 'admin/config/services/aggregator/add/category', + 'router_path' => 'admin/config/services/aggregator/add/category', + 'link_title' => 'Add category', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '60', + 'p4' => '393', + 'p5' => '437', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/paragraphs/%/fields/%/field-settings', - 'load_functions' => 'a:2:{i:3;a:1:{s:22:"paragraphs_bundle_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:29:"administer paragraphs bundles";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:28:"field_ui_field_settings_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '117', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/structure/paragraphs/%/fields/%', - 'tab_root' => 'admin/structure/paragraphs/%/fields/%', - 'title' => 'Field settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '438', + 'plid' => '393', + 'link_path' => 'admin/config/services/aggregator/add/feed', + 'router_path' => 'admin/config/services/aggregator/add/feed', + 'link_title' => 'Add feed', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '60', + 'p4' => '393', + 'p5' => '438', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/paragraphs/%/fields/%/translate', - 'load_functions' => 'a:2:{i:3;a:1:{s:22:"paragraphs_bundle_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer paragraphs bundles";}', - 'page_callback' => 'i18n_field_page_translate', - 'page_arguments' => 'a:1:{i:0;i:5;}', - 'delivery_callback' => '', - 'fit' => '117', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/structure/paragraphs/%/fields/%', - 'tab_root' => 'admin/structure/paragraphs/%/fields/%', - 'title' => 'Translate', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '440', + 'plid' => '395', + 'link_path' => 'admin/config/regional/language/delete/%', + 'router_path' => 'admin/config/regional/language/delete/%', + 'link_title' => 'Confirm', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'sites/all/modules/i18n/i18n_field/i18n_field.pages.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '48', + 'p4' => '395', + 'p5' => '440', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/paragraphs/%/fields/%/translate/%', - 'load_functions' => 'a:3:{i:3;a:1:{s:22:"paragraphs_bundle_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:7;a:1:{s:18:"i18n_language_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer paragraphs bundles";}', - 'page_callback' => 'i18n_field_page_translate', - 'page_arguments' => 'a:2:{i:0;i:5;i:1;i:7;}', - 'delivery_callback' => '', - 'fit' => '234', - 'number_parts' => '8', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/paragraphs/%/fields/%/translate/%', - 'title' => 'Instance', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '441', + 'plid' => '413', + 'link_path' => 'admin/config/regional/translate/delete/%', + 'router_path' => 'admin/config/regional/translate/delete/%', + 'link_title' => 'Delete string', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'sites/all/modules/i18n/i18n_field/i18n_field.pages.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '48', + 'p4' => '413', + 'p5' => '441', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/paragraphs/%/fields/%/widget-type', - 'load_functions' => 'a:2:{i:3;a:1:{s:22:"paragraphs_bundle_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:29:"administer paragraphs bundles";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:25:"field_ui_widget_type_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '117', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/structure/paragraphs/%/fields/%', - 'tab_root' => 'admin/structure/paragraphs/%/fields/%', - 'title' => 'Widget type', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '442', + 'plid' => '356', + 'link_path' => 'admin/structure/forum/edit/container/%', + 'router_path' => 'admin/structure/forum/edit/container/%', + 'link_title' => 'Edit container', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '356', + 'p4' => '442', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/paragraphs/add', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer paragraphs bundles";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:28:"paragraphs_admin_bundle_form";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/structure/paragraphs', - 'tab_root' => 'admin/structure/paragraphs', - 'title' => 'Add Paragraph Bundle', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '443', + 'plid' => '356', + 'link_path' => 'admin/structure/forum/edit/forum/%', + 'router_path' => 'admin/structure/forum/edit/forum/%', + 'link_title' => 'Edit forum', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'sites/all/modules/paragraphs/paragraphs.admin.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '356', + 'p4' => '443', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/paragraphs/list', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer paragraphs bundles";}', - 'page_callback' => 'paragraphs_admin_bundle_overview', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/structure/paragraphs', - 'tab_root' => 'admin/structure/paragraphs', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'include_file' => 'sites/all/modules/paragraphs/paragraphs.admin.inc', + 'menu_name' => 'management', + 'mlid' => '444', + 'plid' => '395', + 'link_path' => 'admin/config/regional/language/edit/%', + 'router_path' => 'admin/config/regional/language/edit/%', + 'link_title' => 'Edit language', + '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' => '48', + 'p4' => '395', + 'p5' => '444', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/taxonomy', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:30:"taxonomy_overview_vocabularies";}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/taxonomy', - 'title' => 'Taxonomy', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Manage tagging, categorization, and classification of your content.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '445', + 'plid' => '413', + 'link_path' => 'admin/config/regional/translate/edit/%', + 'router_path' => 'admin/config/regional/translate/edit/%', + 'link_title' => 'Edit string', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/taxonomy/taxonomy.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '48', + 'p4' => '413', + 'p5' => '445', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/taxonomy/%', - 'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}', - 'delivery_callback' => '', - 'fit' => '14', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/taxonomy/%', - 'title' => '', - 'title_callback' => 'entity_label', - 'title_arguments' => 'a:2:{i:0;s:19:"taxonomy_vocabulary";i:1;i:3;}', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '447', + 'plid' => '393', + 'link_path' => 'admin/config/services/aggregator/add/opml', + 'router_path' => 'admin/config/services/aggregator/add/opml', + 'link_title' => 'Import OPML', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/taxonomy/taxonomy.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '60', + 'p4' => '393', + 'p5' => '447', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/taxonomy/%/add', - 'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:3:{i:0;s:18:"taxonomy_form_term";i:1;a:0:{}i:2;i:3;}', - 'delivery_callback' => '', - 'fit' => '29', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/structure/taxonomy/%', - 'tab_root' => 'admin/structure/taxonomy/%', - 'title' => 'Add term', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '448', + 'plid' => '393', + 'link_path' => 'admin/config/services/aggregator/remove/%', + 'router_path' => 'admin/config/services/aggregator/remove/%', + 'link_title' => 'Remove items', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/taxonomy/taxonomy.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '60', + 'p4' => '393', + 'p5' => '448', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/taxonomy/%/display', - 'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:19:"administer taxonomy";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:13:"taxonomy_term";i:2;i:3;i:3;s:7:"default";}', - 'delivery_callback' => '', - 'fit' => '29', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/structure/taxonomy/%', - 'tab_root' => 'admin/structure/taxonomy/%', - 'title' => 'Manage display', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '2', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'management', + 'mlid' => '449', + 'plid' => '422', + 'link_path' => 'admin/config/regional/language/configure/session', + 'router_path' => 'admin/config/regional/language/configure/session', + 'link_title' => 'Session language detection configuration', + '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' => '48', + 'p4' => '395', + 'p5' => '422', + 'p6' => '449', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/taxonomy/%/display/default', - 'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}', - 'to_arg_functions' => '', - 'access_callback' => '_field_ui_view_mode_menu_access', - 'access_arguments' => 'a:6:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:7:"default";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:19:"administer taxonomy";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:13:"taxonomy_term";i:2;i:3;i:3;s:7:"default";}', - 'delivery_callback' => '', - 'fit' => '59', - 'number_parts' => '6', - 'context' => '1', - 'tab_parent' => 'admin/structure/taxonomy/%/display', - 'tab_root' => 'admin/structure/taxonomy/%', - 'title' => 'Default', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'management', + 'mlid' => '450', + 'plid' => '410', + 'link_path' => 'admin/config/development/testing/results/%', + 'router_path' => 'admin/config/development/testing/results/%', + 'link_title' => 'Test result', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:21:"View result of tests.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '37', + 'p4' => '410', + 'p5' => '450', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/taxonomy/%/display/full', - 'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}', - 'to_arg_functions' => '', - 'access_callback' => '_field_ui_view_mode_menu_access', - 'access_arguments' => 'a:6:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:4:"full";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:19:"administer taxonomy";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:13:"taxonomy_term";i:2;i:3;i:3;s:4:"full";}', - 'delivery_callback' => '', - 'fit' => '59', - 'number_parts' => '6', - 'context' => '1', - 'tab_parent' => 'admin/structure/taxonomy/%/display', - 'tab_root' => 'admin/structure/taxonomy/%', - 'title' => 'Taxonomy term page', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '451', + 'plid' => '422', + 'link_path' => 'admin/config/regional/language/configure/url', + 'router_path' => 'admin/config/regional/language/configure/url', + 'link_title' => 'URL language detection configuration', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '48', + 'p4' => '395', + 'p5' => '422', + 'p6' => '451', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/taxonomy/%/edit', - 'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:24:"taxonomy_form_vocabulary";i:1;i:3;}', - 'delivery_callback' => '', - 'fit' => '29', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/structure/taxonomy/%', - 'tab_root' => 'admin/structure/taxonomy/%', - 'title' => 'Edit', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/taxonomy/taxonomy.admin.inc', + 'menu_name' => 'management', + 'mlid' => '452', + 'plid' => '393', + 'link_path' => 'admin/config/services/aggregator/update/%', + 'router_path' => 'admin/config/services/aggregator/update/%', + 'link_title' => 'Update items', + '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' => '60', + 'p4' => '393', + 'p5' => '452', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/taxonomy/%/fields', - 'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:19:"administer taxonomy";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:13:"taxonomy_term";i:2;i:3;}', - 'delivery_callback' => '', - 'fit' => '29', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/structure/taxonomy/%', - 'tab_root' => 'admin/structure/taxonomy/%', - 'title' => 'Manage fields', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '1', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'management', + 'mlid' => '458', + 'plid' => '393', + 'link_path' => 'admin/config/services/aggregator/edit/category/%', + 'router_path' => 'admin/config/services/aggregator/edit/category/%', + 'link_title' => 'Edit category', + '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' => '60', + 'p4' => '393', + 'p5' => '458', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/taxonomy/%/fields/%', - 'load_functions' => 'a:2:{i:3;a:1:{s:37:"taxonomy_vocabulary_machine_name_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:19:"administer taxonomy";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '58', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/taxonomy/%/fields/%', - 'title' => '', - 'title_callback' => 'field_ui_menu_title', - 'title_arguments' => 'a:1:{i:0;i:5;}', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '459', + 'plid' => '393', + 'link_path' => 'admin/config/services/aggregator/edit/feed/%', + 'router_path' => 'admin/config/services/aggregator/edit/feed/%', + 'link_title' => 'Edit feed', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '60', + 'p4' => '393', + 'p5' => '459', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/taxonomy/%/fields/%/delete', - 'load_functions' => 'a:2:{i:3;a:1:{s:37:"taxonomy_vocabulary_machine_name_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:19:"administer taxonomy";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:26:"field_ui_field_delete_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '117', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/structure/taxonomy/%/fields/%', - 'tab_root' => 'admin/structure/taxonomy/%/fields/%', - 'title' => 'Delete', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '10', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'management', + 'mlid' => '461', + 'plid' => '429', + 'link_path' => 'admin/config/regional/date-time/locale/%/edit', + 'router_path' => 'admin/config/regional/date-time/locale/%/edit', + 'link_title' => 'Localize date formats', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:38:"Configure date formats for each locale";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '48', + 'p4' => '74', + 'p5' => '429', + 'p6' => '461', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/taxonomy/%/fields/%/edit', - 'load_functions' => 'a:2:{i:3;a:1:{s:37:"taxonomy_vocabulary_machine_name_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:19:"administer taxonomy";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '117', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/structure/taxonomy/%/fields/%', - 'tab_root' => 'admin/structure/taxonomy/%/fields/%', - 'title' => 'Edit', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '462', + 'plid' => '303', + 'link_path' => 'admin/structure/types/manage/%/display/print', + 'router_path' => 'admin/structure/types/manage/%/display/print', + 'link_title' => 'Print', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '5', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '34', + 'p4' => '114', + 'p5' => '303', + 'p6' => '462', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', +)) +->values(array( + 'menu_name' => 'management', + 'mlid' => '463', + 'plid' => '429', + 'link_path' => 'admin/config/regional/date-time/locale/%/reset', + 'router_path' => 'admin/config/regional/date-time/locale/%/reset', + 'link_title' => 'Reset date formats', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:47:"Reset localized date formats to global defaults";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '8', + 'p3' => '48', + 'p4' => '74', + 'p5' => '429', + 'p6' => '463', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/taxonomy/%/fields/%/field-settings', - 'load_functions' => 'a:2:{i:3;a:1:{s:37:"taxonomy_vocabulary_machine_name_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:19:"administer taxonomy";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:28:"field_ui_field_settings_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '117', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/structure/taxonomy/%/fields/%', - 'tab_root' => 'admin/structure/taxonomy/%/fields/%', - 'title' => 'Field settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '465', + 'plid' => '6', + 'link_path' => 'node/add/test-content-type', + 'router_path' => 'node/add/test-content-type', + 'link_title' => 'Test content type', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:49:"This is the description of the test content type.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '2', + 'customized' => '0', + 'p1' => '6', + 'p2' => '465', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/taxonomy/%/fields/%/translate', - 'load_functions' => 'a:2:{i:3;a:1:{s:37:"taxonomy_vocabulary_machine_name_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}', - 'page_callback' => 'i18n_field_page_translate', - 'page_arguments' => 'a:1:{i:0;i:5;}', - 'delivery_callback' => '', - 'fit' => '117', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/structure/taxonomy/%/fields/%', - 'tab_root' => 'admin/structure/taxonomy/%/fields/%', - 'title' => 'Translate', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '466', + 'plid' => '44', + 'link_path' => 'admin/structure/menu/manage/menu-test-menu', + 'router_path' => 'admin/structure/menu/manage/%', + 'link_title' => 'Test Menu', + 'options' => 'a:0:{}', + 'module' => 'menu', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'sites/all/modules/i18n/i18n_field/i18n_field.pages.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '44', + 'p4' => '466', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/taxonomy/%/fields/%/translate/%', - 'load_functions' => 'a:3:{i:3;a:1:{s:37:"taxonomy_vocabulary_machine_name_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:7;a:1:{s:18:"i18n_language_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}', - 'page_callback' => 'i18n_field_page_translate', - 'page_arguments' => 'a:2:{i:0;i:5;i:1;i:7;}', - 'delivery_callback' => '', - 'fit' => '234', - 'number_parts' => '8', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/taxonomy/%/fields/%/translate/%', - 'title' => 'Instance', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', + 'menu_name' => 'menu-test-menu', + 'mlid' => '467', + 'plid' => '469', + 'link_path' => 'http://google.com', + 'router_path' => '', + 'link_title' => 'Google', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:6:"Google";}}', + 'module' => 'menu', + 'hidden' => '0', + 'external' => '1', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'sites/all/modules/i18n/i18n_field/i18n_field.pages.inc', + 'depth' => '2', + 'customized' => '1', + 'p1' => '469', + 'p2' => '467', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/taxonomy/%/fields/%/widget-type', - 'load_functions' => 'a:2:{i:3;a:1:{s:37:"taxonomy_vocabulary_machine_name_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:19:"administer taxonomy";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:25:"field_ui_widget_type_form";i:1;i:5;}', - 'delivery_callback' => '', - 'fit' => '117', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/structure/taxonomy/%/fields/%', - 'tab_root' => 'admin/structure/taxonomy/%/fields/%', - 'title' => 'Widget type', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'menu-test-menu', + 'mlid' => '468', + 'plid' => '0', + 'link_path' => 'http://yahoo.com', + 'router_path' => '', + 'link_title' => 'Yahoo', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:5:"Yahoo";}}', + 'module' => 'menu', + 'hidden' => '0', + 'external' => '1', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '1', + 'customized' => '1', + 'p1' => '468', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/taxonomy/%/list', - 'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}', - 'delivery_callback' => '', - 'fit' => '29', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/structure/taxonomy/%', - 'tab_root' => 'admin/structure/taxonomy/%', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', - 'weight' => '-20', - 'include_file' => 'modules/taxonomy/taxonomy.admin.inc', + 'menu_name' => 'menu-test-menu', + 'mlid' => '469', + 'plid' => '0', + 'link_path' => 'http://bing.com', + 'router_path' => '', + 'link_title' => 'Bing', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:4:"Bing";}}', + 'module' => 'menu', + 'hidden' => '0', + 'external' => '1', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '1', + 'customized' => '1', + 'p1' => '469', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/taxonomy/add', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:24:"taxonomy_form_vocabulary";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/structure/taxonomy', - 'tab_root' => 'admin/structure/taxonomy', - 'title' => 'Add vocabulary', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', + 'menu_name' => 'menu-test-menu', + 'mlid' => '470', + 'plid' => '469', + 'link_path' => 'http://ask.com', + 'router_path' => '', + 'link_title' => 'Ask', + 'options' => 'a:0:{}', + 'module' => 'menu', + 'hidden' => '0', + 'external' => '1', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/taxonomy/taxonomy.admin.inc', + 'depth' => '2', + 'customized' => '1', + 'p1' => '469', + 'p2' => '470', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/taxonomy/list', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:30:"taxonomy_overview_vocabularies";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/structure/taxonomy', - 'tab_root' => 'admin/structure/taxonomy', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/taxonomy/taxonomy.admin.inc', + 'menu_name' => 'shortcut-set-2', + 'mlid' => '472', + 'plid' => '0', + 'link_path' => 'admin/help', + 'router_path' => 'admin/help', + 'link_title' => 'Help', + 'options' => 'a:0:{}', + 'module' => 'menu', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '-49', + 'depth' => '1', + 'customized' => '0', + 'p1' => '472', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/trigger', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}', - 'page_callback' => 'trigger_assign', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/trigger', - 'title' => 'Triggers', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Configure when to execute actions.', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/trigger/trigger.admin.inc', + 'menu_name' => 'shortcut-set-2', + 'mlid' => '473', + 'plid' => '0', + 'link_path' => 'admin/people', + 'router_path' => 'admin/people', + 'link_title' => 'People', + 'options' => 'a:0:{}', + 'module' => 'menu', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '-50', + 'depth' => '1', + 'customized' => '0', + 'p1' => '473', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/trigger/comment', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}', - 'page_callback' => 'trigger_assign', - 'page_arguments' => 'a:1:{i:0;s:7:"comment";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/structure/trigger', - 'tab_root' => 'admin/structure/trigger', - 'title' => 'Comment', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '474', + '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', - 'include_file' => 'modules/trigger/trigger.admin.inc', + 'depth' => '2', + 'customized' => '0', + 'p1' => '4', + 'p2' => '474', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/trigger/node', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}', - 'page_callback' => 'trigger_assign', - 'page_arguments' => 'a:1:{i:0;s:4:"node";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/structure/trigger', - 'tab_root' => 'admin/structure/trigger', - 'title' => 'Node', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '475', + 'plid' => '175', + 'link_path' => 'admin/help/php', + 'router_path' => 'admin/help/php', + 'link_title' => 'php', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/trigger/trigger.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '475', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/trigger/system', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}', - 'page_callback' => 'trigger_assign', - 'page_arguments' => 'a:1:{i:0;s:6:"system";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/structure/trigger', - 'tab_root' => 'admin/structure/trigger', - 'title' => 'System', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '478', + 'plid' => '20', + 'link_path' => 'admin/content', + 'router_path' => 'admin/content', + 'link_title' => 'custom link test', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:0:"";}}', + 'module' => 'menu', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/trigger/trigger.admin.inc', + 'depth' => '3', + 'customized' => '1', + 'p1' => '1', + 'p2' => '20', + 'p3' => '478', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/trigger/taxonomy', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}', - 'page_callback' => 'trigger_assign', - 'page_arguments' => 'a:1:{i:0;s:8:"taxonomy";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/structure/trigger', - 'tab_root' => 'admin/structure/trigger', - 'title' => 'Taxonomy', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '479', + 'plid' => '0', + 'link_path' => 'node/2', + 'router_path' => 'node/%', + 'link_title' => 'node link test', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:6:"node 2";}}', + 'module' => 'menu', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '3', + 'depth' => '1', + 'customized' => '1', + 'p1' => '479', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', +)) +->values(array( + 'menu_name' => 'management', + 'mlid' => '480', + 'plid' => '20', + 'link_path' => 'admin/structure/field-collections', + 'router_path' => 'admin/structure/field-collections', + 'link_title' => 'Field collections', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:35:"Manage fields on field collections.";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '1', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/trigger/trigger.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '480', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/trigger/unassign', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'trigger_menu_unassign_access', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:16:"trigger_unassign";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/trigger/unassign', - 'title' => 'Unassign', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => 'Unassign an action from a trigger.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '481', + 'plid' => '20', + 'link_path' => 'admin/structure/paragraphs', + 'router_path' => 'admin/structure/paragraphs', + 'link_title' => 'Paragraph Bundles', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:24:"Manage Paragraph bundles";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '1', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/trigger/trigger.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '481', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/trigger/user', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}', - 'page_callback' => 'trigger_assign', - 'page_arguments' => 'a:1:{i:0;s:4:"user";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/structure/trigger', - 'tab_root' => 'admin/structure/trigger', - 'title' => 'User', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '482', + 'plid' => '175', + 'link_path' => 'admin/help/field_collection', + 'router_path' => 'admin/help/field_collection', + 'link_title' => 'field_collection', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/trigger/trigger.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '482', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}', - 'page_callback' => 'node_overview_types', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/types', - 'title' => 'Content types', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Manage content types, including default status, front page promotion, comment settings, etc.', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '483', + 'plid' => '481', + 'link_path' => 'admin/structure/paragraphs/add', + 'router_path' => 'admin/structure/paragraphs/add', + 'link_title' => 'Add Paragraph Bundle', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/node/content_types.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '481', + 'p4' => '483', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/add', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:14:"node_type_form";}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/structure/types', - 'tab_root' => 'admin/structure/types', - 'title' => 'Add content type', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '388', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '484', + 'plid' => '481', + 'link_path' => 'admin/structure/paragraphs/%', + 'router_path' => 'admin/structure/paragraphs/%', + 'link_title' => 'Edit paragraph bundle', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '1', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/node/content_types.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '481', + 'p4' => '484', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/list', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}', - 'page_callback' => 'node_overview_types', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/structure/types', - 'tab_root' => 'admin/structure/types', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '485', + 'plid' => '481', + 'link_path' => 'admin/structure/paragraphs/list', + 'router_path' => 'admin/structure/paragraphs/list', + 'link_title' => 'List', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '-10', - 'include_file' => 'modules/node/content_types.inc', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '481', + 'p4' => '485', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%', - 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;i:4;}', - 'delivery_callback' => '', - 'fit' => '30', - 'number_parts' => '5', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/types/manage/%', - 'title' => 'Edit content type', - 'title_callback' => 'node_type_page_title', - 'title_arguments' => 'a:1:{i:0;i:4;}', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '486', + 'plid' => '484', + 'link_path' => 'admin/structure/paragraphs/%/delete', + 'router_path' => 'admin/structure/paragraphs/%/delete', + 'link_title' => 'Delete Paragraph Bundle', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/node/content_types.inc', -)) -->values(array( - 'path' => 'admin/structure/types/manage/%/comment/display', - 'load_functions' => 'a:1:{i:4;s:22:"comment_node_type_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:7:"comment";i:2;i:4;i:3;s:7:"default";}', - 'delivery_callback' => '', - 'fit' => '123', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%', - 'tab_root' => 'admin/structure/types/manage/%', - 'title' => 'Comment display', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '4', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '481', + 'p4' => '484', + 'p5' => '486', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/comment/display/default', - 'load_functions' => 'a:1:{i:4;s:22:"comment_node_type_load";}', - 'to_arg_functions' => '', - 'access_callback' => '_field_ui_view_mode_menu_access', - 'access_arguments' => 'a:6:{i:0;s:7:"comment";i:1;i:4;i:2;s:7:"default";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:7:"comment";i:2;i:4;i:3;s:7:"default";}', - 'delivery_callback' => '', - 'fit' => '247', - 'number_parts' => '8', - 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%/comment/display', - 'tab_root' => 'admin/structure/types/manage/%', - 'title' => 'Default', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'management', + 'mlid' => '487', + 'plid' => '484', + 'link_path' => 'admin/structure/paragraphs/%/edit', + 'router_path' => 'admin/structure/paragraphs/%/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' => '20', + 'p3' => '481', + 'p4' => '484', + 'p5' => '487', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/comment/display/full', - 'load_functions' => 'a:1:{i:4;s:22:"comment_node_type_load";}', - 'to_arg_functions' => '', - 'access_callback' => '_field_ui_view_mode_menu_access', - 'access_arguments' => 'a:6:{i:0;s:7:"comment";i:1;i:4;i:2;s:4:"full";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:7:"comment";i:2;i:4;i:3;s:4:"full";}', - 'delivery_callback' => '', - 'fit' => '247', - 'number_parts' => '8', - 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%/comment/display', - 'tab_root' => 'admin/structure/types/manage/%', - 'title' => 'Full comment', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '488', + 'plid' => '175', + 'link_path' => 'admin/help/replicate', + 'router_path' => 'admin/help/replicate', + 'link_title' => 'replicate', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '488', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/comment/fields', - 'load_functions' => 'a:1:{i:4;s:22:"comment_node_type_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:7:"comment";i:2;i:4;}', - 'delivery_callback' => '', - 'fit' => '123', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%', - 'tab_root' => 'admin/structure/types/manage/%', - 'title' => 'Comment fields', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '3', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'management', + 'mlid' => '489', + 'plid' => '175', + 'link_path' => 'admin/help/replicate_paragraphs', + 'router_path' => 'admin/help/replicate_paragraphs', + 'link_title' => 'replicate_paragraphs', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '3', + 'customized' => '0', + 'p1' => '1', + 'p2' => '175', + 'p3' => '489', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/comment/fields/%', - 'load_functions' => 'a:2:{i:4;a:1:{s:22:"comment_node_type_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:7;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:7;}', - 'delivery_callback' => '', - 'fit' => '246', - 'number_parts' => '8', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/types/manage/%/comment/fields/%', - 'title' => '', - 'title_callback' => 'field_ui_menu_title', - 'title_arguments' => 'a:1:{i:0;i:7;}', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '490', + 'plid' => '6', + 'link_path' => 'node/add/paragraphs-test', + 'router_path' => 'node/add/paragraphs-test', + 'link_title' => 'Paragraphs Test', + 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:69:"A Content Type for Testing Paragraphs and Field Collection Migrations";}}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '2', + 'customized' => '0', + 'p1' => '6', + 'p2' => '490', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/comment/fields/%/delete', - 'load_functions' => 'a:2:{i:4;a:1:{s:22:"comment_node_type_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:7;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:26:"field_ui_field_delete_form";i:1;i:7;}', - 'delivery_callback' => '', - 'fit' => '493', - 'number_parts' => '9', - 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%/comment/fields/%', - 'tab_root' => 'admin/structure/types/manage/%/comment/fields/%', - 'title' => 'Delete', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '10', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'navigation', + 'mlid' => '491', + 'plid' => '0', + 'link_path' => 'field-collection/field-field-collection-test/%', + 'router_path' => 'field-collection/field-field-collection-test/%', + 'link_title' => '', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '1', + 'expanded' => '0', + 'weight' => '0', + 'depth' => '1', + 'customized' => '0', + 'p1' => '491', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/comment/fields/%/edit', - 'load_functions' => 'a:2:{i:4;a:1:{s:22:"comment_node_type_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:7;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:7;}', - 'delivery_callback' => '', - 'fit' => '493', - 'number_parts' => '9', - 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%/comment/fields/%', - 'tab_root' => 'admin/structure/types/manage/%/comment/fields/%', - 'title' => 'Edit', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '492', + 'plid' => '491', + 'link_path' => 'field-collection/field-field-collection-test/%/delete', + 'router_path' => 'field-collection/field-field-collection-test/%/delete', + 'link_title' => 'Delete', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '2', + 'customized' => '0', + 'p1' => '491', + 'p2' => '492', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/comment/fields/%/field-settings', - 'load_functions' => 'a:2:{i:4;a:1:{s:22:"comment_node_type_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:7;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:28:"field_ui_field_settings_form";i:1;i:7;}', - 'delivery_callback' => '', - 'fit' => '493', - 'number_parts' => '9', - 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%/comment/fields/%', - 'tab_root' => 'admin/structure/types/manage/%/comment/fields/%', - 'title' => 'Field settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '493', + 'plid' => '491', + 'link_path' => 'field-collection/field-field-collection-test/%/edit', + 'router_path' => 'field-collection/field-field-collection-test/%/edit', + 'link_title' => 'Edit', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '2', + 'customized' => '0', + 'p1' => '491', + 'p2' => '493', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/comment/fields/%/translate', - 'load_functions' => 'a:2:{i:4;a:1:{s:22:"comment_node_type_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:7;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}', - 'page_callback' => 'i18n_field_page_translate', - 'page_arguments' => 'a:1:{i:0;i:7;}', - 'delivery_callback' => '', - 'fit' => '493', - 'number_parts' => '9', - 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%/comment/fields/%', - 'tab_root' => 'admin/structure/types/manage/%/comment/fields/%', - 'title' => 'Translate', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/i18n/i18n_field/i18n_field.pages.inc', + 'menu_name' => 'navigation', + 'mlid' => '494', + 'plid' => '491', + 'link_path' => 'field-collection/field-field-collection-test/%/view', + 'router_path' => 'field-collection/field-field-collection-test/%/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' => '491', + 'p2' => '494', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/comment/fields/%/translate/%i18n_language', - 'load_functions' => 'a:2:{i:4;a:1:{s:22:"comment_node_type_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:7;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}', - 'page_callback' => 'i18n_field_page_translate', - 'page_arguments' => 'a:2:{i:0;i:7;i:1;i:9;}', - 'delivery_callback' => '', - 'fit' => '493', - 'number_parts' => '9', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/types/manage/%/comment/fields/%/translate/%i18n_language', - 'title' => 'Instance', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/i18n/i18n_field/i18n_field.pages.inc', + 'menu_name' => 'management', + 'mlid' => '495', + 'plid' => '480', + 'link_path' => 'admin/structure/field-collections/%', + 'router_path' => 'admin/structure/field-collections/%', + 'link_title' => 'Manage fields', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', + 'weight' => '1', + 'depth' => '4', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '480', + 'p4' => '495', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/comment/fields/%/widget-type', - 'load_functions' => 'a:2:{i:4;a:1:{s:22:"comment_node_type_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:7;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:25:"field_ui_widget_type_form";i:1;i:7;}', - 'delivery_callback' => '', - 'fit' => '493', - 'number_parts' => '9', - 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%/comment/fields/%', - 'tab_root' => 'admin/structure/types/manage/%/comment/fields/%', - 'title' => 'Widget type', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '496', + 'plid' => '0', + 'link_path' => 'field-collection/field-field-collection-test/add/%/%', + 'router_path' => 'field-collection/field-field-collection-test/add/%/%', + 'link_title' => '', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '1', + 'customized' => '0', + 'p1' => '496', + 'p2' => '0', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/delete', - 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:24:"node_type_delete_confirm";i:1;i:4;}', - 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/types/manage/%/delete', - 'title' => 'Delete', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'navigation', + 'mlid' => '497', + 'plid' => '491', + 'link_path' => 'field-collection/field-field-collection-test/%/revisions/%', + 'router_path' => 'field-collection/field-field-collection-test/%/revisions/%', + 'link_title' => '', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/node/content_types.inc', + 'depth' => '2', + 'customized' => '0', + 'p1' => '491', + 'p2' => '497', + 'p3' => '0', + 'p4' => '0', + 'p5' => '0', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/display', - 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"node";i:2;i:4;i:3;s:7:"default";}', - 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', - 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%', - 'tab_root' => 'admin/structure/types/manage/%', - 'title' => 'Manage display', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '498', + 'plid' => '495', + 'link_path' => 'admin/structure/field-collections/%/display', + 'router_path' => 'admin/structure/field-collections/%/display', + 'link_title' => 'Manage display', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '2', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '480', + 'p4' => '495', + 'p5' => '498', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/display/default', - 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', - 'to_arg_functions' => '', - 'access_callback' => '_field_ui_view_mode_menu_access', - 'access_arguments' => 'a:6:{i:0;s:4:"node";i:1;i:4;i:2;s:7:"default";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"node";i:2;i:4;i:3;s:7:"default";}', - 'delivery_callback' => '', - 'fit' => '123', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%/display', - 'tab_root' => 'admin/structure/types/manage/%', - 'title' => 'Default', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '499', + 'plid' => '495', + 'link_path' => 'admin/structure/field-collections/%/fields', + 'router_path' => 'admin/structure/field-collections/%/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' => '20', + 'p3' => '480', + 'p4' => '495', + 'p5' => '499', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', +)) +->values(array( + 'menu_name' => 'management', + 'mlid' => '500', + 'plid' => '498', + 'link_path' => 'admin/structure/field-collections/%/display/default', + 'router_path' => 'admin/structure/field-collections/%/display/default', + 'link_title' => 'Default', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '-10', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '480', + 'p4' => '495', + 'p5' => '498', + 'p6' => '500', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/display/full', - 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', - 'to_arg_functions' => '', - 'access_callback' => '_field_ui_view_mode_menu_access', - 'access_arguments' => 'a:6:{i:0;s:4:"node";i:1;i:4;i:2;s:4:"full";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"node";i:2;i:4;i:3;s:4:"full";}', - 'delivery_callback' => '', - 'fit' => '123', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%/display', - 'tab_root' => 'admin/structure/types/manage/%', - 'title' => 'Full content', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '501', + 'plid' => '498', + 'link_path' => 'admin/structure/field-collections/%/display/full', + 'router_path' => 'admin/structure/field-collections/%/display/full', + 'link_title' => 'Full content', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '480', + 'p4' => '495', + 'p5' => '498', + 'p6' => '501', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/display/print', - 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', - 'to_arg_functions' => '', - 'access_callback' => '_field_ui_view_mode_menu_access', - 'access_arguments' => 'a:6:{i:0;s:4:"node";i:1;i:4;i:2;s:5:"print";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"node";i:2;i:4;i:3;s:5:"print";}', - 'delivery_callback' => '', - 'fit' => '123', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%/display', - 'tab_root' => 'admin/structure/types/manage/%', - 'title' => 'Print', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '5', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'management', + 'mlid' => '502', + 'plid' => '499', + 'link_path' => 'admin/structure/field-collections/%/fields/%', + 'router_path' => 'admin/structure/field-collections/%/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' => '20', + 'p3' => '480', + 'p4' => '495', + 'p5' => '499', + 'p6' => '502', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/display/rss', - 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', - 'to_arg_functions' => '', - 'access_callback' => '_field_ui_view_mode_menu_access', - 'access_arguments' => 'a:6:{i:0;s:4:"node";i:1;i:4;i:2;s:3:"rss";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"node";i:2;i:4;i:3;s:3:"rss";}', - 'delivery_callback' => '', - 'fit' => '123', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%/display', - 'tab_root' => 'admin/structure/types/manage/%', - 'title' => 'RSS', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '2', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'management', + 'mlid' => '503', + 'plid' => '502', + 'link_path' => 'admin/structure/field-collections/%/fields/%/delete', + 'router_path' => 'admin/structure/field-collections/%/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' => '20', + 'p3' => '480', + 'p4' => '495', + 'p5' => '499', + 'p6' => '502', + 'p7' => '503', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/display/search_index', - 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', - 'to_arg_functions' => '', - 'access_callback' => '_field_ui_view_mode_menu_access', - 'access_arguments' => 'a:6:{i:0;s:4:"node";i:1;i:4;i:2;s:12:"search_index";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"node";i:2;i:4;i:3;s:12:"search_index";}', - 'delivery_callback' => '', - 'fit' => '123', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%/display', - 'tab_root' => 'admin/structure/types/manage/%', - 'title' => 'Search index', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '3', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'management', + 'mlid' => '504', + 'plid' => '502', + 'link_path' => 'admin/structure/field-collections/%/fields/%/edit', + 'router_path' => 'admin/structure/field-collections/%/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' => '20', + 'p3' => '480', + 'p4' => '495', + 'p5' => '499', + 'p6' => '502', + 'p7' => '504', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/display/search_result', - 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', - 'to_arg_functions' => '', - 'access_callback' => '_field_ui_view_mode_menu_access', - 'access_arguments' => 'a:6:{i:0;s:4:"node";i:1;i:4;i:2;s:13:"search_result";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"node";i:2;i:4;i:3;s:13:"search_result";}', - 'delivery_callback' => '', - 'fit' => '123', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%/display', - 'tab_root' => 'admin/structure/types/manage/%', - 'title' => 'Search result highlighting input', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '4', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'menu_name' => 'management', + 'mlid' => '505', + 'plid' => '502', + 'link_path' => 'admin/structure/field-collections/%/fields/%/field-settings', + 'router_path' => 'admin/structure/field-collections/%/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' => '20', + 'p3' => '480', + 'p4' => '495', + 'p5' => '499', + 'p6' => '502', + 'p7' => '505', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/display/teaser', - 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', - 'to_arg_functions' => '', - 'access_callback' => '_field_ui_view_mode_menu_access', - 'access_arguments' => 'a:6:{i:0;s:4:"node";i:1;i:4;i:2;s:6:"teaser";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"node";i:2;i:4;i:3;s:6:"teaser";}', - 'delivery_callback' => '', - 'fit' => '123', - 'number_parts' => '7', - 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%/display', - 'tab_root' => 'admin/structure/types/manage/%', - 'title' => 'Teaser', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '506', + 'plid' => '502', + 'link_path' => 'admin/structure/field-collections/%/fields/%/widget-type', + 'router_path' => 'admin/structure/field-collections/%/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' => '20', + 'p3' => '480', + 'p4' => '495', + 'p5' => '499', + 'p6' => '502', + 'p7' => '506', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', +)) +->values(array( + 'menu_name' => 'management', + 'mlid' => '507', + 'plid' => '484', + 'link_path' => 'admin/structure/paragraphs/%/display', + 'router_path' => 'admin/structure/paragraphs/%/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' => '20', + 'p3' => '481', + 'p4' => '484', + 'p5' => '507', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', +)) +->values(array( + 'menu_name' => 'management', + 'mlid' => '508', + 'plid' => '484', + 'link_path' => 'admin/structure/paragraphs/%/fields', + 'router_path' => 'admin/structure/paragraphs/%/fields', + 'link_title' => 'Manage fields', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '1', + 'expanded' => '0', 'weight' => '1', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '5', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '481', + 'p4' => '484', + 'p5' => '508', + 'p6' => '0', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/edit', - 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;i:4;}', - 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', - 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%', - 'tab_root' => 'admin/structure/types/manage/%', - 'title' => 'Edit', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '509', + 'plid' => '507', + 'link_path' => 'admin/structure/paragraphs/%/display/default', + 'router_path' => 'admin/structure/paragraphs/%/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' => '20', + 'p3' => '481', + 'p4' => '484', + 'p5' => '507', + 'p6' => '509', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', +)) +->values(array( + 'menu_name' => 'management', + 'mlid' => '510', + 'plid' => '507', + 'link_path' => 'admin/structure/paragraphs/%/display/full', + 'router_path' => 'admin/structure/paragraphs/%/display/full', + 'link_title' => 'Full content', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/node/content_types.inc', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '481', + 'p4' => '484', + 'p5' => '507', + 'p6' => '510', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/fields', - 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:4:"node";i:2;i:4;}', - 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', - 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%', - 'tab_root' => 'admin/structure/types/manage/%', - 'title' => 'Manage fields', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '511', + 'plid' => '507', + 'link_path' => 'admin/structure/paragraphs/%/display/paragraphs_editor_preview', + 'router_path' => 'admin/structure/paragraphs/%/display/paragraphs_editor_preview', + 'link_title' => 'Paragraphs Editor Preview', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '1', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '481', + 'p4' => '484', + 'p5' => '507', + 'p6' => '511', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/fields/%', - 'load_functions' => 'a:2:{i:4;a:1:{s:14:"node_type_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:6;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:6;}', - 'delivery_callback' => '', - 'fit' => '122', - 'number_parts' => '7', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/types/manage/%/fields/%', - 'title' => '', - 'title_callback' => 'field_ui_menu_title', - 'title_arguments' => 'a:1:{i:0;i:6;}', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '512', + 'plid' => '508', + 'link_path' => 'admin/structure/paragraphs/%/fields/%', + 'router_path' => 'admin/structure/paragraphs/%/fields/%', + 'link_title' => '', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '0', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '6', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '481', + 'p4' => '484', + 'p5' => '508', + 'p6' => '512', + 'p7' => '0', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/fields/%/delete', - 'load_functions' => 'a:2:{i:4;a:1:{s:14:"node_type_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:6;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:26:"field_ui_field_delete_form";i:1;i:6;}', - 'delivery_callback' => '', - 'fit' => '245', - 'number_parts' => '8', - 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%/fields/%', - 'tab_root' => 'admin/structure/types/manage/%/fields/%', - 'title' => 'Delete', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', + 'menu_name' => 'management', + 'mlid' => '513', + 'plid' => '512', + 'link_path' => 'admin/structure/paragraphs/%/fields/%/delete', + 'router_path' => 'admin/structure/paragraphs/%/fields/%/delete', + 'link_title' => 'Delete', + 'options' => 'a:0:{}', + 'module' => 'system', + 'hidden' => '-1', + 'external' => '0', + 'has_children' => '0', + 'expanded' => '0', 'weight' => '10', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'depth' => '7', + 'customized' => '0', + 'p1' => '1', + 'p2' => '20', + 'p3' => '481', + 'p4' => '484', + 'p5' => '508', + 'p6' => '512', + 'p7' => '513', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/fields/%/edit', - 'load_functions' => 'a:2:{i:4;a:1:{s:14:"node_type_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:6;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}', + 'menu_name' => 'management', + 'mlid' => '514', + 'plid' => '512', + 'link_path' => 'admin/structure/paragraphs/%/fields/%/edit', + 'router_path' => 'admin/structure/paragraphs/%/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' => '20', + 'p3' => '481', + 'p4' => '484', + 'p5' => '508', + 'p6' => '512', + 'p7' => '514', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', +)) +->values(array( + 'menu_name' => 'management', + 'mlid' => '515', + 'plid' => '512', + 'link_path' => 'admin/structure/paragraphs/%/fields/%/field-settings', + 'router_path' => 'admin/structure/paragraphs/%/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' => '20', + 'p3' => '481', + 'p4' => '484', + 'p5' => '508', + 'p6' => '512', + 'p7' => '515', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', +)) +->values(array( + 'menu_name' => 'management', + 'mlid' => '516', + 'plid' => '512', + 'link_path' => 'admin/structure/paragraphs/%/fields/%/widget-type', + 'router_path' => 'admin/structure/paragraphs/%/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' => '20', + 'p3' => '481', + 'p4' => '484', + 'p5' => '508', + 'p6' => '512', + 'p7' => '516', + 'p8' => '0', + 'p9' => '0', + 'updated' => '0', +)) +->execute(); + +$connection->schema()->createTable('menu_router', array( + 'fields' => array( + 'path' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + 'default' => '', + ), + 'load_functions' => array( + 'type' => 'blob', + 'not null' => TRUE, + 'size' => 'normal', + ), + 'to_arg_functions' => array( + 'type' => 'blob', + 'not null' => TRUE, + 'size' => 'normal', + ), + 'access_callback' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + 'default' => '', + ), + 'access_arguments' => array( + 'type' => 'blob', + 'not null' => FALSE, + 'size' => 'normal', + ), + 'page_callback' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + 'default' => '', + ), + 'page_arguments' => array( + 'type' => 'blob', + 'not null' => FALSE, + 'size' => 'normal', + ), + 'delivery_callback' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + 'default' => '', + ), + 'fit' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'number_parts' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'context' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'tab_parent' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + 'default' => '', + ), + 'tab_root' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + 'default' => '', + ), + 'title' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + 'default' => '', + ), + 'title_callback' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + 'default' => '', + ), + 'title_arguments' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + 'default' => '', + ), + 'theme_callback' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + 'default' => '', + ), + 'theme_arguments' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + 'default' => '', + ), + 'type' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'description' => array( + 'type' => 'text', + 'not null' => TRUE, + 'size' => 'normal', + ), + 'position' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + 'default' => '', + ), + 'weight' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'include_file' => array( + 'type' => 'text', + 'not null' => FALSE, + 'size' => 'normal', + ), + ), + 'primary key' => array( + 'path', + ), + 'mysql_character_set' => 'utf8', +)); + +$connection->insert('menu_router') +->fields(array( + 'path', + 'load_functions', + 'to_arg_functions', + 'access_callback', + 'access_arguments', + 'page_callback', + 'page_arguments', + 'delivery_callback', + 'fit', + 'number_parts', + 'context', + 'tab_parent', + 'tab_root', + 'title', + 'title_callback', + 'title_arguments', + 'theme_callback', + 'theme_arguments', + 'type', + 'description', + 'position', + 'weight', + 'include_file', +)) +->values(array( + 'path' => 'admin', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:6;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'system_admin_menu_block_page', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '245', - 'number_parts' => '8', - 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%/fields/%', - 'tab_root' => 'admin/structure/types/manage/%/fields/%', - 'title' => 'Edit', + 'fit' => '1', + 'number_parts' => '1', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin', + 'title' => 'Administration', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '140', + 'type' => '6', 'description' => '', 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'weight' => '9', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/fields/%/field-settings', - 'load_functions' => 'a:2:{i:4;a:1:{s:14:"node_type_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:6;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}', + 'path' => 'admin/appearance', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:28:"field_ui_field_settings_form";i:1;i:6;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}', + 'page_callback' => 'system_themes_page', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '245', - 'number_parts' => '8', - 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%/fields/%', - 'tab_root' => 'admin/structure/types/manage/%/fields/%', - 'title' => 'Field settings', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/appearance', + 'title' => 'Appearance', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'type' => '6', + 'description' => 'Select and configure your themes.', + 'position' => 'left', + 'weight' => '-6', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/fields/%/translate', - 'load_functions' => 'a:2:{i:4;a:1:{s:14:"node_type_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:6;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}', + 'path' => 'admin/appearance/default', + 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}', - 'page_callback' => 'i18n_field_page_translate', - 'page_arguments' => 'a:1:{i:0;i:6;}', + 'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}', + 'page_callback' => 'system_theme_default', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '245', - 'number_parts' => '8', - 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%/fields/%', - 'tab_root' => 'admin/structure/types/manage/%/fields/%', - 'title' => 'Translate', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/appearance/default', + 'title' => 'Set default theme', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', + 'type' => '0', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/i18n/i18n_field/i18n_field.pages.inc', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/fields/%/translate/%', - 'load_functions' => 'a:3:{i:4;a:1:{s:14:"node_type_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:6;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:8;a:1:{s:18:"i18n_language_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}', + 'path' => 'admin/appearance/disable', + 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}', - 'page_callback' => 'i18n_field_page_translate', - 'page_arguments' => 'a:2:{i:0;i:6;i:1;i:8;}', + 'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}', + 'page_callback' => 'system_theme_disable', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '490', - 'number_parts' => '9', + 'fit' => '7', + 'number_parts' => '3', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'admin/structure/types/manage/%/fields/%/translate/%', - 'title' => 'Instance', + 'tab_root' => 'admin/appearance/disable', + 'title' => 'Disable theme', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', @@ -53499,273 +29745,273 @@ $connection->insert('menu_router') 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/i18n/i18n_field/i18n_field.pages.inc', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/fields/%/widget-type', - 'load_functions' => 'a:2:{i:4;a:1:{s:14:"node_type_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:6;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}', + 'path' => 'admin/appearance/enable', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'field_ui_admin_access', - 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:25:"field_ui_widget_type_form";i:1;i:6;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}', + 'page_callback' => 'system_theme_enable', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '245', - 'number_parts' => '8', - 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%/fields/%', - 'tab_root' => 'admin/structure/types/manage/%/fields/%', - 'title' => 'Widget type', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/appearance/enable', + 'title' => 'Enable theme', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', + 'type' => '0', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/field_ui/field_ui.admin.inc', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/translate', - 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', + 'path' => 'admin/appearance/install', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'i18n_object_translate_access', - 'access_arguments' => 'a:2:{i:0;s:9:"node_type";i:1;i:4;}', - 'page_callback' => 'i18n_page_translate_localize', - 'page_arguments' => 'a:2:{i:0;s:9:"node_type";i:1;i:4;}', + 'access_callback' => 'update_manager_access', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:27:"update_manager_install_form";i:1;s:5:"theme";}', 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', + 'fit' => '7', + 'number_parts' => '3', 'context' => '1', - 'tab_parent' => 'admin/structure/types/manage/%', - 'tab_root' => 'admin/structure/types/manage/%', - 'title' => 'Translate', + 'tab_parent' => 'admin/appearance', + 'tab_root' => 'admin/appearance', + 'title' => 'Install new theme', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', + 'type' => '388', 'description' => '', 'position' => '', - 'weight' => '10', - 'include_file' => 'sites/all/modules/i18n/i18n.pages.inc', + 'weight' => '25', + 'include_file' => 'modules/update/update.manager.inc', )) ->values(array( - 'path' => 'admin/structure/types/manage/%/translate/%', - 'load_functions' => 'a:2:{i:4;s:14:"node_type_load";i:6;s:18:"i18n_language_load";}', + 'path' => 'admin/appearance/list', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'i18n_object_translate_access', - 'access_arguments' => 'a:2:{i:0;s:9:"node_type";i:1;i:4;}', - 'page_callback' => 'i18n_page_translate_localize', - 'page_arguments' => 'a:3:{i:0;s:9:"node_type";i:1;i:4;i:2;i:6;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}', + 'page_callback' => 'system_themes_page', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '122', - 'number_parts' => '7', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/types/manage/%/translate/%', - 'title' => 'Translate', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'admin/appearance', + 'tab_root' => 'admin/appearance', + 'title' => 'List', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', + 'type' => '140', + 'description' => 'Select and configure your theme', 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/i18n/i18n.pages.inc', + 'weight' => '-1', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'admin/structure/views', + 'path' => 'admin/appearance/settings', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'ctools_export_ui_task_access', - 'access_arguments' => 'a:2:{i:0;s:8:"views_ui";i:1;s:4:"list";}', - 'page_callback' => 'ctools_export_ui_switcher_page', - 'page_arguments' => 'a:2:{i:0;s:8:"views_ui";i:1;s:4:"list";}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}', 'delivery_callback' => '', 'fit' => '7', 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/views', - 'title' => 'Views', + 'context' => '1', + 'tab_parent' => 'admin/appearance', + 'tab_root' => 'admin/appearance', + 'title' => 'Settings', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Manage customized lists of content.', + 'type' => '132', + 'description' => 'Configure default and theme specific settings.', 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/ctools/includes/export-ui.inc', + 'weight' => '20', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'admin/structure/views/add', + 'path' => 'admin/appearance/settings/bartik', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer views";}', - 'page_callback' => 'views_ui_add_page', - 'page_arguments' => 'a:0:{}', + 'access_callback' => '_system_themes_access', + 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:25:"themes/bartik/bartik.info";s:4:"name";s:6:"bartik";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{s:4:"name";s:6:"Bartik";s:11:"description";s:48:"A flexible, recolorable theme with many regions.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:3:{s:14:"css/layout.css";s:28:"themes/bartik/css/layout.css";s:13:"css/style.css";s:27:"themes/bartik/css/style.css";s:14:"css/colors.css";s:28:"themes/bartik/css/colors.css";}s:5:"print";a:1:{s:13:"css/print.css";s:27:"themes/bartik/css/print.css";}}s:7:"regions";a:17:{s:6:"header";s:6:"Header";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:11:"highlighted";s:11:"Highlighted";s:8:"featured";s:8:"Featured";s:7:"content";s:7:"Content";s:13:"sidebar_first";s:13:"Sidebar first";s:14:"sidebar_second";s:14:"Sidebar second";s:14:"triptych_first";s:14:"Triptych first";s:15:"triptych_middle";s:15:"Triptych middle";s:13:"triptych_last";s:13:"Triptych last";s:18:"footer_firstcolumn";s:19:"Footer first column";s:19:"footer_secondcolumn";s:20:"Footer second column";s:18:"footer_thirdcolumn";s:19:"Footer third column";s:19:"footer_fourthcolumn";s:20:"Footer fourth column";s:6:"footer";s:6:"Footer";}s:8:"settings";a:1:{s:20:"shortcut_module_link";s:1:"0";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:6:"engine";s:11:"phptemplate";s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:28:"themes/bartik/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1498069849;s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:3:{s:14:"css/layout.css";s:28:"themes/bartik/css/layout.css";s:13:"css/style.css";s:27:"themes/bartik/css/style.css";s:14:"css/colors.css";s:28:"themes/bartik/css/colors.css";}s:5:"print";a:1:{s:13:"css/print.css";s:27:"themes/bartik/css/print.css";}}s:6:"engine";s:11:"phptemplate";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:6:"bartik";}', 'delivery_callback' => '', 'fit' => '15', 'number_parts' => '4', 'context' => '1', - 'tab_parent' => 'admin/structure/views', - 'tab_root' => 'admin/structure/views', - 'title' => 'Add new view', + 'tab_parent' => 'admin/appearance/settings', + 'tab_root' => 'admin/appearance', + 'title' => 'Bartik', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '388', + 'type' => '132', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/views/includes/admin.inc', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'admin/structure/views/add-template', + 'path' => 'admin/appearance/settings/garland', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer views";}', - 'page_callback' => 'views_ui_add_template_page', - 'page_arguments' => 'a:0:{}', + 'access_callback' => '_system_themes_access', + 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{s:4:"name";s:7:"Garland";s:11:"description";s:111:"A multi-column theme which can be configured to modify colors and switch between fixed and fluid width layouts.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:8:"settings";a:1:{s:13:"garland_width";s:5:"fluid";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:6:"engine";s:11:"phptemplate";s:7:"regions";a:9:{s:13:"sidebar_first";s:12:"Left sidebar";s:14:"sidebar_second";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";s:11:"highlighted";s:11:"Highlighted";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";}s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1498069849;s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:7:"garland";}', 'delivery_callback' => '', 'fit' => '15', 'number_parts' => '4', 'context' => '1', - 'tab_parent' => 'admin/structure/views', - 'tab_root' => 'admin/structure/views', - 'title' => 'Add view from template', + 'tab_parent' => 'admin/appearance/settings', + 'tab_root' => 'admin/appearance', + 'title' => 'Garland', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '388', + 'type' => '132', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/views/includes/admin.inc', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'admin/structure/views/ajax/%/%', - 'load_functions' => 'a:2:{i:4;N;i:5;s:19:"views_ui_cache_load";}', + 'path' => 'admin/appearance/settings/global', + 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer views";}', - 'page_callback' => 'views_ui_ajax_form', - 'page_arguments' => 'a:3:{i:0;b:1;i:1;i:4;i:2;i:5;}', - 'delivery_callback' => 'ajax_deliver', - 'fit' => '60', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/views/ajax/%/%', - 'title' => '', + 'access_arguments' => 'a:1:{i:0;s:17:"administer themes";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/appearance/settings', + 'tab_root' => 'admin/appearance', + 'title' => 'Global settings', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', + 'type' => '140', 'description' => '', 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/views/includes/admin.inc', + 'weight' => '-1', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'admin/structure/views/ajax/preview/%/%', - 'load_functions' => 'a:2:{i:5;s:19:"views_ui_cache_load";i:6;N;}', + 'path' => 'admin/appearance/settings/seven', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer views";}', - 'page_callback' => 'views_ui_preview', - 'page_arguments' => 'a:2:{i:0;i:5;i:1;i:6;}', - 'delivery_callback' => 'ajax_deliver', - 'fit' => '124', - 'number_parts' => '7', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/views/ajax/preview/%/%', - 'title' => '', + 'access_callback' => '_system_themes_access', + 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:23:"themes/seven/seven.info";s:4:"name";s:5:"seven";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{s:4:"name";s:5:"Seven";s:11:"description";s:65:"A simple one-column, tableless, fluid width administration theme.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:1:{s:6:"screen";a:2:{s:9:"reset.css";s:22:"themes/seven/reset.css";s:9:"style.css";s:22:"themes/seven/style.css";}}s:8:"settings";a:1:{s:20:"shortcut_module_link";s:1:"1";}s:7:"regions";a:5:{s:7:"content";s:7:"Content";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:13:"sidebar_first";s:13:"First sidebar";}s:14:"regions_hidden";a:3:{i:0;s:13:"sidebar_first";i:1;s:8:"page_top";i:2;s:11:"page_bottom";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:6:"engine";s:11:"phptemplate";s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:27:"themes/seven/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1498069849;s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:1:{s:6:"screen";a:2:{s:9:"reset.css";s:22:"themes/seven/reset.css";s:9:"style.css";s:22:"themes/seven/style.css";}}s:6:"engine";s:11:"phptemplate";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:5:"seven";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/appearance/settings', + 'tab_root' => 'admin/appearance', + 'title' => 'Seven', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '6', + 'type' => '132', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/views/includes/admin.inc', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'admin/structure/views/import', + 'path' => 'admin/appearance/settings/stark', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'views_import_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer views";}', + 'access_callback' => '_system_themes_access', + 'access_arguments' => "a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:23:\"themes/stark/stark.info\";s:4:\"name\";s:5:\"stark\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:17:{s:4:\"name\";s:5:\"Stark\";s:11:\"description\";s:208:\"This theme demonstrates Drupal's default HTML markup and CSS styles. To learn how to build your own theme and override Drupal's default code, see the Theming Guide.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.56\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1498069849\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:9:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:27:\"themes/stark/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1498069849;s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:6:\"prefix\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:6:\"engine\";s:11:\"phptemplate\";}}", 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:20:"views_ui_import_page";}', + 'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:5:"stark";}', 'delivery_callback' => '', 'fit' => '15', 'number_parts' => '4', 'context' => '1', - 'tab_parent' => 'admin/structure/views', - 'tab_root' => 'admin/structure/views', - 'title' => 'Import', + 'tab_parent' => 'admin/appearance/settings', + 'tab_root' => 'admin/appearance', + 'title' => 'Stark', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '388', + 'type' => '132', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/views/includes/admin.inc', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'admin/structure/views/list', + 'path' => 'admin/appearance/update', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'ctools_export_ui_task_access', - 'access_arguments' => 'a:2:{i:0;s:8:"views_ui";i:1;s:4:"list";}', - 'page_callback' => 'ctools_export_ui_switcher_page', - 'page_arguments' => 'a:2:{i:0;s:8:"views_ui";i:1;s:4:"list";}', + 'access_callback' => 'update_manager_access', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:26:"update_manager_update_form";i:1;s:5:"theme";}', 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', + 'fit' => '7', + 'number_parts' => '3', 'context' => '1', - 'tab_parent' => 'admin/structure/views', - 'tab_root' => 'admin/structure/views', - 'title' => 'List', + 'tab_parent' => 'admin/appearance', + 'tab_root' => 'admin/appearance', + 'title' => 'Update', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '140', + 'type' => '132', 'description' => '', 'position' => '', - 'weight' => '-10', - 'include_file' => 'sites/all/modules/ctools/includes/export-ui.inc', + 'weight' => '10', + 'include_file' => 'modules/update/update.manager.inc', )) ->values(array( - 'path' => 'admin/structure/views/nojs/%/%', - 'load_functions' => 'a:2:{i:4;N;i:5;s:19:"views_ui_cache_load";}', + 'path' => 'admin/compact', + 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer views";}', - 'page_callback' => 'views_ui_ajax_form', - 'page_arguments' => 'a:3:{i:0;b:0;i:1;i:4;i:2;i:5;}', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'system_admin_compact_page', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '60', - 'number_parts' => '6', + 'fit' => '3', + 'number_parts' => '2', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'admin/structure/views/nojs/%/%', - 'title' => '', + 'tab_root' => 'admin/compact', + 'title' => 'Compact mode', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', @@ -53774,149 +30020,124 @@ $connection->insert('menu_router') 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/views/includes/admin.inc', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'admin/structure/views/nojs/preview/%/%', - 'load_functions' => 'a:2:{i:5;s:19:"views_ui_cache_load";i:6;N;}', + 'path' => 'admin/config', + 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer views";}', - 'page_callback' => 'views_ui_preview', - 'page_arguments' => 'a:2:{i:0;i:5;i:1;i:6;}', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'system_admin_config_page', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '124', - 'number_parts' => '7', + 'fit' => '3', + 'number_parts' => '2', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'admin/structure/views/nojs/preview/%/%', - 'title' => '', + 'tab_root' => 'admin/config', + 'title' => 'Configuration', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', 'type' => '6', - 'description' => '', + 'description' => 'Administer settings.', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/views/includes/admin.inc', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'admin/structure/views/settings', + 'path' => 'admin/config/content', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer views";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:29:"views_ui_admin_settings_basic";}', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'system_admin_menu_block_page', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'admin/structure/views', - 'tab_root' => 'admin/structure/views', - 'title' => 'Settings', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/config/content', + 'title' => 'Content authoring', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/views/includes/admin.inc', + 'type' => '6', + 'description' => 'Settings related to formatting and authoring content.', + 'position' => 'left', + 'weight' => '-15', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'admin/structure/views/settings/advanced', + 'path' => 'admin/config/content/email', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer views";}', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:32:"views_ui_admin_settings_advanced";}', + 'page_arguments' => 'a:1:{i:0;s:20:"email_admin_settings";}', 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/structure/views/settings', - 'tab_root' => 'admin/structure/views', - 'title' => 'Advanced', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/config/content/email', + 'title' => 'Email Contact Form Settings', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', + 'type' => '6', + 'description' => 'Administer flood control settings for email contact forms', 'position' => '', - 'weight' => '1', - 'include_file' => 'sites/all/modules/views/includes/admin.inc', + 'weight' => '0', + 'include_file' => '', )) ->values(array( - 'path' => 'admin/structure/views/settings/basic', + 'path' => 'admin/config/content/formats', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer views";}', + 'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}', 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:29:"views_ui_admin_settings_basic";}', - 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', - 'context' => '1', - 'tab_parent' => 'admin/structure/views/settings', - 'tab_root' => 'admin/structure/views', - 'title' => 'Basic', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/views/includes/admin.inc', -)) -->values(array( - 'path' => 'admin/structure/views/template/%/add', - 'load_functions' => 'a:1:{i:4;N;}', - 'to_arg_functions' => '', - 'access_callback' => 'ctools_export_ui_task_access', - 'access_arguments' => 'a:3:{i:0;s:8:"views_ui";i:1;s:12:"add_template";i:2;i:4;}', - 'page_callback' => 'ctools_export_ui_switcher_page', - 'page_arguments' => 'a:3:{i:0;s:8:"views_ui";i:1;s:12:"add_template";i:2;i:4;}', + 'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}', 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', + 'fit' => '15', + 'number_parts' => '4', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'admin/structure/views/template/%/add', - 'title' => 'Add from template', + 'tab_root' => 'admin/config/content/formats', + 'title' => 'Text formats', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', + 'type' => '6', + 'description' => 'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/ctools/includes/export-ui.inc', + 'include_file' => 'modules/filter/filter.admin.inc', )) ->values(array( - 'path' => 'admin/structure/views/view/%', - 'load_functions' => 'a:1:{i:4;s:19:"views_ui_cache_load";}', + 'path' => 'admin/config/content/formats/%', + 'load_functions' => 'a:1:{i:4;s:18:"filter_format_load";}', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer views";}', - 'page_callback' => 'views_ui_edit_page', + 'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}', + 'page_callback' => 'filter_admin_format_page', 'page_arguments' => 'a:1:{i:0;i:4;}', 'delivery_callback' => '', 'fit' => '30', 'number_parts' => '5', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'admin/structure/views/view/%', + 'tab_root' => 'admin/config/content/formats/%', 'title' => '', - 'title_callback' => 'views_ui_edit_page_title', + 'title_callback' => 'filter_admin_format_title', 'title_arguments' => 'a:1:{i:0;i:4;}', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', @@ -53924,673 +30145,673 @@ $connection->insert('menu_router') 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/views/includes/admin.inc', + 'include_file' => 'modules/filter/filter.admin.inc', )) ->values(array( - 'path' => 'admin/structure/views/view/%/break-lock', - 'load_functions' => 'a:1:{i:4;s:19:"views_ui_cache_load";}', + 'path' => 'admin/config/content/formats/%/disable', + 'load_functions' => 'a:1:{i:4;s:18:"filter_format_load";}', 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer views";}', + 'access_callback' => '_filter_disable_format_access', + 'access_arguments' => 'a:1:{i:0;i:4;}', 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:27:"views_ui_break_lock_confirm";i:1;i:4;}', + 'page_arguments' => 'a:2:{i:0;s:20:"filter_admin_disable";i:1;i:4;}', 'delivery_callback' => '', 'fit' => '61', 'number_parts' => '6', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'admin/structure/views/view/%/break-lock', - 'title' => 'Break lock', + 'tab_root' => 'admin/config/content/formats/%/disable', + 'title' => 'Disable text format', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '4', + 'type' => '6', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/views/includes/admin.inc', + 'include_file' => 'modules/filter/filter.admin.inc', )) ->values(array( - 'path' => 'admin/structure/views/view/%/clone', - 'load_functions' => 'a:1:{i:4;a:1:{s:21:"ctools_export_ui_load";a:1:{i:0;s:8:"views_ui";}}}', + 'path' => 'admin/config/content/formats/add', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'ctools_export_ui_task_access', - 'access_arguments' => 'a:3:{i:0;s:8:"views_ui";i:1;s:5:"clone";i:2;i:4;}', - 'page_callback' => 'ctools_export_ui_switcher_page', - 'page_arguments' => 'a:3:{i:0;s:8:"views_ui";i:1;s:5:"clone";i:2;i:4;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}', + 'page_callback' => 'filter_admin_format_page', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/views/view/%/clone', - 'title' => 'Clone', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/config/content/formats', + 'tab_root' => 'admin/config/content/formats', + 'title' => 'Add text format', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '4', + 'type' => '388', 'description' => '', 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/ctools/includes/export-ui.inc', + 'weight' => '1', + 'include_file' => 'modules/filter/filter.admin.inc', )) ->values(array( - 'path' => 'admin/structure/views/view/%/delete', - 'load_functions' => 'a:1:{i:4;a:1:{s:21:"ctools_export_ui_load";a:1:{i:0;s:8:"views_ui";}}}', + 'path' => 'admin/config/content/formats/list', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'ctools_export_ui_task_access', - 'access_arguments' => 'a:3:{i:0;s:8:"views_ui";i:1;s:6:"delete";i:2;i:4;}', - 'page_callback' => 'ctools_export_ui_switcher_page', - 'page_arguments' => 'a:3:{i:0;s:8:"views_ui";i:1;s:6:"delete";i:2;i:4;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}', 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/views/view/%/delete', - 'title' => 'Delete', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/config/content/formats', + 'tab_root' => 'admin/config/content/formats', + 'title' => 'List', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '4', + 'type' => '140', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/ctools/includes/export-ui.inc', + 'include_file' => 'modules/filter/filter.admin.inc', )) ->values(array( - 'path' => 'admin/structure/views/view/%/disable', - 'load_functions' => 'a:1:{i:4;a:1:{s:21:"ctools_export_ui_load";a:1:{i:0;s:8:"views_ui";}}}', + 'path' => 'admin/config/date', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'ctools_export_ui_task_access', - 'access_arguments' => 'a:3:{i:0;s:8:"views_ui";i:1;s:7:"disable";i:2;i:4;}', - 'page_callback' => 'ctools_export_ui_switcher_page', - 'page_arguments' => 'a:3:{i:0;s:8:"views_ui";i:1;s:7:"disable";i:2;i:4;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'system_admin_menu_block_page', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', + 'fit' => '7', + 'number_parts' => '3', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'admin/structure/views/view/%/disable', - 'title' => 'Disable', + 'tab_root' => 'admin/config/date', + 'title' => 'Date API', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/ctools/includes/export-ui.inc', + 'type' => '6', + 'description' => 'Settings for modules the use the Date API.', + 'position' => 'left', + 'weight' => '-10', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'admin/structure/views/view/%/edit', - 'load_functions' => 'a:1:{i:4;s:19:"views_ui_cache_load";}', + 'path' => 'admin/config/development', + 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer views";}', - 'page_callback' => 'views_ui_edit_page', - 'page_arguments' => 'a:1:{i:0;i:4;}', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'system_admin_menu_block_page', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', - 'context' => '3', - 'tab_parent' => 'admin/structure/views/view/%', - 'tab_root' => 'admin/structure/views/view/%', - 'title' => 'Edit view', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/config/development', + 'title' => 'Development', 'title_callback' => 't', 'title_arguments' => '', - 'theme_callback' => 'ajax_base_page_theme', + 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', + 'type' => '6', + 'description' => 'Development tools.', + 'position' => 'right', 'weight' => '-10', - 'include_file' => 'sites/all/modules/views/includes/admin.inc', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'admin/structure/views/view/%/edit/%/ajax', - 'load_functions' => 'a:2:{i:4;s:19:"views_ui_cache_load";i:6;N;}', + 'path' => 'admin/config/development/logging', + 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer views";}', - 'page_callback' => 'views_ui_ajax_get_form', - 'page_arguments' => 'a:3:{i:0;s:18:"views_ui_edit_form";i:1;i:4;i:2;i:6;}', - 'delivery_callback' => 'ajax_deliver', - 'fit' => '245', - 'number_parts' => '8', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:23:"system_logging_settings";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'admin/structure/views/view/%/edit/%/ajax', - 'title' => '', + 'tab_root' => 'admin/config/development/logging', + 'title' => 'Logging and errors', 'title_callback' => 't', 'title_arguments' => '', - 'theme_callback' => 'ajax_base_page_theme', + 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', + 'type' => '6', + 'description' => "Settings for logging and alerts modules. Various modules can route Drupal's system events to different destinations, such as syslog, database, email, etc.", 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/views/includes/admin.inc', + 'weight' => '-15', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'admin/structure/views/view/%/enable', - 'load_functions' => 'a:1:{i:4;a:1:{s:21:"ctools_export_ui_load";a:1:{i:0;s:8:"views_ui";}}}', + 'path' => 'admin/config/development/maintenance', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'ctools_export_ui_task_access', - 'access_arguments' => 'a:3:{i:0;s:8:"views_ui";i:1;s:6:"enable";i:2;i:4;}', - 'page_callback' => 'ctools_export_ui_switcher_page', - 'page_arguments' => 'a:3:{i:0;s:8:"views_ui";i:1;s:6:"enable";i:2;i:4;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:28:"system_site_maintenance_mode";}', 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', + 'fit' => '15', + 'number_parts' => '4', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'admin/structure/views/view/%/enable', - 'title' => 'Enable', + 'tab_root' => 'admin/config/development/maintenance', + 'title' => 'Maintenance mode', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', + 'type' => '6', + 'description' => 'Take the site offline for maintenance or bring it back online.', 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/ctools/includes/export-ui.inc', + 'weight' => '-10', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'admin/structure/views/view/%/export', - 'load_functions' => 'a:1:{i:4;a:1:{s:21:"ctools_export_ui_load";a:1:{i:0;s:8:"views_ui";}}}', + 'path' => 'admin/config/development/performance', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'ctools_export_ui_task_access', - 'access_arguments' => 'a:3:{i:0;s:8:"views_ui";i:1;s:6:"export";i:2;i:4;}', - 'page_callback' => 'ctools_export_ui_switcher_page', - 'page_arguments' => 'a:3:{i:0;s:8:"views_ui";i:1;s:6:"export";i:2;i:4;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:27:"system_performance_settings";}', 'delivery_callback' => '', - 'fit' => '61', - 'number_parts' => '6', + 'fit' => '15', + 'number_parts' => '4', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'admin/structure/views/view/%/export', - 'title' => 'Export', + 'tab_root' => 'admin/config/development/performance', + 'title' => 'Performance', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', + 'type' => '6', + 'description' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.', 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/ctools/includes/export-ui.inc', + 'weight' => '-20', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'admin/structure/views/view/%/preview/%', - 'load_functions' => 'a:2:{i:4;s:19:"views_ui_cache_load";i:6;N;}', + 'path' => 'admin/config/development/testing', + 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer views";}', - 'page_callback' => 'views_ui_build_preview', - 'page_arguments' => 'a:2:{i:0;i:4;i:1;i:6;}', + 'access_arguments' => 'a:1:{i:0;s:21:"administer unit tests";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:20:"simpletest_test_form";}', 'delivery_callback' => '', - 'fit' => '122', - 'number_parts' => '7', - 'context' => '3', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'admin/structure/views/view/%/preview/%', - 'title' => '', + 'tab_root' => 'admin/config/development/testing', + 'title' => 'Testing', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', + 'type' => '6', + 'description' => 'Run tests against Drupal core and your active modules. These tests help assure that your site code is working as designed.', 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/views/includes/admin.inc', + 'weight' => '-5', + 'include_file' => 'modules/simpletest/simpletest.pages.inc', )) ->values(array( - 'path' => 'admin/structure/views/view/%/preview/%/ajax', - 'load_functions' => 'a:2:{i:4;s:19:"views_ui_cache_load";i:6;N;}', + 'path' => 'admin/config/development/testing/list', + 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer views";}', - 'page_callback' => 'views_ui_build_preview', - 'page_arguments' => 'a:2:{i:0;i:4;i:1;i:6;}', - 'delivery_callback' => 'ajax_deliver', - 'fit' => '245', - 'number_parts' => '8', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/structure/views/view/%/preview/%/ajax', - 'title' => '', + 'access_arguments' => 'a:1:{i:0;s:21:"administer unit tests";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:20:"simpletest_test_form";}', + 'delivery_callback' => '', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/config/development/testing', + 'tab_root' => 'admin/config/development/testing', + 'title' => 'List', 'title_callback' => 't', 'title_arguments' => '', - 'theme_callback' => 'ajax_base_page_theme', + 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', + 'type' => '140', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/views/includes/admin.inc', + 'include_file' => 'modules/simpletest/simpletest.pages.inc', )) ->values(array( - 'path' => 'admin/structure/views/view/%/revert', - 'load_functions' => 'a:1:{i:4;a:1:{s:21:"ctools_export_ui_load";a:1:{i:0;s:8:"views_ui";}}}', + 'path' => 'admin/config/development/testing/results/%', + 'load_functions' => 'a:1:{i:5;N;}', 'to_arg_functions' => '', - 'access_callback' => 'ctools_export_ui_task_access', - 'access_arguments' => 'a:3:{i:0;s:8:"views_ui";i:1;s:6:"revert";i:2;i:4;}', - 'page_callback' => 'ctools_export_ui_switcher_page', - 'page_arguments' => 'a:3:{i:0;s:8:"views_ui";i:1;s:6:"delete";i:2;i:4;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:21:"administer unit tests";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:22:"simpletest_result_form";i:1;i:5;}', 'delivery_callback' => '', - 'fit' => '61', + 'fit' => '62', 'number_parts' => '6', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'admin/structure/views/view/%/revert', - 'title' => 'Revert', + 'tab_root' => 'admin/config/development/testing/results/%', + 'title' => 'Test result', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '4', - 'description' => '', + 'type' => '6', + 'description' => 'View result of tests.', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/ctools/includes/export-ui.inc', + 'include_file' => 'modules/simpletest/simpletest.pages.inc', )) ->values(array( - 'path' => 'admin/tasks', + 'path' => 'admin/config/development/testing/settings', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'system_admin_menu_block_page', - 'page_arguments' => 'a:0:{}', + 'access_arguments' => 'a:1:{i:0;s:21:"administer unit tests";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:24:"simpletest_settings_form";}', 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', + 'fit' => '31', + 'number_parts' => '5', 'context' => '1', - 'tab_parent' => 'admin', - 'tab_root' => 'admin', - 'title' => 'Tasks', + 'tab_parent' => 'admin/config/development/testing', + 'tab_root' => 'admin/config/development/testing', + 'title' => 'Settings', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '140', + 'type' => '132', 'description' => '', 'position' => '', - 'weight' => '-20', - 'include_file' => 'modules/system/system.admin.inc', + 'weight' => '0', + 'include_file' => 'modules/simpletest/simpletest.pages.inc', )) ->values(array( - 'path' => 'admin/update/ready', + 'path' => 'admin/config/media', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'update_manager_access', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:32:"update_manager_update_ready_form";}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'system_admin_menu_block_page', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', 'fit' => '7', 'number_parts' => '3', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'admin/update/ready', - 'title' => 'Ready to update', + 'tab_root' => 'admin/config/media', + 'title' => 'Media', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/update/update.manager.inc', + 'type' => '6', + 'description' => 'Media tools.', + 'position' => 'left', + 'weight' => '-10', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'admin/views/ajax/autocomplete/tag', + 'path' => 'admin/config/media/file-system', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer views";}', - 'page_callback' => 'views_ui_autocomplete_tag', - 'page_arguments' => 'a:0:{}', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:27:"system_file_system_settings";}', 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', + 'fit' => '15', + 'number_parts' => '4', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'admin/views/ajax/autocomplete/tag', - 'title' => '', + 'tab_root' => 'admin/config/media/file-system', + 'title' => 'File system', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', + 'type' => '6', + 'description' => 'Tell Drupal where to store uploaded files and how they are accessed.', 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/views/includes/admin.inc', + 'weight' => '-10', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'admin/views/ajax/autocomplete/taxonomy', + 'path' => 'admin/config/media/image-styles', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'views_ajax_autocomplete_taxonomy', + 'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}', + 'page_callback' => 'image_style_list', 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', + 'fit' => '15', + 'number_parts' => '4', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'admin/views/ajax/autocomplete/taxonomy', - 'title' => '', + 'tab_root' => 'admin/config/media/image-styles', + 'title' => 'Image styles', 'title_callback' => 't', 'title_arguments' => '', - 'theme_callback' => 'ajax_base_page_theme', + 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', + 'type' => '6', + 'description' => 'Configure styles that can be used for resizing or adjusting images on display.', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/views/includes/ajax.inc', + 'include_file' => 'modules/image/image.admin.inc', )) ->values(array( - 'path' => 'admin/views/ajax/autocomplete/user', + 'path' => 'admin/config/media/image-styles/add', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:20:"access user profiles";}', - 'page_callback' => 'views_ajax_autocomplete_user', - 'page_arguments' => 'a:0:{}', + 'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:20:"image_style_add_form";}', 'delivery_callback' => '', 'fit' => '31', 'number_parts' => '5', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'admin/views/ajax/autocomplete/user', - 'title' => '', + 'context' => '1', + 'tab_parent' => 'admin/config/media/image-styles', + 'tab_root' => 'admin/config/media/image-styles', + 'title' => 'Add style', 'title_callback' => 't', 'title_arguments' => '', - 'theme_callback' => 'ajax_base_page_theme', + 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', + 'type' => '388', + 'description' => 'Add a new image style.', 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/views/includes/ajax.inc', + 'weight' => '2', + 'include_file' => 'modules/image/image.admin.inc', )) ->values(array( - 'path' => 'aggregator', - 'load_functions' => '', + 'path' => 'admin/config/media/image-styles/delete/%', + 'load_functions' => 'a:1:{i:5;a:1:{s:16:"image_style_load";a:2:{i:0;N;i:1;s:1:"1";}}}', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}', - 'page_callback' => 'aggregator_page_last', - 'page_arguments' => 'a:0:{}', + 'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:23:"image_style_delete_form";i:1;i:5;}', 'delivery_callback' => '', - 'fit' => '1', - 'number_parts' => '1', + 'fit' => '62', + 'number_parts' => '6', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'aggregator', - 'title' => 'Feed aggregator', + 'tab_root' => 'admin/config/media/image-styles/delete/%', + 'title' => 'Delete style', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', 'type' => '6', - 'description' => '', + 'description' => 'Delete an image style.', 'position' => '', - 'weight' => '5', - 'include_file' => 'modules/aggregator/aggregator.pages.inc', + 'weight' => '0', + 'include_file' => 'modules/image/image.admin.inc', )) ->values(array( - 'path' => 'aggregator/categories', - 'load_functions' => '', + 'path' => 'admin/config/media/image-styles/edit/%', + 'load_functions' => 'a:1:{i:5;s:16:"image_style_load";}', 'to_arg_functions' => '', - 'access_callback' => '_aggregator_has_categories', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'aggregator_page_categories', - 'page_arguments' => 'a:0:{}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:16:"image_style_form";i:1;i:5;}', 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', + 'fit' => '62', + 'number_parts' => '6', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'aggregator/categories', - 'title' => 'Categories', + 'tab_root' => 'admin/config/media/image-styles/edit/%', + 'title' => 'Edit style', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', 'type' => '6', - 'description' => '', + 'description' => 'Configure an image style.', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/aggregator/aggregator.pages.inc', + 'include_file' => 'modules/image/image.admin.inc', )) ->values(array( - 'path' => 'aggregator/categories/%', - 'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}', + 'path' => 'admin/config/media/image-styles/edit/%/add/%', + 'load_functions' => 'a:2:{i:5;a:1:{s:16:"image_style_load";a:1:{i:0;i:5;}}i:7;a:1:{s:28:"image_effect_definition_load";a:1:{i:0;i:5;}}}', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}', - 'page_callback' => 'aggregator_page_category', - 'page_arguments' => 'a:1:{i:0;i:2;}', + 'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:3:{i:0;s:17:"image_effect_form";i:1;i:5;i:2;i:7;}', 'delivery_callback' => '', - 'fit' => '6', - 'number_parts' => '3', + 'fit' => '250', + 'number_parts' => '8', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'aggregator/categories/%', - 'title' => '', - 'title_callback' => '_aggregator_category_title', - 'title_arguments' => 'a:1:{i:0;i:2;}', + 'tab_root' => 'admin/config/media/image-styles/edit/%/add/%', + 'title' => 'Add image effect', + 'title_callback' => 't', + 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', 'type' => '6', - 'description' => '', + 'description' => 'Add a new effect to a style.', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/aggregator/aggregator.pages.inc', + 'include_file' => 'modules/image/image.admin.inc', )) ->values(array( - 'path' => 'aggregator/categories/%/categorize', - 'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}', + 'path' => 'admin/config/media/image-styles/edit/%/effects/%', + 'load_functions' => 'a:2:{i:5;a:1:{s:16:"image_style_load";a:2:{i:0;i:5;i:1;s:1:"3";}}i:7;a:1:{s:17:"image_effect_load";a:2:{i:0;i:5;i:1;s:1:"3";}}}', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', + 'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}', 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:29:"aggregator_page_category_form";i:1;i:2;}', + 'page_arguments' => 'a:3:{i:0;s:17:"image_effect_form";i:1;i:5;i:2;i:7;}', 'delivery_callback' => '', - 'fit' => '13', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'aggregator/categories/%', - 'tab_root' => 'aggregator/categories/%', - 'title' => 'Categorize', + 'fit' => '250', + 'number_parts' => '8', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/config/media/image-styles/edit/%/effects/%', + 'title' => 'Edit image effect', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', + 'type' => '6', + 'description' => 'Edit an existing effect within a style.', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/aggregator/aggregator.pages.inc', + 'include_file' => 'modules/image/image.admin.inc', )) ->values(array( - 'path' => 'aggregator/categories/%/configure', - 'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}', + 'path' => 'admin/config/media/image-styles/edit/%/effects/%/delete', + 'load_functions' => 'a:2:{i:5;a:1:{s:16:"image_style_load";a:2:{i:0;i:5;i:1;s:1:"3";}}i:7;a:1:{s:17:"image_effect_load";a:2:{i:0;i:5;i:1;s:1:"3";}}}', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', + 'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}', 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:24:"aggregator_form_category";i:1;i:2;}', + 'page_arguments' => 'a:3:{i:0;s:24:"image_effect_delete_form";i:1;i:5;i:2;i:7;}', 'delivery_callback' => '', - 'fit' => '13', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'aggregator/categories/%', - 'tab_root' => 'aggregator/categories/%', - 'title' => 'Configure', + 'fit' => '501', + 'number_parts' => '9', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/config/media/image-styles/edit/%/effects/%/delete', + 'title' => 'Delete image effect', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', + 'type' => '6', + 'description' => 'Delete an existing effect from a style.', 'position' => '', - 'weight' => '1', - 'include_file' => 'modules/aggregator/aggregator.admin.inc', + 'weight' => '0', + 'include_file' => 'modules/image/image.admin.inc', )) ->values(array( - 'path' => 'aggregator/categories/%/view', - 'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}', + 'path' => 'admin/config/media/image-styles/list', + 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}', - 'page_callback' => 'aggregator_page_category', - 'page_arguments' => 'a:1:{i:0;i:2;}', + 'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}', + 'page_callback' => 'image_style_list', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '13', - 'number_parts' => '4', + 'fit' => '31', + 'number_parts' => '5', 'context' => '1', - 'tab_parent' => 'aggregator/categories/%', - 'tab_root' => 'aggregator/categories/%', - 'title' => 'View', + 'tab_parent' => 'admin/config/media/image-styles', + 'tab_root' => 'admin/config/media/image-styles', + 'title' => 'List', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', 'type' => '140', - 'description' => '', + 'description' => 'List the current image styles on the site.', 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/aggregator/aggregator.pages.inc', + 'weight' => '1', + 'include_file' => 'modules/image/image.admin.inc', )) ->values(array( - 'path' => 'aggregator/opml', - 'load_functions' => '', + 'path' => 'admin/config/media/image-styles/revert/%', + 'load_functions' => 'a:1:{i:5;a:1:{s:16:"image_style_load";a:2:{i:0;N;i:1;s:1:"2";}}}', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}', - 'page_callback' => 'aggregator_page_opml', - 'page_arguments' => 'a:0:{}', + 'access_arguments' => 'a:1:{i:0;s:23:"administer image styles";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:23:"image_style_revert_form";i:1;i:5;}', 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', + 'fit' => '62', + 'number_parts' => '6', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'aggregator/opml', - 'title' => 'OPML feed', + 'tab_root' => 'admin/config/media/image-styles/revert/%', + 'title' => 'Revert style', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', + 'type' => '6', + 'description' => 'Revert an image style.', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/aggregator/aggregator.pages.inc', + 'include_file' => 'modules/image/image.admin.inc', )) ->values(array( - 'path' => 'aggregator/rss', + 'path' => 'admin/config/media/image-toolkit', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}', - 'page_callback' => 'aggregator_page_rss', - 'page_arguments' => 'a:0:{}', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:29:"system_image_toolkit_settings";}', 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', + 'fit' => '15', + 'number_parts' => '4', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'aggregator/rss', - 'title' => 'RSS feed', + 'tab_root' => 'admin/config/media/image-toolkit', + 'title' => 'Image toolkit', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', + 'type' => '6', + 'description' => 'Choose which image toolkit to use if you have installed optional toolkits.', 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/aggregator/aggregator.pages.inc', + 'weight' => '20', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'aggregator/sources', + 'path' => 'admin/config/people', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}', - 'page_callback' => 'aggregator_page_sources', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'system_admin_menu_block_page', 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', + 'fit' => '7', + 'number_parts' => '3', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'aggregator/sources', - 'title' => 'Sources', + 'tab_root' => 'admin/config/people', + 'title' => 'People', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', 'type' => '6', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/aggregator/aggregator.pages.inc', + 'description' => 'Configure user accounts.', + 'position' => 'left', + 'weight' => '-20', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'aggregator/sources/%', - 'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}', + 'path' => 'admin/config/people/accounts', + 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}', - 'page_callback' => 'aggregator_page_source', - 'page_arguments' => 'a:1:{i:0;i:2;}', + 'access_arguments' => 'a:1:{i:0;s:16:"administer users";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:19:"user_admin_settings";}', 'delivery_callback' => '', - 'fit' => '6', - 'number_parts' => '3', + 'fit' => '15', + 'number_parts' => '4', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'aggregator/sources/%', - 'title' => '', + 'tab_root' => 'admin/config/people/accounts', + 'title' => 'Account settings', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', 'type' => '6', - 'description' => '', + 'description' => 'Configure default behavior of users, including registration requirements, e-mails, fields, and user pictures.', 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/aggregator/aggregator.pages.inc', + 'weight' => '-10', + 'include_file' => 'modules/user/user.admin.inc', )) ->values(array( - 'path' => 'aggregator/sources/%/categorize', - 'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}', + 'path' => 'admin/config/people/accounts/display', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:16:"administer users";}}', 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:27:"aggregator_page_source_form";i:1;i:2;}', + 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"user";i:2;s:4:"user";i:3;s:7:"default";}', 'delivery_callback' => '', - 'fit' => '13', - 'number_parts' => '4', + 'fit' => '31', + 'number_parts' => '5', 'context' => '1', - 'tab_parent' => 'aggregator/sources/%', - 'tab_root' => 'aggregator/sources/%', - 'title' => 'Categorize', + 'tab_parent' => 'admin/config/people/accounts', + 'tab_root' => 'admin/config/people/accounts', + 'title' => 'Manage display', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', @@ -54598,249 +30819,274 @@ $connection->insert('menu_router') 'type' => '132', 'description' => '', 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/aggregator/aggregator.pages.inc', + 'weight' => '2', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'path' => 'aggregator/sources/%/configure', - 'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}', + 'path' => 'admin/config/people/accounts/display/default', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', + 'access_callback' => '_field_ui_view_mode_menu_access', + 'access_arguments' => 'a:6:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:7:"default";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:16:"administer users";}}', 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:20:"aggregator_form_feed";i:1;i:2;}', + 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"user";i:2;s:4:"user";i:3;s:7:"default";}', 'delivery_callback' => '', - 'fit' => '13', - 'number_parts' => '4', + 'fit' => '63', + 'number_parts' => '6', 'context' => '1', - 'tab_parent' => 'aggregator/sources/%', - 'tab_root' => 'aggregator/sources/%', - 'title' => 'Configure', + 'tab_parent' => 'admin/config/people/accounts/display', + 'tab_root' => 'admin/config/people/accounts', + 'title' => 'Default', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', + 'type' => '140', 'description' => '', 'position' => '', - 'weight' => '1', - 'include_file' => 'modules/aggregator/aggregator.admin.inc', + 'weight' => '-10', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'path' => 'aggregator/sources/%/view', - 'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}', + 'path' => 'admin/config/people/accounts/display/full', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}', - 'page_callback' => 'aggregator_page_source', - 'page_arguments' => 'a:1:{i:0;i:2;}', + 'access_callback' => '_field_ui_view_mode_menu_access', + 'access_arguments' => 'a:6:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:4:"full";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:16:"administer users";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"user";i:2;s:4:"user";i:3;s:4:"full";}', 'delivery_callback' => '', - 'fit' => '13', - 'number_parts' => '4', + 'fit' => '63', + 'number_parts' => '6', 'context' => '1', - 'tab_parent' => 'aggregator/sources/%', - 'tab_root' => 'aggregator/sources/%', - 'title' => 'View', + 'tab_parent' => 'admin/config/people/accounts/display', + 'tab_root' => 'admin/config/people/accounts', + 'title' => 'User account', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '140', + 'type' => '132', 'description' => '', 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/aggregator/aggregator.pages.inc', + 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'path' => 'batch', + 'path' => 'admin/config/people/accounts/fields', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'system_batch_page', - 'page_arguments' => 'a:0:{}', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:16:"administer users";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:4:"user";i:2;s:4:"user";}', 'delivery_callback' => '', - 'fit' => '1', - 'number_parts' => '1', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/config/people/accounts', + 'tab_root' => 'admin/config/people/accounts', + 'title' => 'Manage fields', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '1', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', +)) +->values(array( + 'path' => 'admin/config/people/accounts/fields/%', + 'load_functions' => 'a:1:{i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:1:"0";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:16:"administer users";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}', + 'delivery_callback' => '', + 'fit' => '62', + 'number_parts' => '6', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'batch', + 'tab_root' => 'admin/config/people/accounts/fields/%', 'title' => '', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '_system_batch_theme', + 'title_callback' => 'field_ui_menu_title', + 'title_arguments' => 'a:1:{i:0;i:5;}', + 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', + 'type' => '6', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/system/system.admin.inc', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'path' => 'blog', - 'load_functions' => '', + 'path' => 'admin/config/people/accounts/fields/%/delete', + 'load_functions' => 'a:1:{i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:1:"0";i:3;s:4:"%map";}}}', 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'blog_page_last', - 'page_arguments' => 'a:0:{}', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:16:"administer users";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:26:"field_ui_field_delete_form";i:1;i:5;}', 'delivery_callback' => '', - 'fit' => '1', - 'number_parts' => '1', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'blog', - 'title' => 'Blogs', + 'fit' => '125', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/config/people/accounts/fields/%', + 'tab_root' => 'admin/config/people/accounts/fields/%', + 'title' => 'Delete', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '20', + 'type' => '132', 'description' => '', 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/blog/blog.pages.inc', + 'weight' => '10', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'path' => 'blog/%', - 'load_functions' => 'a:1:{i:1;s:22:"user_uid_optional_load";}', - 'to_arg_functions' => 'a:1:{i:1;s:24:"user_uid_optional_to_arg";}', - 'access_callback' => 'blog_page_user_access', - 'access_arguments' => 'a:1:{i:0;i:1;}', - 'page_callback' => 'blog_page_user', - 'page_arguments' => 'a:1:{i:0;i:1;}', + 'path' => 'admin/config/people/accounts/fields/%/edit', + 'load_functions' => 'a:1:{i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:1:"0";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:16:"administer users";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}', 'delivery_callback' => '', - 'fit' => '2', - 'number_parts' => '2', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'blog/%', - 'title' => 'My blog', + 'fit' => '125', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/config/people/accounts/fields/%', + 'tab_root' => 'admin/config/people/accounts/fields/%', + 'title' => 'Edit', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '6', + 'type' => '140', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/blog/blog.pages.inc', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'path' => 'blog/%/feed', - 'load_functions' => 'a:1:{i:1;s:9:"user_load";}', + 'path' => 'admin/config/people/accounts/fields/%/field-settings', + 'load_functions' => 'a:1:{i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:1:"0";i:3;s:4:"%map";}}}', 'to_arg_functions' => '', - 'access_callback' => 'blog_page_user_access', - 'access_arguments' => 'a:1:{i:0;i:1;}', - 'page_callback' => 'blog_feed_user', - 'page_arguments' => 'a:1:{i:0;i:1;}', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:16:"administer users";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:28:"field_ui_field_settings_form";i:1;i:5;}', 'delivery_callback' => '', - 'fit' => '5', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'blog/%/feed', - 'title' => 'Blogs', + 'fit' => '125', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/config/people/accounts/fields/%', + 'tab_root' => 'admin/config/people/accounts/fields/%', + 'title' => 'Field settings', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', + 'type' => '132', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/blog/blog.pages.inc', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'path' => 'blog/feed', - 'load_functions' => '', + 'path' => 'admin/config/people/accounts/fields/%/widget-type', + 'load_functions' => 'a:1:{i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"user";i:1;s:4:"user";i:2;s:1:"0";i:3;s:4:"%map";}}}', 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'blog_feed_last', - 'page_arguments' => 'a:0:{}', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:16:"administer users";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:25:"field_ui_widget_type_form";i:1;i:5;}', 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'blog/feed', - 'title' => 'Blogs', + 'fit' => '125', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/config/people/accounts/fields/%', + 'tab_root' => 'admin/config/people/accounts/fields/%', + 'title' => 'Widget type', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', + 'type' => '132', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/blog/blog.pages.inc', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'path' => 'book', + 'path' => 'admin/config/people/accounts/settings', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'book_render', - 'page_arguments' => 'a:0:{}', + 'access_arguments' => 'a:1:{i:0;s:16:"administer users";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:19:"user_admin_settings";}', 'delivery_callback' => '', - 'fit' => '1', - 'number_parts' => '1', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'book', - 'title' => 'Books', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/config/people/accounts', + 'tab_root' => 'admin/config/people/accounts', + 'title' => 'Settings', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '20', + 'type' => '140', 'description' => '', 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/book/book.pages.inc', + 'weight' => '-10', + 'include_file' => 'modules/user/user.admin.inc', )) ->values(array( - 'path' => 'book/export/%/%', - 'load_functions' => 'a:2:{i:2;N;i:3;N;}', + 'path' => 'admin/config/people/ip-blocking', + 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:31:"access printer-friendly version";}', - 'page_callback' => 'book_export', - 'page_arguments' => 'a:2:{i:0;i:2;i:1;i:3;}', + 'access_arguments' => 'a:1:{i:0;s:18:"block IP addresses";}', + 'page_callback' => 'system_ip_blocking', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '12', + 'fit' => '15', 'number_parts' => '4', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'book/export/%/%', - 'title' => '', + 'tab_root' => 'admin/config/people/ip-blocking', + 'title' => 'IP address blocking', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', + 'type' => '6', + 'description' => 'Manage blocked IP addresses.', 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/book/book.pages.inc', + 'weight' => '10', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'comment/%', - 'load_functions' => 'a:1:{i:1;N;}', + 'path' => 'admin/config/people/ip-blocking/delete/%', + 'load_functions' => 'a:1:{i:5;s:15:"blocked_ip_load";}', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:15:"access comments";}', - 'page_callback' => 'comment_permalink', - 'page_arguments' => 'a:1:{i:0;i:1;}', + 'access_arguments' => 'a:1:{i:0;s:18:"block IP addresses";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:25:"system_ip_blocking_delete";i:1;i:5;}', 'delivery_callback' => '', - 'fit' => '2', - 'number_parts' => '2', + 'fit' => '62', + 'number_parts' => '6', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'comment/%', - 'title' => 'Comment permalink', + 'tab_root' => 'admin/config/people/ip-blocking/delete/%', + 'title' => 'Delete IP address', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', @@ -54849,173 +31095,173 @@ $connection->insert('menu_router') 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => '', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'comment/%/approve', - 'load_functions' => 'a:1:{i:1;N;}', + 'path' => 'admin/config/regional', + 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}', - 'page_callback' => 'comment_approve', - 'page_arguments' => 'a:1:{i:0;i:1;}', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'system_admin_menu_block_page', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '5', + 'fit' => '7', 'number_parts' => '3', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'comment/%/approve', - 'title' => 'Approve', + 'tab_root' => 'admin/config/regional', + 'title' => 'Regional and language', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', 'type' => '6', - 'description' => '', - 'position' => '', - 'weight' => '1', - 'include_file' => 'modules/comment/comment.pages.inc', + 'description' => 'Regional settings, localization and translation.', + 'position' => 'left', + 'weight' => '-5', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'comment/%/delete', - 'load_functions' => 'a:1:{i:1;N;}', + 'path' => 'admin/config/regional/date-time', + 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}', - 'page_callback' => 'comment_confirm_delete_page', - 'page_arguments' => 'a:1:{i:0;i:1;}', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:25:"system_date_time_settings";}', 'delivery_callback' => '', - 'fit' => '5', - 'number_parts' => '3', - 'context' => '1', - 'tab_parent' => 'comment/%', - 'tab_root' => 'comment/%', - 'title' => 'Delete', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/config/regional/date-time', + 'title' => 'Date and time', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', + 'type' => '6', + 'description' => 'Configure display formats for date and time.', 'position' => '', - 'weight' => '2', - 'include_file' => 'modules/comment/comment.admin.inc', + 'weight' => '-15', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'comment/%/edit', - 'load_functions' => 'a:1:{i:1;s:12:"comment_load";}', + 'path' => 'admin/config/regional/date-time/formats', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'comment_access', - 'access_arguments' => 'a:2:{i:0;s:4:"edit";i:1;i:1;}', - 'page_callback' => 'comment_edit_page', - 'page_arguments' => 'a:1:{i:0;i:1;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'system_date_time_formats', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '5', - 'number_parts' => '3', + 'fit' => '31', + 'number_parts' => '5', 'context' => '1', - 'tab_parent' => 'comment/%', - 'tab_root' => 'comment/%', - 'title' => 'Edit', + 'tab_parent' => 'admin/config/regional/date-time', + 'tab_root' => 'admin/config/regional/date-time', + 'title' => 'Formats', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', 'type' => '132', - 'description' => '', + 'description' => 'Configure display format strings for date and time.', 'position' => '', - 'weight' => '0', - 'include_file' => '', + 'weight' => '-9', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'comment/%/view', - 'load_functions' => 'a:1:{i:1;N;}', + 'path' => 'admin/config/regional/date-time/formats/%/delete', + 'load_functions' => 'a:1:{i:5;N;}', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:15:"access comments";}', - 'page_callback' => 'comment_permalink', - 'page_arguments' => 'a:1:{i:0;i:1;}', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:30:"system_date_delete_format_form";i:1;i:5;}', 'delivery_callback' => '', - 'fit' => '5', - 'number_parts' => '3', - 'context' => '1', - 'tab_parent' => 'comment/%', - 'tab_root' => 'comment/%', - 'title' => 'View comment', + 'fit' => '125', + 'number_parts' => '7', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/config/regional/date-time/formats/%/delete', + 'title' => 'Delete date format', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', + 'type' => '6', + 'description' => 'Allow users to delete a configured date format.', 'position' => '', - 'weight' => '-10', - 'include_file' => '', + 'weight' => '0', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'comment/reply/%', - 'load_functions' => 'a:1:{i:2;s:9:"node_load";}', + 'path' => 'admin/config/regional/date-time/formats/%/edit', + 'load_functions' => 'a:1:{i:5;N;}', 'to_arg_functions' => '', - 'access_callback' => 'node_access', - 'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:2;}', - 'page_callback' => 'comment_reply', - 'page_arguments' => 'a:1:{i:0;i:2;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:34:"system_configure_date_formats_form";i:1;i:5;}', 'delivery_callback' => '', - 'fit' => '6', - 'number_parts' => '3', + 'fit' => '125', + 'number_parts' => '7', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'comment/reply/%', - 'title' => 'Add new comment', + 'tab_root' => 'admin/config/regional/date-time/formats/%/edit', + 'title' => 'Edit date format', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', 'type' => '6', - 'description' => '', + 'description' => 'Allow users to edit a configured date format.', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/comment/comment.pages.inc', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'contact', + 'path' => 'admin/config/regional/date-time/formats/add', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"access site-wide contact form";}', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:17:"contact_site_form";}', + 'page_arguments' => 'a:1:{i:0;s:34:"system_configure_date_formats_form";}', 'delivery_callback' => '', - 'fit' => '1', - 'number_parts' => '1', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'contact', - 'title' => 'Contact', + 'fit' => '63', + 'number_parts' => '6', + 'context' => '1', + 'tab_parent' => 'admin/config/regional/date-time/formats', + 'tab_root' => 'admin/config/regional/date-time', + 'title' => 'Add format', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '20', - 'description' => '', + 'type' => '388', + 'description' => 'Allow users to add additional date formats.', 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/contact/contact.pages.inc', + 'weight' => '-10', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'ctools/autocomplete/%', - 'load_functions' => 'a:1:{i:2;N;}', + 'path' => 'admin/config/regional/date-time/formats/lookup', + 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'ctools_content_autocomplete_entity', - 'page_arguments' => 'a:1:{i:0;i:2;}', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'system_date_time_lookup', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '6', - 'number_parts' => '3', + 'fit' => '63', + 'number_parts' => '6', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'ctools/autocomplete/%', - 'title' => '', + 'tab_root' => 'admin/config/regional/date-time/formats/lookup', + 'title' => 'Date and time lookup', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', @@ -55024,248 +31270,298 @@ $connection->insert('menu_router') 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/ctools/includes/content.menu.inc', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'ctools/context/ajax/access/add', + 'path' => 'admin/config/regional/date-time/locale', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'ctools_access_ajax_add', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'locale_date_format_language_overview_page', 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', 'fit' => '31', 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/config/regional/date-time', + 'tab_root' => 'admin/config/regional/date-time', + 'title' => 'Localize', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => 'Configure date formats for each locale', + 'position' => '', + 'weight' => '-8', + 'include_file' => 'modules/locale/locale.admin.inc', +)) +->values(array( + 'path' => 'admin/config/regional/date-time/locale/%/edit', + 'load_functions' => 'a:1:{i:5;N;}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:23:"locale_date_format_form";i:1;i:5;}', + 'delivery_callback' => '', + 'fit' => '125', + 'number_parts' => '7', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'ctools/context/ajax/access/add', - 'title' => '', + 'tab_root' => 'admin/config/regional/date-time/locale/%/edit', + 'title' => 'Localize date formats', 'title_callback' => 't', 'title_arguments' => '', - 'theme_callback' => 'ajax_base_page_theme', + 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', + 'type' => '6', + 'description' => 'Configure date formats for each locale', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/ctools/includes/context-access-admin.inc', + 'include_file' => 'modules/locale/locale.admin.inc', )) ->values(array( - 'path' => 'ctools/context/ajax/access/configure', - 'load_functions' => '', + 'path' => 'admin/config/regional/date-time/locale/%/reset', + 'load_functions' => 'a:1:{i:5;N;}', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'ctools_access_ajax_edit', - 'page_arguments' => 'a:0:{}', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:29:"locale_date_format_reset_form";i:1;i:5;}', 'delivery_callback' => '', - 'fit' => '31', - 'number_parts' => '5', + 'fit' => '125', + 'number_parts' => '7', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'ctools/context/ajax/access/configure', - 'title' => '', + 'tab_root' => 'admin/config/regional/date-time/locale/%/reset', + 'title' => 'Reset date formats', 'title_callback' => 't', 'title_arguments' => '', - 'theme_callback' => 'ajax_base_page_theme', + 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', + 'type' => '6', + 'description' => 'Reset localized date formats to global defaults', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/ctools/includes/context-access-admin.inc', + 'include_file' => 'modules/locale/locale.admin.inc', )) ->values(array( - 'path' => 'ctools/context/ajax/access/delete', + 'path' => 'admin/config/regional/date-time/types', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'ctools_access_ajax_delete', - 'page_arguments' => 'a:0:{}', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:25:"system_date_time_settings";}', 'delivery_callback' => '', 'fit' => '31', 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/config/regional/date-time', + 'tab_root' => 'admin/config/regional/date-time', + 'title' => 'Types', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => 'Configure display formats for date and time.', + 'position' => '', + 'weight' => '-10', + 'include_file' => 'modules/system/system.admin.inc', +)) +->values(array( + 'path' => 'admin/config/regional/date-time/types/%/delete', + 'load_functions' => 'a:1:{i:5;N;}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:35:"system_delete_date_format_type_form";i:1;i:5;}', + 'delivery_callback' => '', + 'fit' => '125', + 'number_parts' => '7', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'ctools/context/ajax/access/delete', - 'title' => '', + 'tab_root' => 'admin/config/regional/date-time/types/%/delete', + 'title' => 'Delete date type', 'title_callback' => 't', 'title_arguments' => '', - 'theme_callback' => 'ajax_base_page_theme', + 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', + 'type' => '6', + 'description' => 'Allow users to delete a configured date type.', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/ctools/includes/context-access-admin.inc', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'ctools/context/ajax/add', + 'path' => 'admin/config/regional/date-time/types/add', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'ctools_context_ajax_item_add', - 'page_arguments' => 'a:0:{}', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:32:"system_add_date_format_type_form";}', 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'ctools/context/ajax/add', - 'title' => '', + 'fit' => '63', + 'number_parts' => '6', + 'context' => '1', + 'tab_parent' => 'admin/config/regional/date-time/types', + 'tab_root' => 'admin/config/regional/date-time', + 'title' => 'Add date type', 'title_callback' => 't', 'title_arguments' => '', - 'theme_callback' => 'ajax_base_page_theme', + 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', + 'type' => '388', + 'description' => 'Add new date type.', 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/ctools/includes/context-admin.inc', + 'weight' => '-10', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'ctools/context/ajax/configure', + 'path' => 'admin/config/regional/language', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'ctools_context_ajax_item_edit', - 'page_arguments' => 'a:0:{}', + 'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:30:"locale_languages_overview_form";}', 'delivery_callback' => '', 'fit' => '15', 'number_parts' => '4', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'ctools/context/ajax/configure', - 'title' => '', + 'tab_root' => 'admin/config/regional/language', + 'title' => 'Languages', 'title_callback' => 't', 'title_arguments' => '', - 'theme_callback' => 'ajax_base_page_theme', + 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', + 'type' => '6', + 'description' => 'Configure languages for content and the user interface.', 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/ctools/includes/context-admin.inc', + 'weight' => '-10', + 'include_file' => 'modules/locale/locale.admin.inc', )) ->values(array( - 'path' => 'ctools/context/ajax/delete', + 'path' => 'admin/config/regional/language/add', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'ctools_context_ajax_item_delete', + 'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}', + 'page_callback' => 'locale_languages_add_screen', 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '15', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'ctools/context/ajax/delete', - 'title' => '', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/config/regional/language', + 'tab_root' => 'admin/config/regional/language', + 'title' => 'Add language', 'title_callback' => 't', 'title_arguments' => '', - 'theme_callback' => 'ajax_base_page_theme', + 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', + 'type' => '388', 'description' => '', 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/ctools/includes/context-admin.inc', + 'weight' => '5', + 'include_file' => 'modules/locale/locale.admin.inc', )) ->values(array( - 'path' => 'email/%/%/%', - 'load_functions' => 'a:3:{i:1;N;i:2;N;i:3;N;}', + 'path' => 'admin/config/regional/language/configure', + 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'email_mail_page', - 'page_arguments' => 'a:3:{i:0;i:1;i:1;i:2;i:2;i:3;}', + 'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:31:"locale_languages_configure_form";}', 'delivery_callback' => '', - 'fit' => '8', - 'number_parts' => '4', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'email/%/%/%', - 'title' => 'Email Contact Form', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/config/regional/language', + 'tab_root' => 'admin/config/regional/language', + 'title' => 'Detection and selection', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', + 'type' => '132', 'description' => '', 'position' => '', - 'weight' => '0', - 'include_file' => '', + 'weight' => '10', + 'include_file' => 'modules/locale/locale.admin.inc', )) ->values(array( - 'path' => 'entityreference/autocomplete/single/%/%/%', - 'load_functions' => 'a:3:{i:3;N;i:4;N;i:5;N;}', + 'path' => 'admin/config/regional/language/configure/session', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'entityreference_autocomplete_access_callback', - 'access_arguments' => 'a:4:{i:0;i:2;i:1;i:3;i:2;i:4;i:3;i:5;}', - 'page_callback' => 'entityreference_autocomplete_callback', - 'page_arguments' => 'a:4:{i:0;i:2;i:1;i:3;i:2;i:4;i:3;i:5;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:38:"locale_language_providers_session_form";}', 'delivery_callback' => '', - 'fit' => '56', + 'fit' => '63', 'number_parts' => '6', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'entityreference/autocomplete/single/%/%/%', - 'title' => 'Entity Reference Autocomplete', + 'tab_root' => 'admin/config/regional/language/configure/session', + 'title' => 'Session language detection configuration', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', + 'type' => '4', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => '', + 'include_file' => 'modules/locale/locale.admin.inc', )) ->values(array( - 'path' => 'entityreference/autocomplete/tags/%/%/%', - 'load_functions' => 'a:3:{i:3;N;i:4;N;i:5;N;}', + 'path' => 'admin/config/regional/language/configure/url', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'entityreference_autocomplete_access_callback', - 'access_arguments' => 'a:4:{i:0;i:2;i:1;i:3;i:2;i:4;i:3;i:5;}', - 'page_callback' => 'entityreference_autocomplete_callback', - 'page_arguments' => 'a:4:{i:0;i:2;i:1;i:3;i:2;i:4;i:3;i:5;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:34:"locale_language_providers_url_form";}', 'delivery_callback' => '', - 'fit' => '56', + 'fit' => '63', 'number_parts' => '6', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'entityreference/autocomplete/tags/%/%/%', - 'title' => 'Entity Reference Autocomplete', + 'tab_root' => 'admin/config/regional/language/configure/url', + 'title' => 'URL language detection configuration', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', + 'type' => '4', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => '', + 'include_file' => 'modules/locale/locale.admin.inc', )) ->values(array( - 'path' => 'field-collection/field-field-collection-test/%', - 'load_functions' => 'a:1:{i:2;s:26:"field_collection_item_load";}', + 'path' => 'admin/config/regional/language/delete/%', + 'load_functions' => 'a:1:{i:5;N;}', 'to_arg_functions' => '', - 'access_callback' => 'entity_access', - 'access_arguments' => 'a:3:{i:0;s:4:"view";i:1;s:21:"field_collection_item";i:2;i:2;}', - 'page_callback' => 'field_collection_item_page_view', - 'page_arguments' => 'a:1:{i:0;i:2;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:28:"locale_languages_delete_form";i:1;i:5;}', 'delivery_callback' => '', - 'fit' => '6', - 'number_parts' => '3', + 'fit' => '62', + 'number_parts' => '6', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'field-collection/field-field-collection-test/%', - 'title' => '', + 'tab_root' => 'admin/config/regional/language/delete/%', + 'title' => 'Confirm', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', @@ -55274,348 +31570,323 @@ $connection->insert('menu_router') 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/field_collection/field_collection.pages.inc', + 'include_file' => 'modules/locale/locale.admin.inc', )) ->values(array( - 'path' => 'field-collection/field-field-collection-test/%/delete', - 'load_functions' => 'a:1:{i:2;s:26:"field_collection_item_load";}', + 'path' => 'admin/config/regional/language/edit/%', + 'load_functions' => 'a:1:{i:5;N;}', 'to_arg_functions' => '', - 'access_callback' => 'entity_access', - 'access_arguments' => 'a:3:{i:0;s:6:"delete";i:1;s:21:"field_collection_item";i:2;i:2;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}', 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:36:"field_collection_item_delete_confirm";i:1;i:2;}', + 'page_arguments' => 'a:2:{i:0;s:26:"locale_languages_edit_form";i:1;i:5;}', 'delivery_callback' => '', - 'fit' => '13', - 'number_parts' => '4', - 'context' => '2', - 'tab_parent' => 'field-collection/field-field-collection-test/%', - 'tab_root' => 'field-collection/field-field-collection-test/%', - 'title' => 'Delete', + 'fit' => '62', + 'number_parts' => '6', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/config/regional/language/edit/%', + 'title' => 'Edit language', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', + 'type' => '6', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/field_collection/field_collection.pages.inc', + 'include_file' => 'modules/locale/locale.admin.inc', )) ->values(array( - 'path' => 'field-collection/field-field-collection-test/%/edit', - 'load_functions' => 'a:1:{i:2;s:26:"field_collection_item_load";}', + 'path' => 'admin/config/regional/language/overview', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'entity_access', - 'access_arguments' => 'a:3:{i:0;s:6:"update";i:1;s:21:"field_collection_item";i:2;i:2;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:20:"administer languages";}', 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:26:"field_collection_item_form";i:1;i:2;}', + 'page_arguments' => 'a:1:{i:0;s:30:"locale_languages_overview_form";}', 'delivery_callback' => '', - 'fit' => '13', - 'number_parts' => '4', - 'context' => '3', - 'tab_parent' => 'field-collection/field-field-collection-test/%', - 'tab_root' => 'field-collection/field-field-collection-test/%', - 'title' => 'Edit', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/config/regional/language', + 'tab_root' => 'admin/config/regional/language', + 'title' => 'List', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', + 'type' => '140', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/field_collection/field_collection.pages.inc', + 'include_file' => 'modules/locale/locale.admin.inc', )) ->values(array( - 'path' => 'field-collection/field-field-collection-test/%/revisions/%', - 'load_functions' => 'a:2:{i:2;s:26:"field_collection_item_load";i:4;s:35:"field_collection_item_revision_load";}', + 'path' => 'admin/config/regional/settings', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'entity_access', - 'access_arguments' => 'a:3:{i:0;s:4:"view";i:1;s:21:"field_collection_item";i:2;i:4;}', - 'page_callback' => 'field_collection_item_page_view', - 'page_arguments' => 'a:1:{i:0;i:4;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:24:"system_regional_settings";}', 'delivery_callback' => '', - 'fit' => '26', - 'number_parts' => '5', + 'fit' => '15', + 'number_parts' => '4', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'field-collection/field-field-collection-test/%/revisions/%', - 'title' => '', + 'tab_root' => 'admin/config/regional/settings', + 'title' => 'Regional settings', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', 'type' => '6', - 'description' => '', + 'description' => "Settings for the site's default time zone and country.", 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/field_collection/field_collection.pages.inc', + 'weight' => '-20', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'field-collection/field-field-collection-test/%/view', - 'load_functions' => 'a:1:{i:2;s:26:"field_collection_item_load";}', + 'path' => 'admin/config/regional/translate', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'entity_access', - 'access_arguments' => 'a:3:{i:0;s:4:"view";i:1;s:21:"field_collection_item";i:2;i:2;}', - 'page_callback' => 'field_collection_item_page_view', - 'page_arguments' => 'a:1:{i:0;i:2;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}', + 'page_callback' => 'locale_translate_overview_screen', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '13', + 'fit' => '15', 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'field-collection/field-field-collection-test/%', - 'tab_root' => 'field-collection/field-field-collection-test/%', - 'title' => 'View', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '140', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'include_file' => 'sites/all/modules/field_collection/field_collection.pages.inc', -)) -->values(array( - 'path' => 'field-collection/field-field-collection-test/add/%/%', - 'load_functions' => 'a:2:{i:3;N;i:4;N;}', - 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'field_collection_item_add', - 'page_arguments' => 'a:3:{i:0;s:27:"field_field_collection_test";i:1;i:3;i:2;i:4;}', - 'delivery_callback' => '', - 'fit' => '28', - 'number_parts' => '5', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'field-collection/field-field-collection-test/add/%/%', - 'title' => '', + 'tab_root' => 'admin/config/regional/translate', + 'title' => 'Translate interface', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', 'type' => '6', - 'description' => '', + 'description' => 'Translate the built in interface and optionally other text.', 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/field_collection/field_collection.pages.inc', + 'weight' => '-5', + 'include_file' => 'modules/locale/locale.admin.inc', )) ->values(array( - 'path' => 'file/ajax', - 'load_functions' => '', + 'path' => 'admin/config/regional/translate/delete/%', + 'load_functions' => 'a:1:{i:5;N;}', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'file_ajax_upload', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => 'ajax_deliver', - 'fit' => '3', - 'number_parts' => '2', + 'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}', + 'page_callback' => 'locale_translate_delete_page', + 'page_arguments' => 'a:1:{i:0;i:5;}', + 'delivery_callback' => '', + 'fit' => '62', + 'number_parts' => '6', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'file/ajax', - 'title' => '', + 'tab_root' => 'admin/config/regional/translate/delete/%', + 'title' => 'Delete string', 'title_callback' => 't', 'title_arguments' => '', - 'theme_callback' => 'ajax_base_page_theme', + 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', + 'type' => '6', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => '', + 'include_file' => 'modules/locale/locale.admin.inc', )) ->values(array( - 'path' => 'file/progress', - 'load_functions' => '', + 'path' => 'admin/config/regional/translate/edit/%', + 'load_functions' => 'a:1:{i:5;N;}', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'file_ajax_progress', - 'page_arguments' => 'a:0:{}', + 'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:26:"locale_translate_edit_form";i:1;i:5;}', 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', + 'fit' => '62', + 'number_parts' => '6', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'file/progress', - 'title' => '', + 'tab_root' => 'admin/config/regional/translate/edit/%', + 'title' => 'Edit string', 'title_callback' => 't', 'title_arguments' => '', - 'theme_callback' => 'ajax_base_page_theme', + 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', + 'type' => '6', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => '', + 'include_file' => 'modules/locale/locale.admin.inc', )) ->values(array( - 'path' => 'filter/tips', + 'path' => 'admin/config/regional/translate/export', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'filter_tips_long', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}', + 'page_callback' => 'locale_translate_export_screen', 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'filter/tips', - 'title' => 'Compose tips', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/config/regional/translate', + 'tab_root' => 'admin/config/regional/translate', + 'title' => 'Export', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '20', + 'type' => '132', 'description' => '', 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/filter/filter.pages.inc', + 'weight' => '30', + 'include_file' => 'modules/locale/locale.admin.inc', )) ->values(array( - 'path' => 'filter/tips/%', - 'load_functions' => 'a:1:{i:2;s:18:"filter_format_load";}', + 'path' => 'admin/config/regional/translate/import', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'filter_access', - 'access_arguments' => 'a:1:{i:0;i:2;}', - 'page_callback' => 'filter_tips_long', - 'page_arguments' => 'a:1:{i:0;i:2;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:28:"locale_translate_import_form";}', 'delivery_callback' => '', - 'fit' => '6', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'filter/tips/%', - 'title' => 'Compose tips', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/config/regional/translate', + 'tab_root' => 'admin/config/regional/translate', + 'title' => 'Import', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '6', + 'type' => '132', 'description' => '', 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/filter/filter.pages.inc', + 'weight' => '20', + 'include_file' => 'modules/locale/locale.admin.inc', )) ->values(array( - 'path' => 'forum', + 'path' => 'admin/config/regional/translate/overview', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'forum_page', + 'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}', + 'page_callback' => 'locale_translate_overview_screen', 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '1', - 'number_parts' => '1', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'forum', - 'title' => 'Forums', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/config/regional/translate', + 'tab_root' => 'admin/config/regional/translate', + 'title' => 'Overview', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '6', + 'type' => '140', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/forum/forum.pages.inc', + 'include_file' => 'modules/locale/locale.admin.inc', )) ->values(array( - 'path' => 'forum/%', - 'load_functions' => 'a:1:{i:1;s:16:"forum_forum_load";}', + 'path' => 'admin/config/regional/translate/translate', + 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'forum_page', - 'page_arguments' => 'a:1:{i:0;i:1;}', + 'access_arguments' => 'a:1:{i:0;s:19:"translate interface";}', + 'page_callback' => 'locale_translate_seek_screen', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '2', - 'number_parts' => '2', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'forum/%', - 'title' => 'Forums', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/config/regional/translate', + 'tab_root' => 'admin/config/regional/translate', + 'title' => 'Translate', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '6', + 'type' => '132', 'description' => '', 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/forum/forum.pages.inc', + 'weight' => '10', + 'include_file' => 'modules/locale/locale.admin.inc', )) ->values(array( - 'path' => 'i18n/node/autocomplete', + 'path' => 'admin/config/search', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:31:"administer content translations";}', - 'page_callback' => 'i18n_node_autocomplete', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'system_admin_menu_block_page', 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', 'fit' => '7', 'number_parts' => '3', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'i18n/node/autocomplete', - 'title' => '', + 'tab_root' => 'admin/config/search', + 'title' => 'Search and metadata', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/i18n/i18n_node/i18n_node.pages.inc', + 'type' => '6', + 'description' => 'Local site search, metadata and SEO.', + 'position' => 'left', + 'weight' => '-10', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'i18n_string/save', + 'path' => 'admin/config/search/clean-urls', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:23:"use on-page translation";}', - 'page_callback' => 'i18n_string_l10n_client_save_string', - 'page_arguments' => 'a:0:{}', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:25:"system_clean_url_settings";}', 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', + 'fit' => '15', + 'number_parts' => '4', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'i18n_string/save', - 'title' => 'Save string', + 'tab_root' => 'admin/config/search/clean-urls', + 'title' => 'Clean URLs', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', + 'type' => '6', + 'description' => 'Enable or disable clean URLs for your site.', 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/i18n/i18n_string/i18n_string.pages.inc', + 'weight' => '5', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'node', + 'path' => 'admin/config/search/clean-urls/check', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'node_page_default', - 'page_arguments' => 'a:0:{}', + 'access_callback' => '1', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'drupal_json_output', + 'page_arguments' => 'a:1:{i:0;a:1:{s:6:"status";b:1;}}', 'delivery_callback' => '', - 'fit' => '1', - 'number_parts' => '1', + 'fit' => '31', + 'number_parts' => '5', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'node', - 'title' => '', + 'tab_root' => 'admin/config/search/clean-urls/check', + 'title' => 'Clean URL check', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', @@ -55624,123 +31895,98 @@ $connection->insert('menu_router') 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => '', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'node/%', - 'load_functions' => 'a:1:{i:1;s:9:"node_load";}', + 'path' => 'admin/config/search/path', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'node_access', - 'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}', - 'page_callback' => 'node_page_view', - 'page_arguments' => 'a:1:{i:0;i:1;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}', + 'page_callback' => 'path_admin_overview', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '2', - 'number_parts' => '2', + 'fit' => '15', + 'number_parts' => '4', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'node/%', - 'title' => '', - 'title_callback' => 'node_page_title', - 'title_arguments' => 'a:1:{i:0;i:1;}', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => '', -)) -->values(array( - 'path' => 'node/%/delete', - 'load_functions' => 'a:1:{i:1;s:9:"node_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'node_access', - 'access_arguments' => 'a:2:{i:0;s:6:"delete";i:1;i:1;}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:19:"node_delete_confirm";i:1;i:1;}', - 'delivery_callback' => '', - 'fit' => '5', - 'number_parts' => '3', - 'context' => '2', - 'tab_parent' => 'node/%', - 'tab_root' => 'node/%', - 'title' => 'Delete', + 'tab_root' => 'admin/config/search/path', + 'title' => 'URL aliases', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', + 'type' => '6', + 'description' => "Change your site's URL paths by aliasing them.", 'position' => '', - 'weight' => '1', - 'include_file' => 'modules/node/node.pages.inc', + 'weight' => '-5', + 'include_file' => 'modules/path/path.admin.inc', )) ->values(array( - 'path' => 'node/%/edit', - 'load_functions' => 'a:1:{i:1;s:9:"node_load";}', + 'path' => 'admin/config/search/path/add', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'node_access', - 'access_arguments' => 'a:2:{i:0;s:6:"update";i:1;i:1;}', - 'page_callback' => 'node_page_edit', - 'page_arguments' => 'a:1:{i:0;i:1;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}', + 'page_callback' => 'path_admin_edit', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '5', - 'number_parts' => '3', - 'context' => '3', - 'tab_parent' => 'node/%', - 'tab_root' => 'node/%', - 'title' => 'Edit', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/config/search/path', + 'tab_root' => 'admin/config/search/path', + 'title' => 'Add alias', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', + 'type' => '388', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/node/node.pages.inc', + 'include_file' => 'modules/path/path.admin.inc', )) ->values(array( - 'path' => 'node/%/outline', - 'load_functions' => 'a:1:{i:1;s:9:"node_load";}', + 'path' => 'admin/config/search/path/delete/%', + 'load_functions' => 'a:1:{i:5;s:9:"path_load";}', 'to_arg_functions' => '', - 'access_callback' => '_book_outline_access', - 'access_arguments' => 'a:1:{i:0;i:1;}', - 'page_callback' => 'book_outline', - 'page_arguments' => 'a:1:{i:0;i:1;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:25:"path_admin_delete_confirm";i:1;i:5;}', 'delivery_callback' => '', - 'fit' => '5', - 'number_parts' => '3', - 'context' => '1', - 'tab_parent' => 'node/%', - 'tab_root' => 'node/%', - 'title' => 'Outline', + 'fit' => '62', + 'number_parts' => '6', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/config/search/path/delete/%', + 'title' => 'Delete alias', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', + 'type' => '6', 'description' => '', 'position' => '', - 'weight' => '2', - 'include_file' => 'modules/book/book.pages.inc', + 'weight' => '0', + 'include_file' => 'modules/path/path.admin.inc', )) ->values(array( - 'path' => 'node/%/outline/remove', - 'load_functions' => 'a:1:{i:1;s:9:"node_load";}', + 'path' => 'admin/config/search/path/edit/%', + 'load_functions' => 'a:1:{i:5;s:9:"path_load";}', 'to_arg_functions' => '', - 'access_callback' => '_book_outline_remove_access', - 'access_arguments' => 'a:1:{i:0;i:1;}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:16:"book_remove_form";i:1;i:1;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}', + 'page_callback' => 'path_admin_edit', + 'page_arguments' => 'a:1:{i:0;i:5;}', 'delivery_callback' => '', - 'fit' => '11', - 'number_parts' => '4', + 'fit' => '62', + 'number_parts' => '6', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'node/%/outline/remove', - 'title' => 'Remove from outline', + 'tab_root' => 'admin/config/search/path/edit/%', + 'title' => 'Edit alias', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', @@ -55749,198 +31995,223 @@ $connection->insert('menu_router') 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/book/book.pages.inc', + 'include_file' => 'modules/path/path.admin.inc', )) ->values(array( - 'path' => 'node/%/revisions', - 'load_functions' => 'a:1:{i:1;s:9:"node_load";}', + 'path' => 'admin/config/search/path/list', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => '_node_revision_access', - 'access_arguments' => 'a:1:{i:0;i:1;}', - 'page_callback' => 'node_revision_overview', - 'page_arguments' => 'a:1:{i:0;i:1;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:22:"administer url aliases";}', + 'page_callback' => 'path_admin_overview', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '5', - 'number_parts' => '3', + 'fit' => '31', + 'number_parts' => '5', 'context' => '1', - 'tab_parent' => 'node/%', - 'tab_root' => 'node/%', - 'title' => 'Revisions', + 'tab_parent' => 'admin/config/search/path', + 'tab_root' => 'admin/config/search/path', + 'title' => 'List', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', + 'type' => '140', 'description' => '', 'position' => '', - 'weight' => '2', - 'include_file' => 'modules/node/node.pages.inc', + 'weight' => '-10', + 'include_file' => 'modules/path/path.admin.inc', )) ->values(array( - 'path' => 'node/%/revisions/%/delete', - 'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}', + 'path' => 'admin/config/search/settings', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => '_node_revision_access', - 'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"delete";}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"administer search";}', 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:28:"node_revision_delete_confirm";i:1;i:1;}', + 'page_arguments' => 'a:1:{i:0;s:21:"search_admin_settings";}', 'delivery_callback' => '', - 'fit' => '21', - 'number_parts' => '5', + 'fit' => '15', + 'number_parts' => '4', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'node/%/revisions/%/delete', - 'title' => 'Delete earlier revision', + 'tab_root' => 'admin/config/search/settings', + 'title' => 'Search settings', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', 'type' => '6', - 'description' => '', + 'description' => 'Configure relevance settings for search and other indexing options.', 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/node/node.pages.inc', + 'weight' => '-10', + 'include_file' => 'modules/search/search.admin.inc', )) ->values(array( - 'path' => 'node/%/revisions/%/revert', - 'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}', + 'path' => 'admin/config/search/settings/reindex', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => '_node_revision_access', - 'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"update";}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"administer search";}', 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:28:"node_revision_revert_confirm";i:1;i:1;}', + 'page_arguments' => 'a:1:{i:0;s:22:"search_reindex_confirm";}', 'delivery_callback' => '', - 'fit' => '21', + 'fit' => '31', 'number_parts' => '5', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'node/%/revisions/%/revert', - 'title' => 'Revert to earlier revision', + 'tab_root' => 'admin/config/search/settings/reindex', + 'title' => 'Clear index', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '6', + 'type' => '4', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/node/node.pages.inc', + 'include_file' => 'modules/search/search.admin.inc', )) ->values(array( - 'path' => 'node/%/revisions/%/view', - 'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}', + 'path' => 'admin/config/services', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => '_node_revision_access', - 'access_arguments' => 'a:1:{i:0;i:1;}', - 'page_callback' => 'node_show', - 'page_arguments' => 'a:2:{i:0;i:1;i:1;b:1;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'system_admin_menu_block_page', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '21', - 'number_parts' => '5', + 'fit' => '7', + 'number_parts' => '3', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'node/%/revisions/%/view', - 'title' => 'Revisions', + 'tab_root' => 'admin/config/services', + 'title' => 'Web services', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', 'type' => '6', - 'description' => '', - 'position' => '', + 'description' => 'Tools related to web services.', + 'position' => 'right', 'weight' => '0', - 'include_file' => '', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'node/%/track', - 'load_functions' => 'a:1:{i:1;s:9:"node_load";}', + 'path' => 'admin/config/services/aggregator', + 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}', - 'page_callback' => 'statistics_node_tracker', + 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', + 'page_callback' => 'aggregator_admin_overview', 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '5', - 'number_parts' => '3', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/config/services/aggregator', + 'title' => 'Feed aggregator', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => "Configure which content your site aggregates from other sites, how often it polls them, and how they're categorized.", + 'position' => '', + 'weight' => '10', + 'include_file' => 'modules/aggregator/aggregator.admin.inc', +)) +->values(array( + 'path' => 'admin/config/services/aggregator/add/category', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:24:"aggregator_form_category";}', + 'delivery_callback' => '', + 'fit' => '63', + 'number_parts' => '6', 'context' => '1', - 'tab_parent' => 'node/%', - 'tab_root' => 'node/%', - 'title' => 'Track', + 'tab_parent' => 'admin/config/services/aggregator', + 'tab_root' => 'admin/config/services/aggregator', + 'title' => 'Add category', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', + 'type' => '388', 'description' => '', 'position' => '', - 'weight' => '2', - 'include_file' => 'modules/statistics/statistics.pages.inc', + 'weight' => '0', + 'include_file' => 'modules/aggregator/aggregator.admin.inc', )) ->values(array( - 'path' => 'node/%/translate', - 'load_functions' => 'a:1:{i:1;s:9:"node_load";}', + 'path' => 'admin/config/services/aggregator/add/feed', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => '_translation_tab_access', - 'access_arguments' => 'a:1:{i:0;i:1;}', - 'page_callback' => 'i18n_node_translation_overview', - 'page_arguments' => 'a:1:{i:0;i:1;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:20:"aggregator_form_feed";}', 'delivery_callback' => '', - 'fit' => '5', - 'number_parts' => '3', + 'fit' => '63', + 'number_parts' => '6', 'context' => '1', - 'tab_parent' => 'node/%', - 'tab_root' => 'node/%', - 'title' => 'Translate', + 'tab_parent' => 'admin/config/services/aggregator', + 'tab_root' => 'admin/config/services/aggregator', + 'title' => 'Add feed', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', + 'type' => '388', 'description' => '', 'position' => '', - 'weight' => '2', - 'include_file' => 'sites/all/modules/i18n/i18n_node/i18n_node.pages.inc', + 'weight' => '0', + 'include_file' => 'modules/aggregator/aggregator.admin.inc', )) ->values(array( - 'path' => 'node/%/view', - 'load_functions' => 'a:1:{i:1;s:9:"node_load";}', + 'path' => 'admin/config/services/aggregator/add/opml', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'node_access', - 'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}', - 'page_callback' => 'node_page_view', - 'page_arguments' => 'a:1:{i:0;i:1;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:20:"aggregator_form_opml";}', 'delivery_callback' => '', - 'fit' => '5', - 'number_parts' => '3', + 'fit' => '63', + 'number_parts' => '6', 'context' => '1', - 'tab_parent' => 'node/%', - 'tab_root' => 'node/%', - 'title' => 'View', + 'tab_parent' => 'admin/config/services/aggregator', + 'tab_root' => 'admin/config/services/aggregator', + 'title' => 'Import OPML', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '140', + 'type' => '388', 'description' => '', 'position' => '', - 'weight' => '-10', - 'include_file' => '', + 'weight' => '0', + 'include_file' => 'modules/aggregator/aggregator.admin.inc', )) ->values(array( - 'path' => 'node/add', - 'load_functions' => '', + 'path' => 'admin/config/services/aggregator/edit/category/%', + 'load_functions' => 'a:1:{i:6;s:24:"aggregator_category_load";}', 'to_arg_functions' => '', - 'access_callback' => '_node_add_access', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'i18n_node_add_page', - 'page_arguments' => 'a:0:{}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:24:"aggregator_form_category";i:1;i:6;}', 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', + 'fit' => '126', + 'number_parts' => '7', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'node/add', - 'title' => 'Add content', + 'tab_root' => 'admin/config/services/aggregator/edit/category/%', + 'title' => 'Edit category', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', @@ -55949,523 +32220,548 @@ $connection->insert('menu_router') 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/i18n/i18n_node/i18n_node.pages.inc', + 'include_file' => 'modules/aggregator/aggregator.admin.inc', )) ->values(array( - 'path' => 'node/add/article', - 'load_functions' => '', + 'path' => 'admin/config/services/aggregator/edit/feed/%', + 'load_functions' => 'a:1:{i:6;s:20:"aggregator_feed_load";}', 'to_arg_functions' => '', - 'access_callback' => 'node_access', - 'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:7:"article";}', - 'page_callback' => 'node_add', - 'page_arguments' => 'a:1:{i:0;s:7:"article";}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:20:"aggregator_form_feed";i:1;i:6;}', 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', + 'fit' => '126', + 'number_parts' => '7', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'node/add/article', - 'title' => 'Article', - 'title_callback' => 'i18n_node_type_name', - 'title_arguments' => 'a:2:{i:0;s:7:"article";i:1;s:7:"Article";}', + 'tab_root' => 'admin/config/services/aggregator/edit/feed/%', + 'title' => 'Edit feed', + 'title_callback' => 't', + 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', 'type' => '6', - 'description' => 'Use articles for time-sensitive content like news, press releases or blog posts.', + 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/node/node.pages.inc', + 'include_file' => 'modules/aggregator/aggregator.admin.inc', )) ->values(array( - 'path' => 'node/add/blog', + 'path' => 'admin/config/services/aggregator/list', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'node_access', - 'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:4:"blog";}', - 'page_callback' => 'node_add', - 'page_arguments' => 'a:1:{i:0;s:4:"blog";}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', + 'page_callback' => 'aggregator_admin_overview', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/config/services/aggregator', + 'tab_root' => 'admin/config/services/aggregator', + 'title' => 'List', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', + 'weight' => '-10', + 'include_file' => 'modules/aggregator/aggregator.admin.inc', +)) +->values(array( + 'path' => 'admin/config/services/aggregator/remove/%', + 'load_functions' => 'a:1:{i:5;s:20:"aggregator_feed_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:28:"aggregator_admin_remove_feed";i:1;i:5;}', + 'delivery_callback' => '', + 'fit' => '62', + 'number_parts' => '6', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'node/add/blog', - 'title' => 'Blog entry', - 'title_callback' => 'i18n_node_type_name', - 'title_arguments' => 'a:2:{i:0;s:4:"blog";i:1;s:10:"Blog entry";}', + 'tab_root' => 'admin/config/services/aggregator/remove/%', + 'title' => 'Remove items', + 'title_callback' => 't', + 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', 'type' => '6', - 'description' => 'Use for multi-user blogs. Every user gets a personal blog.', + 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/node/node.pages.inc', + 'include_file' => 'modules/aggregator/aggregator.admin.inc', )) ->values(array( - 'path' => 'node/add/book', + 'path' => 'admin/config/services/aggregator/settings', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'node_access', - 'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:4:"book";}', - 'page_callback' => 'node_add', - 'page_arguments' => 'a:1:{i:0;s:4:"book";}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:21:"aggregator_admin_form";}', 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'node/add/book', - 'title' => 'Book page', - 'title_callback' => 'i18n_node_type_name', - 'title_arguments' => 'a:2:{i:0;s:4:"book";i:1;s:9:"Book page";}', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/config/services/aggregator', + 'tab_root' => 'admin/config/services/aggregator', + 'title' => 'Settings', + 'title_callback' => 't', + 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => 'Books have a built-in hierarchical navigation. Use for handbooks or tutorials.', + 'type' => '132', + 'description' => 'Configure the behavior of the feed aggregator, including when to discard feed items and how to present feed items and categories.', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/node/node.pages.inc', + 'include_file' => 'modules/aggregator/aggregator.admin.inc', )) ->values(array( - 'path' => 'node/add/forum', - 'load_functions' => '', + 'path' => 'admin/config/services/aggregator/update/%', + 'load_functions' => 'a:1:{i:5;s:20:"aggregator_feed_load";}', 'to_arg_functions' => '', - 'access_callback' => 'node_access', - 'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:5:"forum";}', - 'page_callback' => 'node_add', - 'page_arguments' => 'a:1:{i:0;s:5:"forum";}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', + 'page_callback' => 'aggregator_admin_refresh_feed', + 'page_arguments' => 'a:1:{i:0;i:5;}', 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', + 'fit' => '62', + 'number_parts' => '6', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'node/add/forum', - 'title' => 'Forum topic', - 'title_callback' => 'i18n_node_type_name', - 'title_arguments' => 'a:2:{i:0;s:5:"forum";i:1;s:11:"Forum topic";}', + 'tab_root' => 'admin/config/services/aggregator/update/%', + 'title' => 'Update items', + 'title_callback' => 't', + 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', 'type' => '6', - 'description' => 'A forum topic starts a new discussion thread within a forum.', + 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/node/node.pages.inc', + 'include_file' => 'modules/aggregator/aggregator.admin.inc', )) ->values(array( - 'path' => 'node/add/page', + 'path' => 'admin/config/services/rss-publishing', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'node_access', - 'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:4:"page";}', - 'page_callback' => 'node_add', - 'page_arguments' => 'a:1:{i:0;s:4:"page";}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:25:"system_rss_feeds_settings";}', 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', + 'fit' => '15', + 'number_parts' => '4', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'node/add/page', - 'title' => 'Basic page', - 'title_callback' => 'i18n_node_type_name', - 'title_arguments' => 'a:2:{i:0;s:4:"page";i:1;s:10:"Basic page";}', + 'tab_root' => 'admin/config/services/rss-publishing', + 'title' => 'RSS publishing', + 'title_callback' => 't', + 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', 'type' => '6', - 'description' => "Use basic pages for your static content, such as an 'About us' page.", + 'description' => 'Configure the site description, the number of items per feed and whether feeds should be titles/teasers/full-text.', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/node/node.pages.inc', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'node/add/paragraphs-migration-test', + 'path' => 'admin/config/system', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'node_access', - 'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:25:"paragraphs_migration_test";}', - 'page_callback' => 'node_add', - 'page_arguments' => 'a:1:{i:0;s:25:"paragraphs_migration_test";}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'system_admin_menu_block_page', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', 'fit' => '7', 'number_parts' => '3', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'node/add/paragraphs-migration-test', - 'title' => 'Paragraphs Migration Test', - 'title_callback' => 'i18n_node_type_name', - 'title_arguments' => 'a:2:{i:0;s:25:"paragraphs_migration_test";i:1;s:25:"Paragraphs Migration Test";}', + 'tab_root' => 'admin/config/system', + 'title' => 'System', + 'title_callback' => 't', + 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', 'type' => '6', - 'description' => 'Paragraphs migration test content type', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/node/node.pages.inc', + 'description' => 'General system related configuration.', + 'position' => 'right', + 'weight' => '-20', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'node/add/test-content-type', + 'path' => 'admin/config/system/actions', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'node_access', - 'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:17:"test_content_type";}', - 'page_callback' => 'node_add', - 'page_arguments' => 'a:1:{i:0;s:17:"test_content_type";}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}', + 'page_callback' => 'system_actions_manage', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '7', - 'number_parts' => '3', + 'fit' => '15', + 'number_parts' => '4', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'node/add/test-content-type', - 'title' => 'Test content type', - 'title_callback' => 'i18n_node_type_name', - 'title_arguments' => 'a:2:{i:0;s:17:"test_content_type";i:1;s:17:"Test content type";}', + 'tab_root' => 'admin/config/system/actions', + 'title' => 'Actions', + 'title_callback' => 't', + 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', 'type' => '6', - 'description' => 'This is the description of the test content type.', + 'description' => 'Manage the actions defined for your site.', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/node/node.pages.inc', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'openid/authenticate', + 'path' => 'admin/config/system/actions/configure', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'user_is_anonymous', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'openid_authentication_page', - 'page_arguments' => 'a:0:{}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:24:"system_actions_configure";}', 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', + 'fit' => '31', + 'number_parts' => '5', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'openid/authenticate', - 'title' => 'OpenID Login', + 'tab_root' => 'admin/config/system/actions/configure', + 'title' => 'Configure an advanced action', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', + 'type' => '4', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/openid/openid.pages.inc', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'overlay-ajax/%', - 'load_functions' => 'a:1:{i:1;N;}', + 'path' => 'admin/config/system/actions/delete/%', + 'load_functions' => 'a:1:{i:5;s:12:"actions_load";}', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access overlay";}', - 'page_callback' => 'overlay_ajax_render_region', - 'page_arguments' => 'a:1:{i:0;i:1;}', + 'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:26:"system_actions_delete_form";i:1;i:5;}', 'delivery_callback' => '', - 'fit' => '2', - 'number_parts' => '2', + 'fit' => '62', + 'number_parts' => '6', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'overlay-ajax/%', - 'title' => '', + 'tab_root' => 'admin/config/system/actions/delete/%', + 'title' => 'Delete action', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', + 'type' => '6', + 'description' => 'Delete an action.', 'position' => '', 'weight' => '0', - 'include_file' => '', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'overlay/dismiss-message', + 'path' => 'admin/config/system/actions/manage', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access overlay";}', - 'page_callback' => 'overlay_user_dismiss_message', + 'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}', + 'page_callback' => 'system_actions_manage', 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'overlay/dismiss-message', - 'title' => '', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/config/system/actions', + 'tab_root' => 'admin/config/system/actions', + 'title' => 'Manage actions', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', + 'type' => '140', + 'description' => 'Manage the actions defined for your site.', 'position' => '', - 'weight' => '0', - 'include_file' => '', + 'weight' => '-2', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'paragraphs/collapse/ajax', + 'path' => 'admin/config/system/actions/orphan', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'paragraphs_collapse_js', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}', + 'page_callback' => 'system_actions_remove_orphans', 'page_arguments' => 'a:0:{}', - 'delivery_callback' => 'ajax_deliver', - 'fit' => '7', - 'number_parts' => '3', + 'delivery_callback' => '', + 'fit' => '31', + 'number_parts' => '5', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'paragraphs/collapse/ajax', - 'title' => 'Close item callback', + 'tab_root' => 'admin/config/system/actions/orphan', + 'title' => 'Remove orphans', 'title_callback' => 't', 'title_arguments' => '', - 'theme_callback' => 'ajax_base_page_theme', + 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', 'type' => '0', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/paragraphs/paragraphs.ajax.inc', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'paragraphs/deleteconfirm/ajax', + 'path' => 'admin/config/system/cron', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'paragraphs_deleteconfirm_js', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => 'ajax_deliver', - 'fit' => '7', - 'number_parts' => '3', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:20:"system_cron_settings";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'paragraphs/deleteconfirm/ajax', - 'title' => 'Remove item callback', + 'tab_root' => 'admin/config/system/cron', + 'title' => 'Cron', 'title_callback' => 't', 'title_arguments' => '', - 'theme_callback' => 'ajax_base_page_theme', + 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', + 'type' => '6', + 'description' => 'Manage automatic site maintenance tasks.', 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/paragraphs/paragraphs.ajax.inc', + 'weight' => '20', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'paragraphs/edit/ajax', + 'path' => 'admin/config/system/site-information', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'paragraphs_edit_js', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => 'ajax_deliver', - 'fit' => '7', - 'number_parts' => '3', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:32:"system_site_information_settings";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'paragraphs/edit/ajax', - 'title' => 'Edit item callback', + 'tab_root' => 'admin/config/system/site-information', + 'title' => 'Site information', 'title_callback' => 't', 'title_arguments' => '', - 'theme_callback' => 'ajax_base_page_theme', + 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', + 'type' => '6', + 'description' => 'Change site name, e-mail address, slogan, default front page, and number of posts per page, error pages.', 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/paragraphs/paragraphs.ajax.inc', + 'weight' => '-20', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'paragraphs/remove/ajax', + 'path' => 'admin/config/system/statistics', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'paragraphs_remove_js', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => 'ajax_deliver', - 'fit' => '7', - 'number_parts' => '3', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:21:"administer statistics";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:24:"statistics_settings_form";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'paragraphs/remove/ajax', - 'title' => 'Remove item callback', + 'tab_root' => 'admin/config/system/statistics', + 'title' => 'Statistics', 'title_callback' => 't', 'title_arguments' => '', - 'theme_callback' => 'ajax_base_page_theme', + 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', + 'type' => '6', + 'description' => 'Control details about what and how your site logs access statistics.', 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/paragraphs/paragraphs.ajax.inc', + 'weight' => '-15', + 'include_file' => 'modules/statistics/statistics.admin.inc', )) ->values(array( - 'path' => 'paragraphs/restore/ajax', + 'path' => 'admin/config/user-interface', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'paragraphs_restore_js', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'system_admin_menu_block_page', 'page_arguments' => 'a:0:{}', - 'delivery_callback' => 'ajax_deliver', + 'delivery_callback' => '', 'fit' => '7', 'number_parts' => '3', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'paragraphs/restore/ajax', - 'title' => 'Restore item callback', + 'tab_root' => 'admin/config/user-interface', + 'title' => 'User interface', 'title_callback' => 't', 'title_arguments' => '', - 'theme_callback' => 'ajax_base_page_theme', + 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'sites/all/modules/paragraphs/paragraphs.ajax.inc', + 'type' => '6', + 'description' => 'Tools that enhance the user interface.', + 'position' => 'right', + 'weight' => '-15', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'rss.xml', + 'path' => 'admin/config/user-interface/shortcut', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'node_feed', - 'page_arguments' => 'a:2:{i:0;b:0;i:1;a:0:{}}', + 'access_arguments' => 'a:1:{i:0;s:20:"administer shortcuts";}', + 'page_callback' => 'shortcut_set_admin', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '1', - 'number_parts' => '1', + 'fit' => '15', + 'number_parts' => '4', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'rss.xml', - 'title' => 'RSS feed', + 'tab_root' => 'admin/config/user-interface/shortcut', + 'title' => 'Shortcuts', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', + 'type' => '6', + 'description' => 'Add and modify shortcut sets.', 'position' => '', 'weight' => '0', - 'include_file' => '', + 'include_file' => 'modules/shortcut/shortcut.admin.inc', )) ->values(array( - 'path' => 'search', - 'load_functions' => '', + 'path' => 'admin/config/user-interface/shortcut/%', + 'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}', 'to_arg_functions' => '', - 'access_callback' => 'search_is_active', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'search_view', - 'page_arguments' => 'a:0:{}', + 'access_callback' => 'shortcut_set_edit_access', + 'access_arguments' => 'a:1:{i:0;i:4;}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:22:"shortcut_set_customize";i:1;i:4;}', 'delivery_callback' => '', - 'fit' => '1', - 'number_parts' => '1', + 'fit' => '30', + 'number_parts' => '5', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'search', - 'title' => 'Search', - 'title_callback' => 't', - 'title_arguments' => '', + 'tab_root' => 'admin/config/user-interface/shortcut/%', + 'title' => 'Edit shortcuts', + 'title_callback' => 'shortcut_set_title_callback', + 'title_arguments' => 'a:1:{i:0;i:4;}', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '20', + 'type' => '6', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/search/search.pages.inc', + 'include_file' => 'modules/shortcut/shortcut.admin.inc', )) ->values(array( - 'path' => 'search/node', - 'load_functions' => '', + 'path' => 'admin/config/user-interface/shortcut/%/add-link', + 'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}', 'to_arg_functions' => '', - 'access_callback' => '_search_menu_access', - 'access_arguments' => 'a:1:{i:0;s:4:"node";}', - 'page_callback' => 'search_view', - 'page_arguments' => 'a:2:{i:0;s:4:"node";i:1;s:0:"";}', + 'access_callback' => 'shortcut_set_edit_access', + 'access_arguments' => 'a:1:{i:0;i:4;}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:17:"shortcut_link_add";i:1;i:4;}', 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', + 'fit' => '61', + 'number_parts' => '6', 'context' => '1', - 'tab_parent' => 'search', - 'tab_root' => 'search', - 'title' => 'Content', + 'tab_parent' => 'admin/config/user-interface/shortcut/%', + 'tab_root' => 'admin/config/user-interface/shortcut/%', + 'title' => 'Add shortcut', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', + 'type' => '388', 'description' => '', 'position' => '', - 'weight' => '-10', - 'include_file' => 'modules/search/search.pages.inc', + 'weight' => '0', + 'include_file' => 'modules/shortcut/shortcut.admin.inc', )) ->values(array( - 'path' => 'search/node/%', - 'load_functions' => 'a:1:{i:2;a:1:{s:14:"menu_tail_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}', - 'to_arg_functions' => 'a:1:{i:2;s:16:"menu_tail_to_arg";}', - 'access_callback' => '_search_menu_access', - 'access_arguments' => 'a:1:{i:0;s:4:"node";}', - 'page_callback' => 'search_view', - 'page_arguments' => 'a:2:{i:0;s:4:"node";i:1;i:2;}', + 'path' => 'admin/config/user-interface/shortcut/%/add-link-inline', + 'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'shortcut_set_edit_access', + 'access_arguments' => 'a:1:{i:0;i:4;}', + 'page_callback' => 'shortcut_link_add_inline', + 'page_arguments' => 'a:1:{i:0;i:4;}', 'delivery_callback' => '', - 'fit' => '6', - 'number_parts' => '3', - 'context' => '1', - 'tab_parent' => 'search/node', - 'tab_root' => 'search/node/%', - 'title' => 'Content', + 'fit' => '61', + 'number_parts' => '6', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/config/user-interface/shortcut/%/add-link-inline', + 'title' => 'Add shortcut', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', + 'type' => '0', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/search/search.pages.inc', + 'include_file' => 'modules/shortcut/shortcut.admin.inc', )) ->values(array( - 'path' => 'search/user', - 'load_functions' => '', + 'path' => 'admin/config/user-interface/shortcut/%/delete', + 'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}', 'to_arg_functions' => '', - 'access_callback' => '_search_menu_access', - 'access_arguments' => 'a:1:{i:0;s:4:"user";}', - 'page_callback' => 'search_view', - 'page_arguments' => 'a:2:{i:0;s:4:"user";i:1;s:0:"";}', + 'access_callback' => 'shortcut_set_delete_access', + 'access_arguments' => 'a:1:{i:0;i:4;}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:24:"shortcut_set_delete_form";i:1;i:4;}', 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', - 'context' => '1', - 'tab_parent' => 'search', - 'tab_root' => 'search', - 'title' => 'Users', + 'fit' => '61', + 'number_parts' => '6', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/config/user-interface/shortcut/%/delete', + 'title' => 'Delete shortcut set', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', + 'type' => '6', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/search/search.pages.inc', + 'include_file' => 'modules/shortcut/shortcut.admin.inc', )) ->values(array( - 'path' => 'search/user/%', - 'load_functions' => 'a:1:{i:2;a:1:{s:14:"menu_tail_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}', - 'to_arg_functions' => 'a:1:{i:2;s:16:"menu_tail_to_arg";}', - 'access_callback' => '_search_menu_access', - 'access_arguments' => 'a:1:{i:0;s:4:"user";}', - 'page_callback' => 'search_view', - 'page_arguments' => 'a:2:{i:0;s:4:"user";i:1;i:2;}', + 'path' => 'admin/config/user-interface/shortcut/%/edit', + 'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'shortcut_set_edit_access', + 'access_arguments' => 'a:1:{i:0;i:4;}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:22:"shortcut_set_edit_form";i:1;i:4;}', 'delivery_callback' => '', - 'fit' => '6', - 'number_parts' => '3', + 'fit' => '61', + 'number_parts' => '6', 'context' => '1', - 'tab_parent' => 'search/node', - 'tab_root' => 'search/node/%', - 'title' => 'Users', + 'tab_parent' => 'admin/config/user-interface/shortcut/%', + 'tab_root' => 'admin/config/user-interface/shortcut/%', + 'title' => 'Edit set name', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', @@ -56473,274 +32769,224 @@ $connection->insert('menu_router') 'type' => '132', 'description' => '', 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/search/search.pages.inc', + 'weight' => '10', + 'include_file' => 'modules/shortcut/shortcut.admin.inc', )) ->values(array( - 'path' => 'sites/default/files/styles/%', - 'load_functions' => 'a:1:{i:4;s:16:"image_style_load";}', + 'path' => 'admin/config/user-interface/shortcut/%/links', + 'load_functions' => 'a:1:{i:4;s:17:"shortcut_set_load";}', 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'image_style_deliver', - 'page_arguments' => 'a:1:{i:0;i:4;}', + 'access_callback' => 'shortcut_set_edit_access', + 'access_arguments' => 'a:1:{i:0;i:4;}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:22:"shortcut_set_customize";i:1;i:4;}', 'delivery_callback' => '', - 'fit' => '30', - 'number_parts' => '5', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'sites/default/files/styles/%', - 'title' => 'Generate image style', + 'fit' => '61', + 'number_parts' => '6', + 'context' => '1', + 'tab_parent' => 'admin/config/user-interface/shortcut/%', + 'tab_root' => 'admin/config/user-interface/shortcut/%', + 'title' => 'List links', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => '', -)) -->values(array( - 'path' => 'system/ajax', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'ajax_form_callback', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => 'ajax_deliver', - 'fit' => '3', - 'number_parts' => '2', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'system/ajax', - 'title' => 'AHAH callback', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => 'ajax_base_page_theme', - 'theme_arguments' => 'a:0:{}', - 'type' => '0', + 'type' => '140', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'includes/form.inc', + 'include_file' => 'modules/shortcut/shortcut.admin.inc', )) ->values(array( - 'path' => 'system/files', + 'path' => 'admin/config/user-interface/shortcut/add-set', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'file_download', - 'page_arguments' => 'a:1:{i:0;s:7:"private";}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:20:"administer shortcuts";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:21:"shortcut_set_add_form";}', 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'system/files', - 'title' => 'File download', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/config/user-interface/shortcut', + 'tab_root' => 'admin/config/user-interface/shortcut', + 'title' => 'Add shortcut set', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', + 'type' => '388', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => '', + 'include_file' => 'modules/shortcut/shortcut.admin.inc', )) ->values(array( - 'path' => 'system/files/styles/%', - 'load_functions' => 'a:1:{i:3;s:16:"image_style_load";}', + 'path' => 'admin/config/user-interface/shortcut/link/%', + 'load_functions' => 'a:1:{i:5;s:14:"menu_link_load";}', 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'image_style_deliver', - 'page_arguments' => 'a:1:{i:0;i:3;}', + 'access_callback' => 'shortcut_link_access', + 'access_arguments' => 'a:1:{i:0;i:5;}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:18:"shortcut_link_edit";i:1;i:5;}', 'delivery_callback' => '', - 'fit' => '14', - 'number_parts' => '4', + 'fit' => '62', + 'number_parts' => '6', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'system/files/styles/%', - 'title' => 'Generate image style', + 'tab_root' => 'admin/config/user-interface/shortcut/link/%', + 'title' => 'Edit shortcut', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', + 'type' => '6', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => '', + 'include_file' => 'modules/shortcut/shortcut.admin.inc', )) ->values(array( - 'path' => 'system/temporary', - 'load_functions' => '', + 'path' => 'admin/config/user-interface/shortcut/link/%/delete', + 'load_functions' => 'a:1:{i:5;s:14:"menu_link_load";}', 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'file_download', - 'page_arguments' => 'a:1:{i:0;s:9:"temporary";}', + 'access_callback' => 'shortcut_link_access', + 'access_arguments' => 'a:1:{i:0;i:5;}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:20:"shortcut_link_delete";i:1;i:5;}', 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', + 'fit' => '125', + 'number_parts' => '7', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'system/temporary', - 'title' => 'Temporary files', + 'tab_root' => 'admin/config/user-interface/shortcut/link/%/delete', + 'title' => 'Delete shortcut', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', + 'type' => '6', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => '', + 'include_file' => 'modules/shortcut/shortcut.admin.inc', )) ->values(array( - 'path' => 'system/timezone', + 'path' => 'admin/config/workflow', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'system_timezone', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'system_admin_menu_block_page', 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', + 'fit' => '7', + 'number_parts' => '3', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'system/timezone', - 'title' => 'Time zone', + 'tab_root' => 'admin/config/workflow', + 'title' => 'Workflow', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', - 'weight' => '0', + 'type' => '6', + 'description' => 'Content workflow, editorial workflow tools.', + 'position' => 'right', + 'weight' => '5', 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'path' => 'taxonomy/autocomplete', + 'path' => 'admin/content', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'taxonomy_autocomplete', - 'page_arguments' => 'a:0:{}', + 'access_arguments' => 'a:1:{i:0;s:23:"access content overview";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}', 'delivery_callback' => '', 'fit' => '3', 'number_parts' => '2', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'taxonomy/autocomplete', - 'title' => 'Autocomplete taxonomy', + 'tab_root' => 'admin/content', + 'title' => 'Content', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/taxonomy/taxonomy.pages.inc', -)) -->values(array( - 'path' => 'taxonomy/term/%', - 'load_functions' => 'a:1:{i:2;s:18:"taxonomy_term_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'taxonomy_term_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'delivery_callback' => '', - 'fit' => '6', - 'number_parts' => '3', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'taxonomy/term/%', - 'title' => 'Taxonomy term', - 'title_callback' => 'taxonomy_term_title', - 'title_arguments' => 'a:1:{i:0;i:2;}', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', 'type' => '6', - 'description' => '', + 'description' => 'Administer content and comments.', 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/taxonomy/taxonomy.pages.inc', + 'weight' => '-10', + 'include_file' => 'modules/node/node.admin.inc', )) ->values(array( - 'path' => 'taxonomy/term/%/edit', - 'load_functions' => 'a:1:{i:2;s:18:"taxonomy_term_load";}', + 'path' => 'admin/content/book', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'taxonomy_term_edit_access', - 'access_arguments' => 'a:1:{i:0;i:2;}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:3:{i:0;s:18:"taxonomy_form_term";i:1;i:2;i:2;N;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:24:"administer book outlines";}', + 'page_callback' => 'book_admin_overview', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '13', - 'number_parts' => '4', + 'fit' => '7', + 'number_parts' => '3', 'context' => '1', - 'tab_parent' => 'taxonomy/term/%', - 'tab_root' => 'taxonomy/term/%', - 'title' => 'Edit', + 'tab_parent' => 'admin/content', + 'tab_root' => 'admin/content', + 'title' => 'Books', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', 'type' => '132', - 'description' => '', + 'description' => "Manage your site's book outlines.", 'position' => '', - 'weight' => '10', - 'include_file' => 'modules/taxonomy/taxonomy.admin.inc', + 'weight' => '0', + 'include_file' => 'modules/book/book.admin.inc', )) ->values(array( - 'path' => 'taxonomy/term/%/feed', - 'load_functions' => 'a:1:{i:2;s:18:"taxonomy_term_load";}', + 'path' => 'admin/content/book/%', + 'load_functions' => 'a:1:{i:3;s:9:"node_load";}', 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'taxonomy_term_feed', - 'page_arguments' => 'a:1:{i:0;i:2;}', + 'access_callback' => '_book_outline_access', + 'access_arguments' => 'a:1:{i:0;i:3;}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:15:"book_admin_edit";i:1;i:3;}', 'delivery_callback' => '', - 'fit' => '13', + 'fit' => '14', 'number_parts' => '4', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'taxonomy/term/%/feed', - 'title' => 'Taxonomy term', - 'title_callback' => 'taxonomy_term_title', - 'title_arguments' => 'a:1:{i:0;i:2;}', + 'tab_root' => 'admin/content/book/%', + 'title' => 'Re-order book pages and change titles', + 'title_callback' => 't', + 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', 'type' => '0', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/taxonomy/taxonomy.pages.inc', + 'include_file' => 'modules/book/book.admin.inc', )) ->values(array( - 'path' => 'taxonomy/term/%/view', - 'load_functions' => 'a:1:{i:2;s:18:"taxonomy_term_load";}', + 'path' => 'admin/content/book/list', + 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'taxonomy_term_page', - 'page_arguments' => 'a:1:{i:0;i:2;}', + 'access_arguments' => 'a:1:{i:0;s:24:"administer book outlines";}', + 'page_callback' => 'book_admin_overview', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '13', + 'fit' => '15', 'number_parts' => '4', 'context' => '1', - 'tab_parent' => 'taxonomy/term/%', - 'tab_root' => 'taxonomy/term/%', - 'title' => 'View', + 'tab_parent' => 'admin/content/book', + 'tab_root' => 'admin/content', + 'title' => 'List', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', @@ -56749,74 +32995,74 @@ $connection->insert('menu_router') 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/taxonomy/taxonomy.pages.inc', + 'include_file' => 'modules/book/book.admin.inc', )) ->values(array( - 'path' => 'toolbar/toggle', + 'path' => 'admin/content/book/settings', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access toolbar";}', - 'page_callback' => 'toolbar_toggle_page', - 'page_arguments' => 'a:0:{}', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:19:"book_admin_settings";}', 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'toolbar/toggle', - 'title' => 'Toggle drawer visibility', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/content/book', + 'tab_root' => 'admin/content', + 'title' => 'Settings', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', + 'type' => '132', 'description' => '', 'position' => '', - 'weight' => '0', - 'include_file' => '', + 'weight' => '8', + 'include_file' => 'modules/book/book.admin.inc', )) ->values(array( - 'path' => 'tracker', + 'path' => 'admin/content/comment', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'tracker_page', + 'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}', + 'page_callback' => 'comment_admin', 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '1', - 'number_parts' => '1', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'tracker', - 'title' => 'Recent content', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'admin/content', + 'tab_root' => 'admin/content', + 'title' => 'Comments', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '6', - 'description' => '', + 'type' => '134', + 'description' => 'List and edit site comments and the comment approval queue.', 'position' => '', - 'weight' => '1', - 'include_file' => 'modules/tracker/tracker.pages.inc', + 'weight' => '0', + 'include_file' => 'modules/comment/comment.admin.inc', )) ->values(array( - 'path' => 'tracker/%', - 'load_functions' => 'a:1:{i:1;s:22:"user_uid_optional_load";}', - 'to_arg_functions' => 'a:1:{i:1;s:24:"user_uid_optional_to_arg";}', - 'access_callback' => '_tracker_myrecent_access', - 'access_arguments' => 'a:1:{i:0;i:1;}', - 'page_callback' => 'tracker_page', - 'page_arguments' => 'a:1:{i:0;i:1;}', + 'path' => 'admin/content/comment/approval', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}', + 'page_callback' => 'comment_admin', + 'page_arguments' => 'a:1:{i:0;s:8:"approval";}', 'delivery_callback' => '', - 'fit' => '2', - 'number_parts' => '2', + 'fit' => '15', + 'number_parts' => '4', 'context' => '1', - 'tab_parent' => 'tracker', - 'tab_root' => 'tracker', - 'title' => 'My recent content', - 'title_callback' => 't', + 'tab_parent' => 'admin/content/comment', + 'tab_root' => 'admin/content', + 'title' => 'Unapproved comments', + 'title_callback' => 'comment_count_unpublished', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', @@ -56824,23 +33070,23 @@ $connection->insert('menu_router') 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/tracker/tracker.pages.inc', + 'include_file' => 'modules/comment/comment.admin.inc', )) ->values(array( - 'path' => 'tracker/all', + 'path' => 'admin/content/comment/new', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'tracker_page', + 'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}', + 'page_callback' => 'comment_admin', 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', + 'fit' => '15', + 'number_parts' => '4', 'context' => '1', - 'tab_parent' => 'tracker', - 'tab_root' => 'tracker', - 'title' => 'All recent content', + 'tab_parent' => 'admin/content/comment', + 'tab_root' => 'admin/content', + 'title' => 'Published comments', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', @@ -56848,10539 +33094,15746 @@ $connection->insert('menu_router') 'type' => '140', 'description' => '', 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/tracker/tracker.pages.inc', + 'weight' => '-10', + 'include_file' => 'modules/comment/comment.admin.inc', )) ->values(array( - 'path' => 'user', + 'path' => 'admin/content/node', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'user_page', - 'page_arguments' => 'a:0:{}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:23:"access content overview";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}', 'delivery_callback' => '', - 'fit' => '1', - 'number_parts' => '1', - 'context' => '0', - 'tab_parent' => '', - 'tab_root' => 'user', - 'title' => 'User account', - 'title_callback' => 'user_menu_title', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'admin/content', + 'tab_root' => 'admin/content', + 'title' => 'Content', + 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '6', + 'type' => '140', 'description' => '', 'position' => '', 'weight' => '-10', - 'include_file' => 'modules/user/user.pages.inc', + 'include_file' => 'modules/node/node.admin.inc', )) ->values(array( - 'path' => 'user/%', - 'load_functions' => 'a:1:{i:1;s:9:"user_load";}', + 'path' => 'admin/help', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'user_view_access', - 'access_arguments' => 'a:1:{i:0;i:1;}', - 'page_callback' => 'user_view_page', - 'page_arguments' => 'a:1:{i:0;i:1;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_main', + 'page_arguments' => 'a:0:{}', 'delivery_callback' => '', - 'fit' => '2', + 'fit' => '3', 'number_parts' => '2', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'user/%', - 'title' => 'My account', - 'title_callback' => 'user_page_title', - 'title_arguments' => 'a:1:{i:0;i:1;}', + 'tab_root' => 'admin/help', + 'title' => 'Help', + 'title_callback' => 't', + 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', 'type' => '6', - 'description' => '', + 'description' => 'Reference for usage, configuration, and modules.', 'position' => '', - 'weight' => '0', - 'include_file' => '', + 'weight' => '9', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'path' => 'user/%/cancel', - 'load_functions' => 'a:1:{i:1;s:9:"user_load";}', + 'path' => 'admin/help/aggregator', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'user_cancel_access', - 'access_arguments' => 'a:1:{i:0;i:1;}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:24:"user_cancel_confirm_form";i:1;i:1;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', 'delivery_callback' => '', - 'fit' => '5', + 'fit' => '7', 'number_parts' => '3', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'user/%/cancel', - 'title' => 'Cancel account', + 'tab_root' => 'admin/help/aggregator', + 'title' => 'aggregator', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '6', + 'type' => '4', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/user/user.pages.inc', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'path' => 'user/%/cancel/confirm/%/%', - 'load_functions' => 'a:3:{i:1;s:9:"user_load";i:4;N;i:5;N;}', + 'path' => 'admin/help/block', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'user_cancel_access', - 'access_arguments' => 'a:1:{i:0;i:1;}', - 'page_callback' => 'user_cancel_confirm', - 'page_arguments' => 'a:3:{i:0;i:1;i:1;i:4;i:2;i:5;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', 'delivery_callback' => '', - 'fit' => '44', - 'number_parts' => '6', + 'fit' => '7', + 'number_parts' => '3', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'user/%/cancel/confirm/%/%', - 'title' => 'Confirm account cancellation', + 'tab_root' => 'admin/help/block', + 'title' => 'block', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '6', + 'type' => '4', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/user/user.pages.inc', -)) -->values(array( - 'path' => 'user/%/contact', - 'load_functions' => 'a:1:{i:1;s:9:"user_load";}', - 'to_arg_functions' => '', - 'access_callback' => '_contact_personal_tab_access', - 'access_arguments' => 'a:1:{i:0;i:1;}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:21:"contact_personal_form";i:1;i:1;}', - 'delivery_callback' => '', - 'fit' => '5', - 'number_parts' => '3', - 'context' => '1', - 'tab_parent' => 'user/%', - 'tab_root' => 'user/%', - 'title' => 'Contact', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '2', - 'include_file' => 'modules/contact/contact.pages.inc', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'path' => 'user/%/edit', - 'load_functions' => 'a:1:{i:1;s:9:"user_load";}', + 'path' => 'admin/help/blog', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'user_edit_access', - 'access_arguments' => 'a:1:{i:0;i:1;}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:17:"user_profile_form";i:1;i:1;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', 'delivery_callback' => '', - 'fit' => '5', + 'fit' => '7', 'number_parts' => '3', - 'context' => '1', - 'tab_parent' => 'user/%', - 'tab_root' => 'user/%', - 'title' => 'Edit', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'include_file' => 'modules/user/user.pages.inc', -)) -->values(array( - 'path' => 'user/%/edit/account', - 'load_functions' => 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}', - 'to_arg_functions' => '', - 'access_callback' => 'user_edit_access', - 'access_arguments' => 'a:1:{i:0;i:1;}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:17:"user_profile_form";i:1;i:1;}', - 'delivery_callback' => '', - 'fit' => '11', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'user/%/edit', - 'tab_root' => 'user/%', - 'title' => 'Account', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/blog', + 'title' => 'blog', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '140', + 'type' => '4', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/user/user.pages.inc', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'path' => 'user/%/openid', - 'load_functions' => 'a:1:{i:1;s:9:"user_load";}', + 'path' => 'admin/help/book', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'user_edit_access', - 'access_arguments' => 'a:1:{i:0;i:1;}', - 'page_callback' => 'openid_user_identities', - 'page_arguments' => 'a:1:{i:0;i:1;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', 'delivery_callback' => '', - 'fit' => '5', + 'fit' => '7', 'number_parts' => '3', - 'context' => '1', - 'tab_parent' => 'user/%', - 'tab_root' => 'user/%', - 'title' => 'OpenID identities', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/book', + 'title' => 'book', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', + 'type' => '4', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/openid/openid.pages.inc', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'path' => 'user/%/openid/delete', - 'load_functions' => 'a:1:{i:1;s:9:"user_load";}', + 'path' => 'admin/help/color', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'user_edit_access', - 'access_arguments' => 'a:1:{i:0;i:1;}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:23:"openid_user_delete_form";i:1;i:1;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', 'delivery_callback' => '', - 'fit' => '11', - 'number_parts' => '4', + 'fit' => '7', + 'number_parts' => '3', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'user/%/openid/delete', - 'title' => 'Delete OpenID', + 'tab_root' => 'admin/help/color', + 'title' => 'color', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '6', + 'type' => '4', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/openid/openid.pages.inc', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'path' => 'user/%/shortcuts', - 'load_functions' => 'a:1:{i:1;s:9:"user_load";}', + 'path' => 'admin/help/comment', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'shortcut_set_switch_access', - 'access_arguments' => 'a:1:{i:0;i:1;}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:19:"shortcut_set_switch";i:1;i:1;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', 'delivery_callback' => '', - 'fit' => '5', + 'fit' => '7', 'number_parts' => '3', - 'context' => '1', - 'tab_parent' => 'user/%', - 'tab_root' => 'user/%', - 'title' => 'Shortcuts', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/comment', + 'title' => 'comment', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', + 'type' => '4', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/shortcut/shortcut.admin.inc', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'path' => 'user/%/track', - 'load_functions' => 'a:1:{i:1;s:9:"user_load";}', + 'path' => 'admin/help/contact', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => '_tracker_user_access', - 'access_arguments' => 'a:1:{i:0;i:1;}', - 'page_callback' => 'tracker_page', - 'page_arguments' => 'a:2:{i:0;i:1;i:1;b:1;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', 'delivery_callback' => '', - 'fit' => '5', + 'fit' => '7', 'number_parts' => '3', - 'context' => '1', - 'tab_parent' => 'user/%', - 'tab_root' => 'user/%', - 'title' => 'Track', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/contact', + 'title' => 'contact', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', + 'type' => '4', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/tracker/tracker.pages.inc', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'path' => 'user/%/track/content', - 'load_functions' => 'a:1:{i:1;s:9:"user_load";}', + 'path' => 'admin/help/contextual', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => '_tracker_user_access', - 'access_arguments' => 'a:1:{i:0;i:1;}', - 'page_callback' => 'tracker_page', - 'page_arguments' => 'a:2:{i:0;i:1;i:1;b:1;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', 'delivery_callback' => '', - 'fit' => '11', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'user/%/track', - 'tab_root' => 'user/%', - 'title' => 'Track content', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/contextual', + 'title' => 'contextual', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '140', + 'type' => '4', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/tracker/tracker.pages.inc', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'path' => 'user/%/track/navigation', - 'load_functions' => 'a:1:{i:1;s:9:"user_load";}', + 'path' => 'admin/help/date', + 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}', - 'page_callback' => 'statistics_user_tracker', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => '', - 'fit' => '11', - 'number_parts' => '4', - 'context' => '1', - 'tab_parent' => 'user/%/track', - 'tab_root' => 'user/%', - 'title' => 'Track page visits', - 'title_callback' => 't', - 'title_arguments' => '', - 'theme_callback' => '', - 'theme_arguments' => 'a:0:{}', - 'type' => '132', - 'description' => '', - 'position' => '', - 'weight' => '2', - 'include_file' => 'modules/statistics/statistics.pages.inc', -)) -->values(array( - 'path' => 'user/%/view', - 'load_functions' => 'a:1:{i:1;s:9:"user_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_view_access', - 'access_arguments' => 'a:1:{i:0;i:1;}', - 'page_callback' => 'user_view_page', - 'page_arguments' => 'a:1:{i:0;i:1;}', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', 'delivery_callback' => '', - 'fit' => '5', + 'fit' => '7', 'number_parts' => '3', - 'context' => '1', - 'tab_parent' => 'user/%', - 'tab_root' => 'user/%', - 'title' => 'View', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/date', + 'title' => 'date', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '140', + 'type' => '4', 'description' => '', 'position' => '', - 'weight' => '-10', - 'include_file' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'path' => 'user/autocomplete', + 'path' => 'admin/help/dblog', 'load_functions' => '', 'to_arg_functions' => '', 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:20:"access user profiles";}', - 'page_callback' => 'user_autocomplete', - 'page_arguments' => 'a:0:{}', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', + 'fit' => '7', + 'number_parts' => '3', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'user/autocomplete', - 'title' => 'User autocomplete', + 'tab_root' => 'admin/help/dblog', + 'title' => 'dblog', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', + 'type' => '4', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/user/user.pages.inc', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'path' => 'user/login', + 'path' => 'admin/help/field', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'user_is_anonymous', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'user_page', - 'page_arguments' => 'a:0:{}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', - 'context' => '1', - 'tab_parent' => 'user', - 'tab_root' => 'user', - 'title' => 'Log in', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/field', + 'title' => 'field', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '140', + 'type' => '4', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/user/user.pages.inc', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'path' => 'user/logout', + 'path' => 'admin/help/field_collection', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'user_is_logged_in', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'user_logout', - 'page_arguments' => 'a:0:{}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', + 'fit' => '7', + 'number_parts' => '3', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'user/logout', - 'title' => 'Log out', + 'tab_root' => 'admin/help/field_collection', + 'title' => 'field_collection', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '6', + 'type' => '4', 'description' => '', 'position' => '', - 'weight' => '10', - 'include_file' => 'modules/user/user.pages.inc', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'path' => 'user/password', + 'path' => 'admin/help/field_sql_storage', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:9:"user_pass";}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', - 'context' => '1', - 'tab_parent' => 'user', - 'tab_root' => 'user', - 'title' => 'Request new password', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/field_sql_storage', + 'title' => 'field_sql_storage', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', + 'type' => '4', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/user/user.pages.inc', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'path' => 'user/register', + 'path' => 'admin/help/field_ui', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => 'user_register_access', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:18:"user_register_form";}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', 'delivery_callback' => '', - 'fit' => '3', - 'number_parts' => '2', - 'context' => '1', - 'tab_parent' => 'user', - 'tab_root' => 'user', - 'title' => 'Create new account', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/field_ui', + 'title' => 'field_ui', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '132', + 'type' => '4', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => '', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'path' => 'user/reset/%/%/%', - 'load_functions' => 'a:3:{i:2;N;i:3;N;i:4;N;}', + 'path' => 'admin/help/file', + 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:4:{i:0;s:15:"user_pass_reset";i:1;i:2;i:2;i:3;i:3;i:4;}', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', 'delivery_callback' => '', - 'fit' => '24', - 'number_parts' => '5', + 'fit' => '7', + 'number_parts' => '3', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'user/reset/%/%/%', - 'title' => 'Reset password', + 'tab_root' => 'admin/help/file', + 'title' => 'file', 'title_callback' => 't', 'title_arguments' => '', 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', + 'type' => '4', 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'modules/user/user.pages.inc', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'path' => 'views/ajax', + 'path' => 'admin/help/filter', 'load_functions' => '', 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'views_ajax', - 'page_arguments' => 'a:0:{}', - 'delivery_callback' => 'ajax_deliver', - 'fit' => '3', - 'number_parts' => '2', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', 'context' => '0', 'tab_parent' => '', - 'tab_root' => 'views/ajax', - 'title' => 'Views', + 'tab_root' => 'admin/help/filter', + 'title' => 'filter', 'title_callback' => 't', 'title_arguments' => '', - 'theme_callback' => 'ajax_base_page_theme', + 'theme_callback' => '', 'theme_arguments' => 'a:0:{}', - 'type' => '0', - 'description' => 'Ajax callback for view loading.', + 'type' => '4', + 'description' => '', 'position' => '', 'weight' => '0', - 'include_file' => 'sites/all/modules/views/includes/ajax.inc', -)) -->execute(); - -$connection->schema()->createTable('node', array( - 'fields' => array( - 'nid' => array( - 'type' => 'serial', - 'not null' => TRUE, - 'size' => 'normal', - 'unsigned' => TRUE, - ), - 'vid' => array( - 'type' => 'int', - 'not null' => FALSE, - 'size' => 'normal', - 'unsigned' => TRUE, - ), - 'type' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '32', - 'default' => '', - ), - 'language' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '12', - 'default' => '', - ), - 'title' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'uid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'status' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '1', - ), - 'created' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'changed' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'comment' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'promote' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'sticky' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'tnid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - 'unsigned' => TRUE, - ), - 'translate' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - ), - 'primary key' => array( - 'nid', - ), - 'mysql_character_set' => 'utf8', -)); - -$connection->insert('node') -->fields(array( - 'nid', - 'vid', - 'type', - 'language', - 'title', - 'uid', - 'status', - 'created', - 'changed', - 'comment', - 'promote', - 'sticky', - 'tnid', - 'translate', -)) -->values(array( - 'nid' => '1', - 'vid' => '1', - 'type' => 'test_content_type', - 'language' => 'en', - 'title' => 'A Node', - 'uid' => '2', - 'status' => '1', - 'created' => '1421727515', - 'changed' => '1441032132', - 'comment' => '2', - 'promote' => '1', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '2', - 'vid' => '2', - 'type' => 'article', - 'language' => 'en', - 'title' => 'The thing about Deep Space 9', - 'uid' => '2', - 'status' => '1', - 'created' => '1441306772', - 'changed' => '1441306832', - 'comment' => '2', - 'promote' => '1', - 'sticky' => '0', - 'tnid' => '2', - 'translate' => '0', -)) -->values(array( - 'nid' => '3', - 'vid' => '3', - 'type' => 'article', - 'language' => 'is', - 'title' => 'is - The thing about Deep Space 9', - 'uid' => '1', - 'status' => '1', - 'created' => '1471428152', - 'changed' => '1471428152', - 'comment' => '2', - 'promote' => '1', - 'sticky' => '0', - 'tnid' => '2', - 'translate' => '0', -)) -->values(array( - 'nid' => '4', - 'vid' => '4', - 'type' => 'article', - 'language' => 'is', - 'title' => 'is - The thing about Firefly', - 'uid' => '1', - 'status' => '1', - 'created' => '1478755274', - 'changed' => '1478755274', - 'comment' => '1', - 'promote' => '1', - 'sticky' => '0', - 'tnid' => '4', - 'translate' => '0', -)) -->values(array( - 'nid' => '5', - 'vid' => '5', - 'type' => 'article', - 'language' => 'en', - 'title' => 'en - The thing about Firefly', - 'uid' => '1', - 'status' => '1', - 'created' => '1478755314', - 'changed' => '1478755314', - 'comment' => '1', - 'promote' => '1', - 'sticky' => '0', - 'tnid' => '4', - 'translate' => '0', -)) -->values(array( - 'nid' => '6', - 'vid' => '6', - 'type' => 'forum', - 'language' => 'en', - 'title' => 'Comments are closed :-(', - 'uid' => '1', - 'status' => '1', - 'created' => '1504715414', - 'changed' => '1504715414', - 'comment' => '1', - 'promote' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '7', - 'vid' => '7', - 'type' => 'forum', - 'language' => 'en', - 'title' => 'Comments are open :-)', - 'uid' => '1', - 'status' => '1', - 'created' => '1504715432', - 'changed' => '1504715432', - 'comment' => '2', - 'promote' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '8', - 'vid' => '8', - 'type' => 'paragraphs_migration_test', - 'language' => 'und', - 'title' => 'Paragraphs Migration Test Single Language', - 'uid' => '1', - 'status' => '1', - 'created' => '1517542515', - 'changed' => '1517542515', - 'comment' => '2', - 'promote' => '1', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '9', - 'vid' => '9', - 'type' => 'paragraphs_migration_test', - 'language' => 'en', - 'title' => 'Paragraphs Migration Test Translatable English', - 'uid' => '1', - 'status' => '1', - 'created' => '1517542607', - 'changed' => '1517542607', - 'comment' => '2', - 'promote' => '1', - 'sticky' => '0', - 'tnid' => '9', - 'translate' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '10', - 'vid' => '10', - 'type' => 'paragraphs_migration_test', - 'language' => 'is', - 'title' => 'Paragraphs Migration Test Translatable Icelandic', - 'uid' => '1', - 'status' => '1', - 'created' => '1517542688', - 'changed' => '1517542688', - 'comment' => '2', - 'promote' => '1', - 'sticky' => '0', - 'tnid' => '9', - 'translate' => '0', -)) -->execute(); - -$connection->schema()->createTable('node_access', array( - 'fields' => array( - 'nid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - 'unsigned' => TRUE, - ), - 'gid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - 'unsigned' => TRUE, - ), - 'realm' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'grant_view' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - 'unsigned' => TRUE, - ), - 'grant_update' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - 'unsigned' => TRUE, - ), - 'grant_delete' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - 'unsigned' => TRUE, - ), - ), - 'primary key' => array( - 'nid', - 'gid', - 'realm', - ), - 'mysql_character_set' => 'utf8', -)); - -$connection->insert('node_access') -->fields(array( - 'nid', - 'gid', - 'realm', - 'grant_view', - 'grant_update', - 'grant_delete', + 'path' => 'admin/help/forum', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/forum', + 'title' => 'forum', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '0', - 'gid' => '0', - 'realm' => 'all', - 'grant_view' => '1', - 'grant_update' => '0', - 'grant_delete' => '0', + 'path' => 'admin/help/help', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/help', + 'title' => 'help', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) -->execute(); - -$connection->schema()->createTable('node_comment_statistics', array( - 'fields' => array( - 'nid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - 'unsigned' => TRUE, - ), - 'cid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'last_comment_timestamp' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'last_comment_name' => array( - 'type' => 'varchar', - 'not null' => FALSE, - 'length' => '60', - ), - 'last_comment_uid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'comment_count' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - 'unsigned' => TRUE, - ), - ), - 'primary key' => array( - 'nid', - ), - 'mysql_character_set' => 'utf8', -)); - -$connection->insert('node_comment_statistics') -->fields(array( - 'nid', - 'cid', - 'last_comment_timestamp', - 'last_comment_name', - 'last_comment_uid', - 'comment_count', +->values(array( + 'path' => 'admin/help/image', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/image', + 'title' => 'image', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '1', - 'cid' => '1', - 'last_comment_timestamp' => '1421727536', - 'last_comment_name' => '', - 'last_comment_uid' => '1', - 'comment_count' => '1', + 'path' => 'admin/help/list', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/list', + 'title' => 'list', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '3', - 'cid' => '0', - 'last_comment_timestamp' => '1471428152', - 'last_comment_name' => NULL, - 'last_comment_uid' => '1', - 'comment_count' => '0', + 'path' => 'admin/help/locale', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/locale', + 'title' => 'locale', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '4', - 'cid' => '0', - 'last_comment_timestamp' => '1478755274', - 'last_comment_name' => NULL, - 'last_comment_uid' => '1', - 'comment_count' => '0', + 'path' => 'admin/help/menu', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/menu', + 'title' => 'menu', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '5', - 'cid' => '0', - 'last_comment_timestamp' => '1478755314', - 'last_comment_name' => NULL, - 'last_comment_uid' => '1', - 'comment_count' => '0', + 'path' => 'admin/help/node', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/node', + 'title' => 'node', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '6', - 'cid' => '0', - 'last_comment_timestamp' => '1504715414', - 'last_comment_name' => NULL, - 'last_comment_uid' => '1', - 'comment_count' => '0', + 'path' => 'admin/help/number', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/number', + 'title' => 'number', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '7', - 'cid' => '0', - 'last_comment_timestamp' => '1504715432', - 'last_comment_name' => NULL, - 'last_comment_uid' => '1', - 'comment_count' => '0', + 'path' => 'admin/help/options', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/options', + 'title' => 'options', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '8', - 'cid' => '0', - 'last_comment_timestamp' => '1517542515', - 'last_comment_name' => NULL, - 'last_comment_uid' => '1', - 'comment_count' => '0', + 'path' => 'admin/help/path', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/path', + 'title' => 'path', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '9', - 'cid' => '0', - 'last_comment_timestamp' => '1517542607', - 'last_comment_name' => NULL, - 'last_comment_uid' => '1', - 'comment_count' => '0', + 'path' => 'admin/help/php', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/php', + 'title' => 'php', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '10', - 'cid' => '0', - 'last_comment_timestamp' => '1517542688', - 'last_comment_name' => NULL, - 'last_comment_uid' => '1', - 'comment_count' => '0', + 'path' => 'admin/help/rdf', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/rdf', + 'title' => 'rdf', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) -->execute(); - -$connection->schema()->createTable('node_counter', array( - 'fields' => array( - 'nid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'totalcount' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - 'unsigned' => TRUE, - ), - 'daycount' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - 'unsigned' => TRUE, - ), - 'timestamp' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - 'unsigned' => TRUE, - ), - ), - 'primary key' => array( - 'nid', - ), - 'mysql_character_set' => 'utf8', -)); - -$connection->insert('node_counter') -->fields(array( - 'nid', - 'totalcount', - 'daycount', - 'timestamp', +->values(array( + 'path' => 'admin/help/replicate', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/replicate', + 'title' => 'replicate', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '1', - 'totalcount' => '2', - 'daycount' => '0', - 'timestamp' => '1421727536', + 'path' => 'admin/help/replicate_paragraphs', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/replicate_paragraphs', + 'title' => 'replicate_paragraphs', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '2', - 'totalcount' => '1', - 'daycount' => '0', - 'timestamp' => '1471428059', + 'path' => 'admin/help/search', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/search', + 'title' => 'search', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '3', - 'totalcount' => '1', - 'daycount' => '0', - 'timestamp' => '1471428153', + 'path' => 'admin/help/shortcut', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/shortcut', + 'title' => 'shortcut', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '4', - 'totalcount' => '1', - 'daycount' => '0', - 'timestamp' => '1478755275', + 'path' => 'admin/help/simpletest', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/simpletest', + 'title' => 'simpletest', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '5', - 'totalcount' => '1', - 'daycount' => '0', - 'timestamp' => '1478755314', + 'path' => 'admin/help/statistics', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/statistics', + 'title' => 'statistics', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '6', - 'totalcount' => '2', - 'daycount' => '0', - 'timestamp' => '1504715439', + 'path' => 'admin/help/syslog', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/syslog', + 'title' => 'syslog', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '7', - 'totalcount' => '2', - 'daycount' => '0', - 'timestamp' => '1504715438', + 'path' => 'admin/help/system', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/system', + 'title' => 'system', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '8', - 'totalcount' => '1', - 'daycount' => '1', - 'timestamp' => '1517542515', + 'path' => 'admin/help/taxonomy', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/taxonomy', + 'title' => 'taxonomy', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '9', - 'totalcount' => '1', - 'daycount' => '1', - 'timestamp' => '1517542607', + 'path' => 'admin/help/text', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/text', + 'title' => 'text', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '10', - 'totalcount' => '1', - 'daycount' => '1', - 'timestamp' => '1517542688', -)) -->execute(); - -$connection->schema()->createTable('node_revision', array( - 'fields' => array( - 'nid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - 'unsigned' => TRUE, - ), - 'vid' => array( - 'type' => 'serial', - 'not null' => TRUE, - 'size' => 'normal', - 'unsigned' => TRUE, - ), - 'uid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'title' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'log' => array( - 'type' => 'text', - 'not null' => TRUE, - 'size' => 'normal', - ), - 'timestamp' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'status' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '1', - ), - 'comment' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'promote' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'sticky' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - ), - 'primary key' => array( - 'vid', - ), - 'mysql_character_set' => 'utf8', -)); - -$connection->insert('node_revision') -->fields(array( - 'nid', - 'vid', - 'uid', - 'title', - 'log', - 'timestamp', - 'status', - 'comment', - 'promote', - 'sticky', + 'path' => 'admin/help/toolbar', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/toolbar', + 'title' => 'toolbar', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '1', - 'vid' => '1', - 'uid' => '1', - 'title' => 'A Node', - 'log' => '', - 'timestamp' => '1441032132', - 'status' => '1', - 'comment' => '2', - 'promote' => '1', - 'sticky' => '0', + 'path' => 'admin/help/tracker', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/tracker', + 'title' => 'tracker', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '2', - 'vid' => '2', - 'uid' => '1', - 'title' => 'The thing about Deep Space 9', - 'log' => '', - 'timestamp' => '1441306832', - 'status' => '1', - 'comment' => '2', - 'promote' => '1', - 'sticky' => '0', + 'path' => 'admin/help/translation', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/translation', + 'title' => 'translation', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '3', - 'vid' => '3', - 'uid' => '1', - 'title' => 'is - The thing about Deep Space 9', - 'log' => '', - 'timestamp' => '1471428152', - 'status' => '1', - 'comment' => '2', - 'promote' => '1', - 'sticky' => '0', + 'path' => 'admin/help/trigger', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/trigger', + 'title' => 'trigger', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '4', - 'vid' => '4', - 'uid' => '1', - 'title' => 'is - The thing about Firefly', - 'log' => '', - 'timestamp' => '1478755274', - 'status' => '1', - 'comment' => '1', - 'promote' => '1', - 'sticky' => '0', + 'path' => 'admin/help/update', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/update', + 'title' => 'update', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '5', - 'vid' => '5', - 'uid' => '1', - 'title' => 'en - The thing about Firefly', - 'log' => '', - 'timestamp' => '1478755314', - 'status' => '1', - 'comment' => '1', - 'promote' => '1', - 'sticky' => '0', + 'path' => 'admin/help/user', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'help_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/help/user', + 'title' => 'user', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/help/help.admin.inc', )) ->values(array( - 'nid' => '6', - 'vid' => '6', - 'uid' => '1', - 'title' => 'Comments are closed :-(', - 'log' => '', - 'timestamp' => '1504715414', - 'status' => '1', - 'comment' => '1', - 'promote' => '0', - 'sticky' => '0', + 'path' => 'admin/index', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'system_admin_index', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '1', + 'tab_parent' => 'admin', + 'tab_root' => 'admin', + 'title' => 'Index', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '-18', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'nid' => '7', - 'vid' => '7', - 'uid' => '1', - 'title' => 'Comments are open :-)', - 'log' => '', - 'timestamp' => '1504715432', - 'status' => '1', - 'comment' => '2', - 'promote' => '0', - 'sticky' => '0', + 'path' => 'admin/modules', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/modules', + 'title' => 'Modules', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'Extend site functionality.', + 'position' => '', + 'weight' => '-2', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'nid' => '8', - 'vid' => '8', - 'uid' => '1', - 'title' => 'Paragraphs Migration Test Single Language', - 'log' => '', - 'timestamp' => '1517542515', - 'status' => '1', - 'comment' => '2', - 'promote' => '1', - 'sticky' => '0', + 'path' => 'admin/modules/install', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'update_manager_access', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:27:"update_manager_install_form";i:1;s:6:"module";}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'admin/modules', + 'tab_root' => 'admin/modules', + 'title' => 'Install new module', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '388', + 'description' => '', + 'position' => '', + 'weight' => '25', + 'include_file' => 'modules/update/update.manager.inc', )) ->values(array( - 'nid' => '9', - 'vid' => '9', - 'uid' => '1', - 'title' => 'Paragraphs Migration Test Translatable English', - 'log' => '', - 'timestamp' => '1517542607', - 'status' => '1', - 'comment' => '2', - 'promote' => '1', - 'sticky' => '0', + 'path' => 'admin/modules/list', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'admin/modules', + 'tab_root' => 'admin/modules', + 'title' => 'List', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'nid' => '10', - 'vid' => '10', - 'uid' => '1', - 'title' => 'Paragraphs Migration Test Translatable Icelandic', - 'log' => '', - 'timestamp' => '1517542688', - 'status' => '1', - 'comment' => '2', - 'promote' => '1', - 'sticky' => '0', + 'path' => 'admin/modules/list/confirm', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/modules/list/confirm', + 'title' => 'List', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/system/system.admin.inc', )) -->execute(); - -$connection->schema()->createTable('node_type', array( - 'fields' => array( - 'type' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '32', - ), - 'name' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'base' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - ), - 'module' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - ), - 'description' => array( - 'type' => 'text', - 'not null' => TRUE, - 'size' => 'normal', - ), - 'help' => array( - 'type' => 'text', - 'not null' => TRUE, - 'size' => 'normal', - ), - 'has_title' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'unsigned' => TRUE, - ), - 'title_label' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'custom' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'modified' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'locked' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'disabled' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'orig_type' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - ), - 'primary key' => array( - 'type', - ), - 'mysql_character_set' => 'utf8', -)); - -$connection->insert('node_type') -->fields(array( - 'type', - 'name', - 'base', - 'module', - 'description', - 'help', - 'has_title', - 'title_label', - 'custom', - 'modified', - 'locked', - 'disabled', - 'orig_type', +->values(array( + 'path' => 'admin/modules/uninstall', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'admin/modules', + 'tab_root' => 'admin/modules', + 'title' => 'Uninstall', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '20', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'type' => 'article', - 'name' => 'Article', - 'base' => 'node_content', - 'module' => 'node', - 'description' => 'Use articles for time-sensitive content like news, press releases or blog posts.', - 'help' => 'Help text for articles', - 'has_title' => '1', - 'title_label' => 'Title', - 'custom' => '1', - 'modified' => '1', - 'locked' => '0', - 'disabled' => '0', - 'orig_type' => 'article', + 'path' => 'admin/modules/uninstall/confirm', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:18:"administer modules";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/modules/uninstall/confirm', + 'title' => 'Uninstall', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'type' => 'blog', - 'name' => 'Blog entry', - 'base' => 'blog', - 'module' => 'blog', - 'description' => 'Use for multi-user blogs. Every user gets a personal blog.', - 'help' => 'Blog away, good sir!', - 'has_title' => '1', - 'title_label' => 'Title', - 'custom' => '0', - 'modified' => '1', - 'locked' => '1', - 'disabled' => '0', - 'orig_type' => 'blog', + 'path' => 'admin/modules/update', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'update_manager_access', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:26:"update_manager_update_form";i:1;s:6:"module";}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'admin/modules', + 'tab_root' => 'admin/modules', + 'title' => 'Update', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '10', + 'include_file' => 'modules/update/update.manager.inc', )) ->values(array( - 'type' => 'book', - 'name' => 'Book page', - 'base' => 'node_content', - 'module' => 'node', - 'description' => 'Books have a built-in hierarchical navigation. Use for handbooks or tutorials.', - 'help' => '', - 'has_title' => '1', - 'title_label' => 'Title', - 'custom' => '1', - 'modified' => '1', - 'locked' => '0', - 'disabled' => '0', - 'orig_type' => 'book', + 'path' => 'admin/people', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:16:"administer users";}', + 'page_callback' => 'user_admin', + 'page_arguments' => 'a:1:{i:0;s:4:"list";}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/people', + 'title' => 'People', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'Manage user accounts, roles, and permissions.', + 'position' => 'left', + 'weight' => '-4', + 'include_file' => 'modules/user/user.admin.inc', )) ->values(array( - 'type' => 'forum', - 'name' => 'Forum topic', - 'base' => 'forum', - 'module' => 'forum', - 'description' => 'A forum topic starts a new discussion thread within a forum.', - 'help' => 'No name-calling, no flame wars. Be nice.', - 'has_title' => '1', - 'title_label' => 'Subject', - 'custom' => '0', - 'modified' => '1', - 'locked' => '1', - 'disabled' => '0', - 'orig_type' => 'forum', + 'path' => 'admin/people/create', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:16:"administer users";}', + 'page_callback' => 'user_admin', + 'page_arguments' => 'a:1:{i:0;s:6:"create";}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'admin/people', + 'tab_root' => 'admin/people', + 'title' => 'Add user', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '388', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/user/user.admin.inc', )) ->values(array( - 'type' => 'page', - 'name' => 'Basic page', - 'base' => 'node_content', - 'module' => 'node', - 'description' => "Use basic pages for your static content, such as an 'About us' page.", - 'help' => 'Help text for basic pages', - 'has_title' => '1', - 'title_label' => 'Title', - 'custom' => '1', - 'modified' => '1', - 'locked' => '0', - 'disabled' => '0', - 'orig_type' => 'page', + 'path' => 'admin/people/people', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:16:"administer users";}', + 'page_callback' => 'user_admin', + 'page_arguments' => 'a:1:{i:0;s:4:"list";}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'admin/people', + 'tab_root' => 'admin/people', + 'title' => 'List', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => 'Find and manage people interacting with your site.', + 'position' => '', + 'weight' => '-10', + 'include_file' => 'modules/user/user.admin.inc', )) ->values(array( - 'type' => 'paragraphs_migration_test', - 'name' => 'Paragraphs Migration Test', - 'base' => 'node_content', - 'module' => 'node', - 'description' => 'Paragraphs migration test content type', - 'help' => '', - 'has_title' => '1', - 'title_label' => 'Title', - 'custom' => '1', - 'modified' => '1', - 'locked' => '0', - 'disabled' => '0', - 'orig_type' => 'paragraphs_migration_test', + 'path' => 'admin/people/permissions', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:22:"user_admin_permissions";}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'admin/people', + 'tab_root' => 'admin/people', + 'title' => 'Permissions', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => 'Determine access to features by selecting permissions for roles.', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/user/user.admin.inc', )) ->values(array( - 'type' => 'test_content_type', - 'name' => 'Test content type', - 'base' => 'node_content', - 'module' => 'node', - 'description' => 'This is the description of the test content type.', - 'help' => 'Help text for test content type', - 'has_title' => '1', - 'title_label' => 'Title', - 'custom' => '1', - 'modified' => '1', - 'locked' => '0', - 'disabled' => '0', - 'orig_type' => 'test_content_type', + 'path' => 'admin/people/permissions/list', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:22:"user_admin_permissions";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/people/permissions', + 'tab_root' => 'admin/people', + 'title' => 'Permissions', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => 'Determine access to features by selecting permissions for roles.', + 'position' => '', + 'weight' => '-8', + 'include_file' => 'modules/user/user.admin.inc', )) -->execute(); - -$connection->schema()->createTable('paragraphs_bundle', array( - 'fields' => array( - 'bundle' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '32', - ), - 'name' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'locked' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'tiny', - 'default' => '0', - ), - ), - 'primary key' => array( - 'bundle', - ), - 'mysql_character_set' => 'utf8', -)); - -$connection->insert('paragraphs_bundle') -->fields(array( - 'bundle', - 'name', - 'locked', +->values(array( + 'path' => 'admin/people/permissions/roles', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:16:"user_admin_roles";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/people/permissions', + 'tab_root' => 'admin/people', + 'title' => 'Roles', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => 'List, edit, or add user roles.', + 'position' => '', + 'weight' => '-5', + 'include_file' => 'modules/user/user.admin.inc', )) ->values(array( - 'bundle' => 'paragraph_bundle_test', - 'name' => 'Paragraph Bundle Test', - 'locked' => '1', + 'path' => 'admin/people/permissions/roles/delete/%', + 'load_functions' => 'a:1:{i:5;s:14:"user_role_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_role_edit_access', + 'access_arguments' => 'a:1:{i:0;i:5;}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:30:"user_admin_role_delete_confirm";i:1;i:5;}', + 'delivery_callback' => '', + 'fit' => '62', + 'number_parts' => '6', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/people/permissions/roles/delete/%', + 'title' => 'Delete role', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/user/user.admin.inc', )) -->execute(); - -$connection->schema()->createTable('paragraphs_item', array( - 'fields' => array( - 'item_id' => array( - 'type' => 'serial', - 'not null' => TRUE, - 'size' => 'normal', - ), - 'revision_id' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - ), - 'bundle' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '32', - ), - 'field_name' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '32', - ), - 'archived' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - ), - 'primary key' => array( - 'item_id', - ), - 'mysql_character_set' => 'utf8', -)); - -$connection->insert('paragraphs_item') -->fields(array( - 'item_id', - 'revision_id', - 'bundle', - 'field_name', - 'archived', +->values(array( + 'path' => 'admin/people/permissions/roles/edit/%', + 'load_functions' => 'a:1:{i:5;s:14:"user_role_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_role_edit_access', + 'access_arguments' => 'a:1:{i:0;i:5;}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:15:"user_admin_role";i:1;i:5;}', + 'delivery_callback' => '', + 'fit' => '62', + 'number_parts' => '6', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/people/permissions/roles/edit/%', + 'title' => 'Edit role', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/user/user.admin.inc', )) ->values(array( - 'item_id' => '1', - 'revision_id' => '1', - 'bundle' => 'paragraph_bundle_test', - 'field_name' => 'field_paragraph_test', - 'archived' => '0', + 'path' => 'admin/reports', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}', + 'page_callback' => 'system_admin_menu_block_page', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/reports', + 'title' => 'Reports', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'View reports, updates, and errors.', + 'position' => 'left', + 'weight' => '5', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'item_id' => '2', - 'revision_id' => '2', - 'bundle' => 'paragraph_bundle_test', - 'field_name' => 'field_paragraph_test', - 'archived' => '0', + 'path' => 'admin/reports/access-denied', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}', + 'page_callback' => 'dblog_top', + 'page_arguments' => 'a:1:{i:0;s:13:"access denied";}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/reports/access-denied', + 'title' => "Top 'access denied' errors", + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => "View 'access denied' errors (403s).", + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/dblog/dblog.admin.inc', )) ->values(array( - 'item_id' => '3', - 'revision_id' => '3', - 'bundle' => 'paragraph_bundle_test', - 'field_name' => 'field_paragraph_test', - 'archived' => '0', + 'path' => 'admin/reports/access/%', + 'load_functions' => 'a:1:{i:3;N;}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}', + 'page_callback' => 'statistics_access_log', + 'page_arguments' => 'a:1:{i:0;i:3;}', + 'delivery_callback' => '', + 'fit' => '14', + 'number_parts' => '4', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/reports/access/%', + 'title' => 'Details', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'View access log.', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/statistics/statistics.admin.inc', )) ->values(array( - 'item_id' => '4', - 'revision_id' => '4', - 'bundle' => 'paragraph_bundle_test', - 'field_name' => 'field_paragraph_test', - 'archived' => '0', + 'path' => 'admin/reports/dblog', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}', + 'page_callback' => 'dblog_overview', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/reports/dblog', + 'title' => 'Recent log messages', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'View events that have recently been logged.', + 'position' => '', + 'weight' => '-1', + 'include_file' => 'modules/dblog/dblog.admin.inc', )) ->values(array( - 'item_id' => '5', - 'revision_id' => '5', - 'bundle' => 'paragraph_bundle_test', - 'field_name' => 'field_paragraph_test', - 'archived' => '0', + 'path' => 'admin/reports/event/%', + 'load_functions' => 'a:1:{i:3;N;}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}', + 'page_callback' => 'dblog_event', + 'page_arguments' => 'a:1:{i:0;i:3;}', + 'delivery_callback' => '', + 'fit' => '14', + 'number_parts' => '4', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/reports/event/%', + 'title' => 'Details', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/dblog/dblog.admin.inc', )) -->execute(); - -$connection->schema()->createTable('paragraphs_item_revision', array( - 'fields' => array( - 'revision_id' => array( - 'type' => 'serial', - 'not null' => TRUE, - 'size' => 'normal', - ), - 'item_id' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - ), - ), - 'primary key' => array( - 'revision_id', - ), - 'indexes' => array( - 'item_id' => array( - 'item_id', - ), - ), - 'mysql_character_set' => 'utf8', -)); - -$connection->insert('paragraphs_item_revision') -->fields(array( - 'revision_id', - 'item_id', +->values(array( + 'path' => 'admin/reports/fields', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}', + 'page_callback' => 'field_ui_fields_list', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/reports/fields', + 'title' => 'Field list', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'Overview of fields on all entity types.', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'revision_id' => '1', - 'item_id' => '1', + 'path' => 'admin/reports/hits', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}', + 'page_callback' => 'statistics_recent_hits', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/reports/hits', + 'title' => 'Recent hits', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'View pages that have recently been visited.', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/statistics/statistics.admin.inc', )) ->values(array( - 'revision_id' => '2', - 'item_id' => '2', + 'path' => 'admin/reports/page-not-found', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}', + 'page_callback' => 'dblog_top', + 'page_arguments' => 'a:1:{i:0;s:14:"page not found";}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/reports/page-not-found', + 'title' => "Top 'page not found' errors", + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => "View 'page not found' errors (404s).", + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/dblog/dblog.admin.inc', )) ->values(array( - 'revision_id' => '3', - 'item_id' => '3', + 'path' => 'admin/reports/pages', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}', + 'page_callback' => 'statistics_top_pages', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/reports/pages', + 'title' => 'Top pages', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'View pages that have been hit frequently.', + 'position' => '', + 'weight' => '1', + 'include_file' => 'modules/statistics/statistics.admin.inc', )) ->values(array( - 'revision_id' => '4', - 'item_id' => '4', + 'path' => 'admin/reports/referrers', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}', + 'page_callback' => 'statistics_top_referrers', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/reports/referrers', + 'title' => 'Top referrers', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'View top referrers.', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/statistics/statistics.admin.inc', )) ->values(array( - 'revision_id' => '5', - 'item_id' => '5', + 'path' => 'admin/reports/search', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}', + 'page_callback' => 'dblog_top', + 'page_arguments' => 'a:1:{i:0;s:6:"search";}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/reports/search', + 'title' => 'Top search phrases', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'View most popular search phrases.', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/dblog/dblog.admin.inc', )) -->execute(); - -$connection->schema()->createTable('queue', array( - 'fields' => array( - 'item_id' => array( - 'type' => 'serial', - 'not null' => TRUE, - 'size' => 'normal', - 'unsigned' => TRUE, - ), - 'name' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'data' => array( - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'normal', - ), - 'expire' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - 'created' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - ), - 'primary key' => array( - 'item_id', - ), - 'mysql_character_set' => 'utf8', -)); - -$connection->insert('queue') -->fields(array( - 'item_id', - 'name', - 'data', - 'expire', - 'created', +->values(array( + 'path' => 'admin/reports/status', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'system_status', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/reports/status', + 'title' => 'Status report', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => "Get a status report about your site's operation and any detected problems.", + 'position' => '', + 'weight' => '-60', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'item_id' => '15', - 'name' => 'update_fetch_tasks', - 'data' => 'a:8:{s:4:"name";s:6:"drupal";s:4:"info";a:6:{s:4:"name";s:10:"Aggregator";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:16:"_info_file_ctime";i:1517536515;}s:9:"datestamp";s:10:"1498069849";s:8:"includes";a:42:{s:10:"aggregator";s:10:"Aggregator";s:5:"block";s:5:"Block";s:4:"blog";s:4:"Blog";s:4:"book";s:4:"Book";s:5:"color";s:5:"Color";s:7:"comment";s:7:"Comment";s:7:"contact";s:7:"Contact";s:10:"contextual";s:16:"Contextual links";s:5:"dblog";s:16:"Database logging";s:5:"field";s:5:"Field";s:17:"field_sql_storage";s:17:"Field SQL storage";s:8:"field_ui";s:8:"Field UI";s:4:"file";s:4:"File";s:6:"filter";s:6:"Filter";s:5:"forum";s:5:"Forum";s:4:"help";s:4:"Help";s:5:"image";s:5:"Image";s:4:"list";s:4:"List";s:6:"locale";s:6:"Locale";s:4:"menu";s:4:"Menu";s:4:"node";s:4:"Node";s:6:"number";s:6:"Number";s:7:"options";s:7:"Options";s:4:"path";s:4:"Path";s:3:"php";s:10:"PHP filter";s:3:"rdf";s:3:"RDF";s:6:"search";s:6:"Search";s:8:"shortcut";s:8:"Shortcut";s:10:"simpletest";s:7:"Testing";s:10:"statistics";s:10:"Statistics";s:6:"syslog";s:6:"Syslog";s:6:"system";s:6:"System";s:8:"taxonomy";s:8:"Taxonomy";s:4:"text";s:4:"Text";s:7:"toolbar";s:7:"Toolbar";s:7:"tracker";s:7:"Tracker";s:11:"translation";s:19:"Content translation";s:7:"trigger";s:7:"Trigger";s:6:"update";s:14:"Update manager";s:4:"user";s:4:"User";s:6:"bartik";s:6:"Bartik";s:5:"seven";s:5:"Seven";}s:12:"project_type";s:4:"core";s:14:"project_status";b:1;s:10:"sub_themes";a:0:{}s:11:"base_themes";a:0:{}}', - 'expire' => '0', - 'created' => '1517540663', + 'path' => 'admin/reports/status/php', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'system_php', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/reports/status/php', + 'title' => 'PHP', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'item_id' => '16', - 'name' => 'update_fetch_tasks', - 'data' => 'a:8:{s:4:"name";s:6:"ctools";s:4:"info";a:6:{s:4:"name";s:11:"Chaos tools";s:7:"package";s:16:"Chaos tool suite";s:7:"version";s:8:"7.x-1.12";s:7:"project";s:6:"ctools";s:9:"datestamp";s:10:"1479787162";s:16:"_info_file_ctime";i:1517536924;}s:9:"datestamp";s:10:"1479787162";s:8:"includes";a:1:{s:6:"ctools";s:11:"Chaos tools";}s:12:"project_type";s:6:"module";s:14:"project_status";b:1;s:10:"sub_themes";a:0:{}s:11:"base_themes";a:0:{}}', - 'expire' => '0', - 'created' => '1517540663', + 'path' => 'admin/reports/status/rebuild', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:30:"node_configure_rebuild_confirm";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/reports/status/rebuild', + 'title' => 'Rebuild permissions', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/node/node.admin.inc', )) ->values(array( - 'item_id' => '17', - 'name' => 'update_fetch_tasks', - 'data' => 'a:8:{s:4:"name";s:4:"date";s:4:"info";a:6:{s:4:"name";s:4:"Date";s:7:"package";s:9:"Date/Time";s:7:"version";s:8:"7.x-2.10";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1491562090";s:16:"_info_file_ctime";i:1517536920;}s:9:"datestamp";s:10:"1491562090";s:8:"includes";a:2:{s:4:"date";s:4:"Date";s:8:"date_api";s:8:"Date API";}s:12:"project_type";s:6:"module";s:14:"project_status";b:1;s:10:"sub_themes";a:0:{}s:11:"base_themes";a:0:{}}', - 'expire' => '0', - 'created' => '1517540663', + 'path' => 'admin/reports/status/run-cron', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'system_run_cron', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/reports/status/run-cron', + 'title' => 'Run cron', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'item_id' => '18', - 'name' => 'update_fetch_tasks', - 'data' => 'a:8:{s:4:"name";s:5:"email";s:4:"info";a:6:{s:4:"name";s:5:"Email";s:7:"package";s:6:"Fields";s:7:"version";s:7:"7.x-1.3";s:7:"project";s:5:"email";s:9:"datestamp";s:10:"1397134155";s:16:"_info_file_ctime";i:1517536920;}s:9:"datestamp";s:10:"1397134155";s:8:"includes";a:1:{s:5:"email";s:5:"Email";}s:12:"project_type";s:6:"module";s:14:"project_status";b:1;s:10:"sub_themes";a:0:{}s:11:"base_themes";a:0:{}}', - 'expire' => '0', - 'created' => '1517540663', + 'path' => 'admin/reports/updates', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'update_status', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/reports/updates', + 'title' => 'Available updates', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'Get a status report about available updates for your installed modules and themes.', + 'position' => '', + 'weight' => '-50', + 'include_file' => 'modules/update/update.report.inc', )) ->values(array( - 'item_id' => '19', - 'name' => 'update_fetch_tasks', - 'data' => 'a:8:{s:4:"name";s:6:"entity";s:4:"info";a:6:{s:4:"name";s:10:"Entity API";s:7:"version";s:7:"7.x-1.8";s:7:"project";s:6:"entity";s:9:"datestamp";s:10:"1474546503";s:7:"package";s:5:"Other";s:16:"_info_file_ctime";i:1517536923;}s:9:"datestamp";s:10:"1474546503";s:8:"includes";a:1:{s:6:"entity";s:10:"Entity API";}s:12:"project_type";s:6:"module";s:14:"project_status";b:1;s:10:"sub_themes";a:0:{}s:11:"base_themes";a:0:{}}', - 'expire' => '0', - 'created' => '1517540663', + 'path' => 'admin/reports/updates/check', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'update_manual_status', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/reports/updates/check', + 'title' => 'Manual update check', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/update/update.fetch.inc', )) ->values(array( - 'item_id' => '20', - 'name' => 'update_fetch_tasks', - 'data' => 'a:8:{s:4:"name";s:15:"entityreference";s:4:"info";a:6:{s:4:"name";s:16:"Entity Reference";s:7:"package";s:6:"Fields";s:7:"version";s:7:"7.x-1.5";s:7:"project";s:15:"entityreference";s:9:"datestamp";s:10:"1502895850";s:16:"_info_file_ctime";i:1517536924;}s:9:"datestamp";s:10:"1502895850";s:8:"includes";a:1:{s:15:"entityreference";s:16:"Entity Reference";}s:12:"project_type";s:6:"module";s:14:"project_status";b:1;s:10:"sub_themes";a:0:{}s:11:"base_themes";a:0:{}}', - 'expire' => '0', - 'created' => '1517540663', + 'path' => 'admin/reports/updates/install', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'update_manager_access', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:27:"update_manager_install_form";i:1;s:6:"report";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/reports/updates', + 'tab_root' => 'admin/reports/updates', + 'title' => 'Install new module or theme', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '388', + 'description' => '', + 'position' => '', + 'weight' => '25', + 'include_file' => 'modules/update/update.manager.inc', )) ->values(array( - 'item_id' => '21', - 'name' => 'update_fetch_tasks', - 'data' => 'a:8:{s:4:"name";s:16:"field_collection";s:4:"info";a:6:{s:4:"name";s:16:"Field collection";s:7:"package";s:6:"Fields";s:7:"version";s:14:"7.x-1.0-beta12";s:7:"project";s:16:"field_collection";s:9:"datestamp";s:10:"1479402861";s:16:"_info_file_ctime";i:1517536925;}s:9:"datestamp";s:10:"1479402861";s:8:"includes";a:1:{s:16:"field_collection";s:16:"Field collection";}s:12:"project_type";s:6:"module";s:14:"project_status";b:1;s:10:"sub_themes";a:0:{}s:11:"base_themes";a:0:{}}', - 'expire' => '0', - 'created' => '1517540663', + 'path' => 'admin/reports/updates/list', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'update_status', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/reports/updates', + 'tab_root' => 'admin/reports/updates', + 'title' => 'List', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/update/update.report.inc', )) ->values(array( - 'item_id' => '22', - 'name' => 'update_fetch_tasks', - 'data' => 'a:8:{s:4:"name";s:4:"i18n";s:4:"info";a:6:{s:4:"name";s:20:"Internationalization";s:7:"package";s:35:"Multilingual - Internationalization";s:7:"version";s:8:"7.x-1.22";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1511689989";s:16:"_info_file_ctime";i:1517536923;}s:9:"datestamp";s:10:"1511689989";s:8:"includes";a:1:{s:4:"i18n";s:20:"Internationalization";}s:12:"project_type";s:6:"module";s:14:"project_status";b:1;s:10:"sub_themes";a:0:{}s:11:"base_themes";a:0:{}}', - 'expire' => '0', - 'created' => '1517540663', + 'path' => 'admin/reports/updates/settings', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:15:"update_settings";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/reports/updates', + 'tab_root' => 'admin/reports/updates', + 'title' => 'Settings', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '50', + 'include_file' => 'modules/update/update.settings.inc', )) ->values(array( - 'item_id' => '23', - 'name' => 'update_fetch_tasks', - 'data' => 'a:8:{s:4:"name";s:4:"link";s:4:"info";a:6:{s:4:"name";s:4:"Link";s:7:"package";s:6:"Fields";s:7:"version";s:7:"7.x-1.4";s:7:"project";s:4:"link";s:9:"datestamp";s:10:"1452830642";s:16:"_info_file_ctime";i:1517536921;}s:9:"datestamp";s:10:"1452830642";s:8:"includes";a:1:{s:4:"link";s:4:"Link";}s:12:"project_type";s:6:"module";s:14:"project_status";b:1;s:10:"sub_themes";a:0:{}s:11:"base_themes";a:0:{}}', - 'expire' => '0', - 'created' => '1517540663', + 'path' => 'admin/reports/updates/update', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'update_manager_access', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:26:"update_manager_update_form";i:1;s:6:"report";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/reports/updates', + 'tab_root' => 'admin/reports/updates', + 'title' => 'Update', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '10', + 'include_file' => 'modules/update/update.manager.inc', )) ->values(array( - 'item_id' => '24', - 'name' => 'update_fetch_tasks', - 'data' => 'a:8:{s:4:"name";s:10:"paragraphs";s:4:"info";a:6:{s:4:"name";s:10:"Paragraphs";s:7:"package";s:10:"Paragraphs";s:7:"version";s:11:"7.x-1.0-rc5";s:7:"project";s:10:"paragraphs";s:9:"datestamp";s:10:"1487261293";s:16:"_info_file_ctime";i:1517536925;}s:9:"datestamp";s:10:"1487261293";s:8:"includes";a:2:{s:10:"paragraphs";s:10:"Paragraphs";s:29:"paragraphs_bundle_permissions";s:29:"Paragraphs Bundle Permissions";}s:12:"project_type";s:6:"module";s:14:"project_status";b:1;s:10:"sub_themes";a:0:{}s:11:"base_themes";a:0:{}}', - 'expire' => '0', - 'created' => '1517540663', + 'path' => 'admin/reports/visitors', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}', + 'page_callback' => 'statistics_top_visitors', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/reports/visitors', + 'title' => 'Top visitors', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'View visitors that hit many pages.', + 'position' => '', + 'weight' => '2', + 'include_file' => 'modules/statistics/statistics.admin.inc', )) ->values(array( - 'item_id' => '25', - 'name' => 'update_fetch_tasks', - 'data' => 'a:8:{s:4:"name";s:5:"phone";s:4:"info";a:6:{s:4:"name";s:5:"Phone";s:7:"package";s:6:"Fields";s:7:"version";s:13:"7.x-1.0-beta1";s:7:"project";s:5:"phone";s:9:"datestamp";s:10:"1389732224";s:16:"_info_file_ctime";i:1517536921;}s:9:"datestamp";s:10:"1389732224";s:8:"includes";a:1:{s:5:"phone";s:5:"Phone";}s:12:"project_type";s:6:"module";s:14:"project_status";b:1;s:10:"sub_themes";a:0:{}s:11:"base_themes";a:0:{}}', - 'expire' => '0', - 'created' => '1517540663', + 'path' => 'admin/structure', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'system_admin_menu_block_page', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure', + 'title' => 'Structure', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'Administer blocks, content types, menus, etc.', + 'position' => 'right', + 'weight' => '-8', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'item_id' => '26', - 'name' => 'update_fetch_tasks', - 'data' => 'a:8:{s:4:"name";s:8:"variable";s:4:"info";a:6:{s:4:"name";s:8:"Variable";s:7:"package";s:8:"Variable";s:7:"version";s:7:"7.x-2.5";s:7:"project";s:8:"variable";s:9:"datestamp";s:10:"1398250128";s:16:"_info_file_ctime";i:1517537044;}s:9:"datestamp";s:10:"1398250128";s:8:"includes";a:1:{s:8:"variable";s:8:"Variable";}s:12:"project_type";s:6:"module";s:14:"project_status";b:1;s:10:"sub_themes";a:0:{}s:11:"base_themes";a:0:{}}', - 'expire' => '0', - 'created' => '1517540663', + 'path' => 'admin/structure/block', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}', + 'page_callback' => 'block_admin_display', + 'page_arguments' => 'a:1:{i:0;s:6:"bartik";}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/block', + 'title' => 'Blocks', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => "Configure what block content appears in your site's sidebars and other regions.", + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/block/block.admin.inc', )) ->values(array( - 'item_id' => '27', - 'name' => 'update_fetch_tasks', - 'data' => 'a:8:{s:4:"name";s:5:"views";s:4:"info";a:6:{s:4:"name";s:5:"Views";s:7:"package";s:5:"Views";s:7:"version";s:8:"7.x-3.18";s:7:"project";s:5:"views";s:9:"datestamp";s:10:"1503495103";s:16:"_info_file_ctime";i:1517536925;}s:9:"datestamp";s:10:"1503495103";s:8:"includes";a:2:{s:5:"views";s:5:"Views";s:8:"views_ui";s:8:"Views UI";}s:12:"project_type";s:6:"module";s:14:"project_status";b:1;s:10:"sub_themes";a:0:{}s:11:"base_themes";a:0:{}}', - 'expire' => '0', - 'created' => '1517540663', -)) -->execute(); - -$connection->schema()->createTable('rdf_mapping', array( - 'fields' => array( - 'type' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '128', - ), - 'bundle' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '128', - ), - 'mapping' => array( - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'normal', - ), - ), - 'primary key' => array( - 'type', - 'bundle', - ), - 'mysql_character_set' => 'utf8', -)); - -$connection->insert('rdf_mapping') -->fields(array( - 'type', - 'bundle', - 'mapping', + 'path' => 'admin/structure/block/add', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/structure/block', + 'tab_root' => 'admin/structure/block', + 'title' => 'Add block', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '388', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/block/block.admin.inc', )) ->values(array( - 'type' => 'node', - 'bundle' => 'article', - 'mapping' => 'a:11:{s:11:"field_image";a:2:{s:10:"predicates";a:2:{i:0;s:8:"og:image";i:1;s:12:"rdfs:seeAlso";}s:4:"type";s:3:"rel";}s:10:"field_tags";a:2:{s:10:"predicates";a:1:{i:0;s:10:"dc:subject";}s:4:"type";s:3:"rel";}s:7:"rdftype";a:2:{i:0;s:9:"sioc:Item";i:1;s:13:"foaf:Document";}s:5:"title";a:1:{s:10:"predicates";a:1:{i:0;s:8:"dc:title";}}s:7:"created";a:3:{s:10:"predicates";a:2:{i:0;s:7:"dc:date";i:1;s:10:"dc:created";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}s:7:"changed";a:3:{s:10:"predicates";a:1:{i:0;s:11:"dc:modified";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}s:4:"body";a:1:{s:10:"predicates";a:1:{i:0;s:15:"content:encoded";}}s:3:"uid";a:2:{s:10:"predicates";a:1:{i:0;s:16:"sioc:has_creator";}s:4:"type";s:3:"rel";}s:4:"name";a:1:{s:10:"predicates";a:1:{i:0;s:9:"foaf:name";}}s:13:"comment_count";a:2:{s:10:"predicates";a:1:{i:0;s:16:"sioc:num_replies";}s:8:"datatype";s:11:"xsd:integer";}s:13:"last_activity";a:3:{s:10:"predicates";a:1:{i:0;s:23:"sioc:last_activity_date";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}}', + 'path' => 'admin/structure/block/demo/bartik', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '_block_themes_access', + 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:25:"themes/bartik/bartik.info";s:4:"name";s:6:"bartik";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{s:4:"name";s:6:"Bartik";s:11:"description";s:48:"A flexible, recolorable theme with many regions.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:3:{s:14:"css/layout.css";s:28:"themes/bartik/css/layout.css";s:13:"css/style.css";s:27:"themes/bartik/css/style.css";s:14:"css/colors.css";s:28:"themes/bartik/css/colors.css";}s:5:"print";a:1:{s:13:"css/print.css";s:27:"themes/bartik/css/print.css";}}s:7:"regions";a:17:{s:6:"header";s:6:"Header";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:11:"highlighted";s:11:"Highlighted";s:8:"featured";s:8:"Featured";s:7:"content";s:7:"Content";s:13:"sidebar_first";s:13:"Sidebar first";s:14:"sidebar_second";s:14:"Sidebar second";s:14:"triptych_first";s:14:"Triptych first";s:15:"triptych_middle";s:15:"Triptych middle";s:13:"triptych_last";s:13:"Triptych last";s:18:"footer_firstcolumn";s:19:"Footer first column";s:19:"footer_secondcolumn";s:20:"Footer second column";s:18:"footer_thirdcolumn";s:19:"Footer third column";s:19:"footer_fourthcolumn";s:20:"Footer fourth column";s:6:"footer";s:6:"Footer";}s:8:"settings";a:1:{s:20:"shortcut_module_link";s:1:"0";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:6:"engine";s:11:"phptemplate";s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:28:"themes/bartik/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1498069849;s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:3:{s:14:"css/layout.css";s:28:"themes/bartik/css/layout.css";s:13:"css/style.css";s:27:"themes/bartik/css/style.css";s:14:"css/colors.css";s:28:"themes/bartik/css/colors.css";}s:5:"print";a:1:{s:13:"css/print.css";s:27:"themes/bartik/css/print.css";}}s:6:"engine";s:11:"phptemplate";}}', + 'page_callback' => 'block_admin_demo', + 'page_arguments' => 'a:1:{i:0;s:6:"bartik";}', + 'delivery_callback' => '', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/block/demo/bartik', + 'title' => 'Bartik', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '_block_custom_theme', + 'theme_arguments' => 'a:1:{i:0;s:6:"bartik";}', + 'type' => '0', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/block/block.admin.inc', )) ->values(array( - 'type' => 'node', - 'bundle' => 'blog', - 'mapping' => 'a:9:{s:7:"rdftype";a:2:{i:0;s:9:"sioc:Post";i:1;s:14:"sioct:BlogPost";}s:5:"title";a:1:{s:10:"predicates";a:1:{i:0;s:8:"dc:title";}}s:7:"created";a:3:{s:10:"predicates";a:2:{i:0;s:7:"dc:date";i:1;s:10:"dc:created";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}s:7:"changed";a:3:{s:10:"predicates";a:1:{i:0;s:11:"dc:modified";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}s:4:"body";a:1:{s:10:"predicates";a:1:{i:0;s:15:"content:encoded";}}s:3:"uid";a:2:{s:10:"predicates";a:1:{i:0;s:16:"sioc:has_creator";}s:4:"type";s:3:"rel";}s:4:"name";a:1:{s:10:"predicates";a:1:{i:0;s:9:"foaf:name";}}s:13:"comment_count";a:2:{s:10:"predicates";a:1:{i:0;s:16:"sioc:num_replies";}s:8:"datatype";s:11:"xsd:integer";}s:13:"last_activity";a:3:{s:10:"predicates";a:1:{i:0;s:23:"sioc:last_activity_date";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}}', + 'path' => 'admin/structure/block/demo/garland', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '_block_themes_access', + 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{s:4:"name";s:7:"Garland";s:11:"description";s:111:"A multi-column theme which can be configured to modify colors and switch between fixed and fluid width layouts.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:8:"settings";a:1:{s:13:"garland_width";s:5:"fluid";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:6:"engine";s:11:"phptemplate";s:7:"regions";a:9:{s:13:"sidebar_first";s:12:"Left sidebar";s:14:"sidebar_second";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";s:11:"highlighted";s:11:"Highlighted";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";}s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1498069849;s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}', + 'page_callback' => 'block_admin_demo', + 'page_arguments' => 'a:1:{i:0;s:7:"garland";}', + 'delivery_callback' => '', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/block/demo/garland', + 'title' => 'Garland', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '_block_custom_theme', + 'theme_arguments' => 'a:1:{i:0;s:7:"garland";}', + 'type' => '0', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/block/block.admin.inc', )) ->values(array( - 'type' => 'node', - 'bundle' => 'forum', - 'mapping' => 'a:10:{s:7:"rdftype";a:2:{i:0;s:9:"sioc:Post";i:1;s:15:"sioct:BoardPost";}s:15:"taxonomy_forums";a:2:{s:10:"predicates";a:1:{i:0;s:18:"sioc:has_container";}s:4:"type";s:3:"rel";}s:5:"title";a:1:{s:10:"predicates";a:1:{i:0;s:8:"dc:title";}}s:7:"created";a:3:{s:10:"predicates";a:2:{i:0;s:7:"dc:date";i:1;s:10:"dc:created";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}s:7:"changed";a:3:{s:10:"predicates";a:1:{i:0;s:11:"dc:modified";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}s:4:"body";a:1:{s:10:"predicates";a:1:{i:0;s:15:"content:encoded";}}s:3:"uid";a:2:{s:10:"predicates";a:1:{i:0;s:16:"sioc:has_creator";}s:4:"type";s:3:"rel";}s:4:"name";a:1:{s:10:"predicates";a:1:{i:0;s:9:"foaf:name";}}s:13:"comment_count";a:2:{s:10:"predicates";a:1:{i:0;s:16:"sioc:num_replies";}s:8:"datatype";s:11:"xsd:integer";}s:13:"last_activity";a:3:{s:10:"predicates";a:1:{i:0;s:23:"sioc:last_activity_date";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}}', + 'path' => 'admin/structure/block/demo/seven', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '_block_themes_access', + 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:23:"themes/seven/seven.info";s:4:"name";s:5:"seven";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{s:4:"name";s:5:"Seven";s:11:"description";s:65:"A simple one-column, tableless, fluid width administration theme.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:1:{s:6:"screen";a:2:{s:9:"reset.css";s:22:"themes/seven/reset.css";s:9:"style.css";s:22:"themes/seven/style.css";}}s:8:"settings";a:1:{s:20:"shortcut_module_link";s:1:"1";}s:7:"regions";a:5:{s:7:"content";s:7:"Content";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:13:"sidebar_first";s:13:"First sidebar";}s:14:"regions_hidden";a:3:{i:0;s:13:"sidebar_first";i:1;s:8:"page_top";i:2;s:11:"page_bottom";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:6:"engine";s:11:"phptemplate";s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:27:"themes/seven/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1498069849;s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:1:{s:6:"screen";a:2:{s:9:"reset.css";s:22:"themes/seven/reset.css";s:9:"style.css";s:22:"themes/seven/style.css";}}s:6:"engine";s:11:"phptemplate";}}', + 'page_callback' => 'block_admin_demo', + 'page_arguments' => 'a:1:{i:0;s:5:"seven";}', + 'delivery_callback' => '', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/block/demo/seven', + 'title' => 'Seven', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '_block_custom_theme', + 'theme_arguments' => 'a:1:{i:0;s:5:"seven";}', + 'type' => '0', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/block/block.admin.inc', )) ->values(array( - 'type' => 'taxonomy_term', - 'bundle' => 'forums', - 'mapping' => 'a:5:{s:7:"rdftype";a:2:{i:0;s:14:"sioc:Container";i:1;s:10:"sioc:Forum";}s:4:"name";a:1:{s:10:"predicates";a:2:{i:0;s:10:"rdfs:label";i:1;s:14:"skos:prefLabel";}}s:11:"description";a:1:{s:10:"predicates";a:1:{i:0;s:15:"skos:definition";}}s:3:"vid";a:2:{s:10:"predicates";a:1:{i:0;s:13:"skos:inScheme";}s:4:"type";s:3:"rel";}s:6:"parent";a:2:{s:10:"predicates";a:1:{i:0;s:12:"skos:broader";}s:4:"type";s:3:"rel";}}', + 'path' => 'admin/structure/block/demo/stark', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '_block_themes_access', + 'access_arguments' => "a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:23:\"themes/stark/stark.info\";s:4:\"name\";s:5:\"stark\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:17:{s:4:\"name\";s:5:\"Stark\";s:11:\"description\";s:208:\"This theme demonstrates Drupal's default HTML markup and CSS styles. To learn how to build your own theme and override Drupal's default code, see the Theming Guide.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.56\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1498069849\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:9:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:27:\"themes/stark/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1498069849;s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:6:\"prefix\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:6:\"engine\";s:11:\"phptemplate\";}}", + 'page_callback' => 'block_admin_demo', + 'page_arguments' => 'a:1:{i:0;s:5:"stark";}', + 'delivery_callback' => '', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/block/demo/stark', + 'title' => 'Stark', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '_block_custom_theme', + 'theme_arguments' => 'a:1:{i:0;s:5:"stark";}', + 'type' => '0', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/block/block.admin.inc', )) ->values(array( - 'type' => 'node', - 'bundle' => 'page', - 'mapping' => 'a:9:{s:7:"rdftype";a:1:{i:0;s:13:"foaf:Document";}s:5:"title";a:1:{s:10:"predicates";a:1:{i:0;s:8:"dc:title";}}s:7:"created";a:3:{s:10:"predicates";a:2:{i:0;s:7:"dc:date";i:1;s:10:"dc:created";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}s:7:"changed";a:3:{s:10:"predicates";a:1:{i:0;s:11:"dc:modified";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}s:4:"body";a:1:{s:10:"predicates";a:1:{i:0;s:15:"content:encoded";}}s:3:"uid";a:2:{s:10:"predicates";a:1:{i:0;s:16:"sioc:has_creator";}s:4:"type";s:3:"rel";}s:4:"name";a:1:{s:10:"predicates";a:1:{i:0;s:9:"foaf:name";}}s:13:"comment_count";a:2:{s:10:"predicates";a:1:{i:0;s:16:"sioc:num_replies";}s:8:"datatype";s:11:"xsd:integer";}s:13:"last_activity";a:3:{s:10:"predicates";a:1:{i:0;s:23:"sioc:last_activity_date";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}}', -)) -->execute(); - -$connection->schema()->createTable('registry', array( - 'fields' => array( - 'name' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'type' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '9', - 'default' => '', - ), - 'filename' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - ), - 'module' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - 'weight' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - ), - 'primary key' => array( - 'name', - 'type', - ), - 'mysql_character_set' => 'utf8', -)); - -$connection->insert('registry') -->fields(array( - 'name', - 'type', - 'filename', - 'module', - 'weight', + 'path' => 'admin/structure/block/list/bartik', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '_block_themes_access', + 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:25:"themes/bartik/bartik.info";s:4:"name";s:6:"bartik";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{s:4:"name";s:6:"Bartik";s:11:"description";s:48:"A flexible, recolorable theme with many regions.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:3:{s:14:"css/layout.css";s:28:"themes/bartik/css/layout.css";s:13:"css/style.css";s:27:"themes/bartik/css/style.css";s:14:"css/colors.css";s:28:"themes/bartik/css/colors.css";}s:5:"print";a:1:{s:13:"css/print.css";s:27:"themes/bartik/css/print.css";}}s:7:"regions";a:17:{s:6:"header";s:6:"Header";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:11:"highlighted";s:11:"Highlighted";s:8:"featured";s:8:"Featured";s:7:"content";s:7:"Content";s:13:"sidebar_first";s:13:"Sidebar first";s:14:"sidebar_second";s:14:"Sidebar second";s:14:"triptych_first";s:14:"Triptych first";s:15:"triptych_middle";s:15:"Triptych middle";s:13:"triptych_last";s:13:"Triptych last";s:18:"footer_firstcolumn";s:19:"Footer first column";s:19:"footer_secondcolumn";s:20:"Footer second column";s:18:"footer_thirdcolumn";s:19:"Footer third column";s:19:"footer_fourthcolumn";s:20:"Footer fourth column";s:6:"footer";s:6:"Footer";}s:8:"settings";a:1:{s:20:"shortcut_module_link";s:1:"0";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:6:"engine";s:11:"phptemplate";s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:28:"themes/bartik/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1498069849;s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:3:{s:14:"css/layout.css";s:28:"themes/bartik/css/layout.css";s:13:"css/style.css";s:27:"themes/bartik/css/style.css";s:14:"css/colors.css";s:28:"themes/bartik/css/colors.css";}s:5:"print";a:1:{s:13:"css/print.css";s:27:"themes/bartik/css/print.css";}}s:6:"engine";s:11:"phptemplate";}}', + 'page_callback' => 'block_admin_display', + 'page_arguments' => 'a:1:{i:0;s:6:"bartik";}', + 'delivery_callback' => '', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/structure/block', + 'tab_root' => 'admin/structure/block', + 'title' => 'Bartik', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', + 'weight' => '-10', + 'include_file' => 'modules/block/block.admin.inc', )) ->values(array( - 'name' => 'AccessDeniedTestCase', - 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'path' => 'admin/structure/block/list/garland', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '_block_themes_access', + 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{s:4:"name";s:7:"Garland";s:11:"description";s:111:"A multi-column theme which can be configured to modify colors and switch between fixed and fluid width layouts.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:8:"settings";a:1:{s:13:"garland_width";s:5:"fluid";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:6:"engine";s:11:"phptemplate";s:7:"regions";a:9:{s:13:"sidebar_first";s:12:"Left sidebar";s:14:"sidebar_second";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";s:11:"highlighted";s:11:"Highlighted";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";}s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1498069849;s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}', + 'page_callback' => 'block_admin_display', + 'page_arguments' => 'a:1:{i:0;s:7:"garland";}', + 'delivery_callback' => '', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/structure/block', + 'tab_root' => 'admin/structure/block', + 'title' => 'Garland', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/block/block.admin.inc', )) ->values(array( - 'name' => 'ActionLoopTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/actions.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/block/list/garland/add', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}', + 'delivery_callback' => '', + 'fit' => '63', + 'number_parts' => '6', + 'context' => '1', + 'tab_parent' => 'admin/structure/block/list/garland', + 'tab_root' => 'admin/structure/block', + 'title' => 'Add block', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '388', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/block/block.admin.inc', )) ->values(array( - 'name' => 'ActionsConfigurationTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/actions.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/block/list/seven', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '_block_themes_access', + 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:23:"themes/seven/seven.info";s:4:"name";s:5:"seven";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:18:{s:4:"name";s:5:"Seven";s:11:"description";s:65:"A simple one-column, tableless, fluid width administration theme.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:1:{s:6:"screen";a:2:{s:9:"reset.css";s:22:"themes/seven/reset.css";s:9:"style.css";s:22:"themes/seven/style.css";}}s:8:"settings";a:1:{s:20:"shortcut_module_link";s:1:"1";}s:7:"regions";a:5:{s:7:"content";s:7:"Content";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:13:"sidebar_first";s:13:"First sidebar";}s:14:"regions_hidden";a:3:{i:0;s:13:"sidebar_first";i:1;s:8:"page_top";i:2;s:11:"page_bottom";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:6:"engine";s:11:"phptemplate";s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:27:"themes/seven/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1498069849;s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}s:6:"prefix";s:11:"phptemplate";s:11:"stylesheets";a:1:{s:6:"screen";a:2:{s:9:"reset.css";s:22:"themes/seven/reset.css";s:9:"style.css";s:22:"themes/seven/style.css";}}s:6:"engine";s:11:"phptemplate";}}', + 'page_callback' => 'block_admin_display', + 'page_arguments' => 'a:1:{i:0;s:5:"seven";}', + 'delivery_callback' => '', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/structure/block', + 'tab_root' => 'admin/structure/block', + 'title' => 'Seven', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/block/block.admin.inc', )) ->values(array( - 'name' => 'AddFeedTestCase', - 'type' => 'class', - 'filename' => 'modules/aggregator/aggregator.test', - 'module' => 'aggregator', + 'path' => 'admin/structure/block/list/seven/add', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}', + 'delivery_callback' => '', + 'fit' => '63', + 'number_parts' => '6', + 'context' => '1', + 'tab_parent' => 'admin/structure/block/list/seven', + 'tab_root' => 'admin/structure/block', + 'title' => 'Add block', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '388', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/block/block.admin.inc', )) ->values(array( - 'name' => 'AdminMetaTagTestCase', - 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'path' => 'admin/structure/block/list/stark', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '_block_themes_access', + 'access_arguments' => "a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:23:\"themes/stark/stark.info\";s:4:\"name\";s:5:\"stark\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"0\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:17:{s:4:\"name\";s:5:\"Stark\";s:11:\"description\";s:208:\"This theme demonstrates Drupal's default HTML markup and CSS styles. To learn how to build your own theme and override Drupal's default code, see the Theming Guide.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.56\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1498069849\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:9:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:27:\"themes/stark/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1498069849;s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}s:6:\"prefix\";s:11:\"phptemplate\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:6:\"engine\";s:11:\"phptemplate\";}}", + 'page_callback' => 'block_admin_display', + 'page_arguments' => 'a:1:{i:0;s:5:"stark";}', + 'delivery_callback' => '', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/structure/block', + 'tab_root' => 'admin/structure/block', + 'title' => 'Stark', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/block/block.admin.inc', )) ->values(array( - 'name' => 'AggregatorConfigurationTestCase', - 'type' => 'class', - 'filename' => 'modules/aggregator/aggregator.test', - 'module' => 'aggregator', + 'path' => 'admin/structure/block/list/stark/add', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}', + 'delivery_callback' => '', + 'fit' => '63', + 'number_parts' => '6', + 'context' => '1', + 'tab_parent' => 'admin/structure/block/list/stark', + 'tab_root' => 'admin/structure/block', + 'title' => 'Add block', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '388', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/block/block.admin.inc', )) ->values(array( - 'name' => 'AggregatorCronTestCase', - 'type' => 'class', - 'filename' => 'modules/aggregator/aggregator.test', - 'module' => 'aggregator', + 'path' => 'admin/structure/block/manage/%/%', + 'load_functions' => 'a:2:{i:4;N;i:5;N;}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:3:{i:0;s:21:"block_admin_configure";i:1;i:4;i:2;i:5;}', + 'delivery_callback' => '', + 'fit' => '60', + 'number_parts' => '6', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/block/manage/%/%', + 'title' => 'Configure block', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/block/block.admin.inc', )) ->values(array( - 'name' => 'AggregatorRenderingTestCase', - 'type' => 'class', - 'filename' => 'modules/aggregator/aggregator.test', - 'module' => 'aggregator', + 'path' => 'admin/structure/block/manage/%/%/configure', + 'load_functions' => 'a:2:{i:4;N;i:5;N;}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:3:{i:0;s:21:"block_admin_configure";i:1;i:4;i:2;i:5;}', + 'delivery_callback' => '', + 'fit' => '121', + 'number_parts' => '7', + 'context' => '2', + 'tab_parent' => 'admin/structure/block/manage/%/%', + 'tab_root' => 'admin/structure/block/manage/%/%', + 'title' => 'Configure block', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/block/block.admin.inc', )) ->values(array( - 'name' => 'AggregatorTestCase', - 'type' => 'class', - 'filename' => 'modules/aggregator/aggregator.test', - 'module' => 'aggregator', + 'path' => 'admin/structure/block/manage/%/%/delete', + 'load_functions' => 'a:2:{i:4;N;i:5;N;}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:3:{i:0;s:25:"block_custom_block_delete";i:1;i:4;i:2;i:5;}', + 'delivery_callback' => '', + 'fit' => '121', + 'number_parts' => '7', + 'context' => '0', + 'tab_parent' => 'admin/structure/block/manage/%/%', + 'tab_root' => 'admin/structure/block/manage/%/%', + 'title' => 'Delete block', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/block/block.admin.inc', )) ->values(array( - 'name' => 'AggregatorUpdatePathTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/update.aggregator.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/contact', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:24:"administer contact forms";}', + 'page_callback' => 'contact_category_list', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/contact', + 'title' => 'Contact form', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'Create a system contact form and set up categories for the form to use.', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/contact/contact.admin.inc', )) ->values(array( - 'name' => 'AJAXCommandsTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/ajax.test', - 'module' => 'simpletest', - 'weight' => '0', + 'path' => 'admin/structure/contact/add', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:24:"administer contact forms";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:26:"contact_category_edit_form";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/structure/contact', + 'tab_root' => 'admin/structure/contact', + 'title' => 'Add category', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '388', + 'description' => '', + 'position' => '', + 'weight' => '1', + 'include_file' => 'modules/contact/contact.admin.inc', )) ->values(array( - 'name' => 'AJAXElementValidation', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/ajax.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/contact/delete/%', + 'load_functions' => 'a:1:{i:4;s:12:"contact_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:24:"administer contact forms";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:28:"contact_category_delete_form";i:1;i:4;}', + 'delivery_callback' => '', + 'fit' => '30', + 'number_parts' => '5', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/contact/delete/%', + 'title' => 'Delete contact', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/contact/contact.admin.inc', )) ->values(array( - 'name' => 'AJAXFormPageCacheTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/ajax.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/contact/edit/%', + 'load_functions' => 'a:1:{i:4;s:12:"contact_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:24:"administer contact forms";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:26:"contact_category_edit_form";i:1;i:4;}', + 'delivery_callback' => '', + 'fit' => '30', + 'number_parts' => '5', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/contact/edit/%', + 'title' => 'Edit contact category', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/contact/contact.admin.inc', )) ->values(array( - 'name' => 'AJAXFormValuesTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/ajax.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/field-collections', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:28:"administer field collections";}', + 'page_callback' => 'field_collections_overview', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/field-collections', + 'title' => 'Field collections', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'Manage fields on field collections.', + 'position' => '', 'weight' => '0', + 'include_file' => 'sites/all/modules/field_collection/field_collection.admin.inc', )) ->values(array( - 'name' => 'AJAXFrameworkTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/ajax.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/field-collections/%', + 'load_functions' => 'a:1:{i:3;s:32:"field_collection_field_name_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:28:"administer field collections";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:21:"field_collection_item";i:2;i:3;}', + 'delivery_callback' => '', + 'fit' => '14', + 'number_parts' => '4', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/field-collections/%', + 'title' => 'Manage fields', + 'title_callback' => 'field_collection_admin_page_title', + 'title_arguments' => 'a:1:{i:0;i:3;}', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', + 'weight' => '1', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', +)) +->values(array( + 'path' => 'admin/structure/field-collections/%/display', + 'load_functions' => 'a:1:{i:3;s:32:"field_collection_field_name_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:28:"administer field collections";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:21:"field_collection_item";i:2;i:3;i:3;s:7:"default";}', + 'delivery_callback' => '', + 'fit' => '29', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/structure/field-collections/%', + 'tab_root' => 'admin/structure/field-collections/%', + 'title' => 'Manage display', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '2', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', +)) +->values(array( + 'path' => 'admin/structure/field-collections/%/display/default', + 'load_functions' => 'a:1:{i:3;s:32:"field_collection_field_name_load";}', + 'to_arg_functions' => '', + 'access_callback' => '_field_ui_view_mode_menu_access', + 'access_arguments' => 'a:6:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:7:"default";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:28:"administer field collections";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:21:"field_collection_item";i:2;i:3;i:3;s:7:"default";}', + 'delivery_callback' => '', + 'fit' => '59', + 'number_parts' => '6', + 'context' => '1', + 'tab_parent' => 'admin/structure/field-collections/%/display', + 'tab_root' => 'admin/structure/field-collections/%', + 'title' => 'Default', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', + 'weight' => '-10', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', +)) +->values(array( + 'path' => 'admin/structure/field-collections/%/display/full', + 'load_functions' => 'a:1:{i:3;s:32:"field_collection_field_name_load";}', + 'to_arg_functions' => '', + 'access_callback' => '_field_ui_view_mode_menu_access', + 'access_arguments' => 'a:6:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:4:"full";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:28:"administer field collections";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:21:"field_collection_item";i:2;i:3;i:3;s:4:"full";}', + 'delivery_callback' => '', + 'fit' => '59', + 'number_parts' => '6', + 'context' => '1', + 'tab_parent' => 'admin/structure/field-collections/%/display', + 'tab_root' => 'admin/structure/field-collections/%', + 'title' => 'Full content', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'AJAXMultiFormTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/ajax.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/field-collections/%/fields', + 'load_functions' => 'a:1:{i:3;s:32:"field_collection_field_name_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:28:"administer field collections";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:21:"field_collection_item";i:2;i:3;}', + 'delivery_callback' => '', + 'fit' => '29', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/structure/field-collections/%', + 'tab_root' => 'admin/structure/field-collections/%', + 'title' => 'Manage fields', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', + 'weight' => '1', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', +)) +->values(array( + 'path' => 'admin/structure/field-collections/%/fields/%', + 'load_functions' => 'a:2:{i:3;a:1:{s:32:"field_collection_field_name_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:28:"administer field collections";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}', + 'delivery_callback' => '', + 'fit' => '58', + 'number_parts' => '6', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/field-collections/%/fields/%', + 'title' => '', + 'title_callback' => 'field_ui_menu_title', + 'title_arguments' => 'a:1:{i:0;i:5;}', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'AJAXTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/ajax.test', - 'module' => 'simpletest', - 'weight' => '0', + 'path' => 'admin/structure/field-collections/%/fields/%/delete', + 'load_functions' => 'a:2:{i:3;a:1:{s:32:"field_collection_field_name_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:28:"administer field collections";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:26:"field_ui_field_delete_form";i:1;i:5;}', + 'delivery_callback' => '', + 'fit' => '117', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/structure/field-collections/%/fields/%', + 'tab_root' => 'admin/structure/field-collections/%/fields/%', + 'title' => 'Delete', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '10', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'ArchiverInterface', - 'type' => 'interface', - 'filename' => 'includes/archiver.inc', - 'module' => '', + 'path' => 'admin/structure/field-collections/%/fields/%/edit', + 'load_functions' => 'a:2:{i:3;a:1:{s:32:"field_collection_field_name_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:28:"administer field collections";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}', + 'delivery_callback' => '', + 'fit' => '117', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/structure/field-collections/%/fields/%', + 'tab_root' => 'admin/structure/field-collections/%/fields/%', + 'title' => 'Edit', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'ArchiverTar', - 'type' => 'class', - 'filename' => 'modules/system/system.archiver.inc', - 'module' => 'system', + 'path' => 'admin/structure/field-collections/%/fields/%/field-settings', + 'load_functions' => 'a:2:{i:3;a:1:{s:32:"field_collection_field_name_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:28:"administer field collections";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:28:"field_ui_field_settings_form";i:1;i:5;}', + 'delivery_callback' => '', + 'fit' => '117', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/structure/field-collections/%/fields/%', + 'tab_root' => 'admin/structure/field-collections/%/fields/%', + 'title' => 'Field settings', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'ArchiverZip', - 'type' => 'class', - 'filename' => 'modules/system/system.archiver.inc', - 'module' => 'system', + 'path' => 'admin/structure/field-collections/%/fields/%/widget-type', + 'load_functions' => 'a:2:{i:3;a:1:{s:32:"field_collection_field_name_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:21:"field_collection_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:28:"administer field collections";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:25:"field_ui_widget_type_form";i:1;i:5;}', + 'delivery_callback' => '', + 'fit' => '117', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/structure/field-collections/%/fields/%', + 'tab_root' => 'admin/structure/field-collections/%/fields/%', + 'title' => 'Widget type', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'Archive_Tar', - 'type' => 'class', - 'filename' => 'modules/system/system.tar.inc', - 'module' => 'system', + 'path' => 'admin/structure/forum', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:14:"forum_overview";}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/forum', + 'title' => 'Forums', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'Control forum hierarchy settings.', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/forum/forum.admin.inc', )) ->values(array( - 'name' => 'ArrayDiffUnitTest', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/forum/add/container', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}', + 'page_callback' => 'forum_form_main', + 'page_arguments' => 'a:1:{i:0;s:9:"container";}', + 'delivery_callback' => '', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/structure/forum', + 'tab_root' => 'admin/structure/forum', + 'title' => 'Add container', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '388', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/forum/forum.admin.inc', )) ->values(array( - 'name' => 'AUPhoneNumberTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.au.test', - 'module' => 'phone', + 'path' => 'admin/structure/forum/add/forum', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}', + 'page_callback' => 'forum_form_main', + 'page_arguments' => 'a:1:{i:0;s:5:"forum";}', + 'delivery_callback' => '', + 'fit' => '31', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/structure/forum', + 'tab_root' => 'admin/structure/forum', + 'title' => 'Add forum', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '388', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/forum/forum.admin.inc', )) ->values(array( - 'name' => 'BasicMinimalUpdatePath', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/upgrade.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/forum/edit/container/%', + 'load_functions' => 'a:1:{i:5;s:18:"taxonomy_term_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}', + 'page_callback' => 'forum_form_main', + 'page_arguments' => 'a:2:{i:0;s:9:"container";i:1;i:5;}', + 'delivery_callback' => '', + 'fit' => '62', + 'number_parts' => '6', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/forum/edit/container/%', + 'title' => 'Edit container', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/forum/forum.admin.inc', )) ->values(array( - 'name' => 'BasicStandardUpdatePath', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/upgrade.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/forum/edit/forum/%', + 'load_functions' => 'a:1:{i:5;s:18:"taxonomy_term_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}', + 'page_callback' => 'forum_form_main', + 'page_arguments' => 'a:2:{i:0;s:5:"forum";i:1;i:5;}', + 'delivery_callback' => '', + 'fit' => '62', + 'number_parts' => '6', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/forum/edit/forum/%', + 'title' => 'Edit forum', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/forum/forum.admin.inc', )) ->values(array( - 'name' => 'BasicUpgradePath', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/upgrade.test', - 'module' => 'simpletest', - 'weight' => '0', + 'path' => 'admin/structure/forum/list', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:14:"forum_overview";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/structure/forum', + 'tab_root' => 'admin/structure/forum', + 'title' => 'List', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', + 'weight' => '-10', + 'include_file' => 'modules/forum/forum.admin.inc', )) ->values(array( - 'name' => 'BatchMemoryQueue', - 'type' => 'class', - 'filename' => 'includes/batch.queue.inc', - 'module' => '', - 'weight' => '0', + 'path' => 'admin/structure/forum/settings', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"administer forums";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:20:"forum_admin_settings";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/structure/forum', + 'tab_root' => 'admin/structure/forum', + 'title' => 'Settings', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '5', + 'include_file' => 'modules/forum/forum.admin.inc', )) ->values(array( - 'name' => 'BatchPageTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/batch.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/menu', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', + 'page_callback' => 'menu_overview_page', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/menu', + 'title' => 'Menus', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'Add new menus to your site, edit existing menus, and rename and reorganize menu links.', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/menu/menu.admin.inc', )) ->values(array( - 'name' => 'BatchPercentagesUnitTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/batch.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/menu/add', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:14:"menu_edit_menu";i:1;s:3:"add";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/structure/menu', + 'tab_root' => 'admin/structure/menu', + 'title' => 'Add menu', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '388', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/menu/menu.admin.inc', )) ->values(array( - 'name' => 'BatchProcessingTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/batch.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/menu/item/%/delete', + 'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', + 'page_callback' => 'menu_item_delete_page', + 'page_arguments' => 'a:1:{i:0;i:4;}', + 'delivery_callback' => '', + 'fit' => '61', + 'number_parts' => '6', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/menu/item/%/delete', + 'title' => 'Delete menu link', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/menu/menu.admin.inc', )) ->values(array( - 'name' => 'BatchQueue', - 'type' => 'class', - 'filename' => 'includes/batch.queue.inc', - 'module' => '', + 'path' => 'admin/structure/menu/item/%/edit', + 'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:14:"menu_edit_item";i:1;s:4:"edit";i:2;i:4;i:3;N;}', + 'delivery_callback' => '', + 'fit' => '61', + 'number_parts' => '6', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/menu/item/%/edit', + 'title' => 'Edit menu link', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/menu/menu.admin.inc', )) ->values(array( - 'name' => 'BEPhoneNumberTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.be.test', - 'module' => 'phone', + 'path' => 'admin/structure/menu/item/%/reset', + 'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:23:"menu_reset_item_confirm";i:1;i:4;}', + 'delivery_callback' => '', + 'fit' => '61', + 'number_parts' => '6', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/menu/item/%/reset', + 'title' => 'Reset menu link', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/menu/menu.admin.inc', )) ->values(array( - 'name' => 'BlockAdminThemeTestCase', - 'type' => 'class', - 'filename' => 'modules/block/block.test', - 'module' => 'block', - 'weight' => '-5', + 'path' => 'admin/structure/menu/list', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', + 'page_callback' => 'menu_overview_page', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/structure/menu', + 'tab_root' => 'admin/structure/menu', + 'title' => 'List menus', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', + 'weight' => '-10', + 'include_file' => 'modules/menu/menu.admin.inc', )) ->values(array( - 'name' => 'BlockCacheTestCase', - 'type' => 'class', - 'filename' => 'modules/block/block.test', - 'module' => 'block', - 'weight' => '-5', + 'path' => 'admin/structure/menu/manage/%', + 'load_functions' => 'a:1:{i:4;s:9:"menu_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:18:"menu_overview_form";i:1;i:4;}', + 'delivery_callback' => '', + 'fit' => '30', + 'number_parts' => '5', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/menu/manage/%', + 'title' => 'Customize menu', + 'title_callback' => 'menu_overview_title', + 'title_arguments' => 'a:1:{i:0;i:4;}', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/menu/menu.admin.inc', )) ->values(array( - 'name' => 'BlockHashTestCase', - 'type' => 'class', - 'filename' => 'modules/block/block.test', - 'module' => 'block', - 'weight' => '-5', + 'path' => 'admin/structure/menu/manage/%/add', + 'load_functions' => 'a:1:{i:4;s:9:"menu_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:14:"menu_edit_item";i:1;s:3:"add";i:2;N;i:3;i:4;}', + 'delivery_callback' => '', + 'fit' => '61', + 'number_parts' => '6', + 'context' => '1', + 'tab_parent' => 'admin/structure/menu/manage/%', + 'tab_root' => 'admin/structure/menu/manage/%', + 'title' => 'Add link', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '388', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/menu/menu.admin.inc', )) ->values(array( - 'name' => 'BlockHiddenRegionTestCase', - 'type' => 'class', - 'filename' => 'modules/block/block.test', - 'module' => 'block', - 'weight' => '-5', + 'path' => 'admin/structure/menu/manage/%/delete', + 'load_functions' => 'a:1:{i:4;s:9:"menu_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', + 'page_callback' => 'menu_delete_menu_page', + 'page_arguments' => 'a:1:{i:0;i:4;}', + 'delivery_callback' => '', + 'fit' => '61', + 'number_parts' => '6', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/menu/manage/%/delete', + 'title' => 'Delete menu', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/menu/menu.admin.inc', )) ->values(array( - 'name' => 'BlockHTMLIdTestCase', - 'type' => 'class', - 'filename' => 'modules/block/block.test', - 'module' => 'block', - 'weight' => '-5', + 'path' => 'admin/structure/menu/manage/%/edit', + 'load_functions' => 'a:1:{i:4;s:9:"menu_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:3:{i:0;s:14:"menu_edit_menu";i:1;s:4:"edit";i:2;i:4;}', + 'delivery_callback' => '', + 'fit' => '61', + 'number_parts' => '6', + 'context' => '3', + 'tab_parent' => 'admin/structure/menu/manage/%', + 'tab_root' => 'admin/structure/menu/manage/%', + 'title' => 'Edit menu', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => 'modules/menu/menu.admin.inc', )) ->values(array( - 'name' => 'BlockInvalidRegionTestCase', - 'type' => 'class', - 'filename' => 'modules/block/block.test', - 'module' => 'block', - 'weight' => '-5', + 'path' => 'admin/structure/menu/manage/%/list', + 'load_functions' => 'a:1:{i:4;s:9:"menu_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:18:"menu_overview_form";i:1;i:4;}', + 'delivery_callback' => '', + 'fit' => '61', + 'number_parts' => '6', + 'context' => '3', + 'tab_parent' => 'admin/structure/menu/manage/%', + 'tab_root' => 'admin/structure/menu/manage/%', + 'title' => 'List links', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', + 'weight' => '-10', + 'include_file' => 'modules/menu/menu.admin.inc', )) ->values(array( - 'name' => 'BlockTemplateSuggestionsUnitTest', - 'type' => 'class', - 'filename' => 'modules/block/block.test', - 'module' => 'block', - 'weight' => '-5', + 'path' => 'admin/structure/menu/parents', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', + 'page_callback' => 'menu_parent_options_js', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/menu/parents', + 'title' => 'Parent menu items', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', + 'weight' => '0', + 'include_file' => '', )) ->values(array( - 'name' => 'BlockTestCase', - 'type' => 'class', - 'filename' => 'modules/block/block.test', - 'module' => 'block', - 'weight' => '-5', + 'path' => 'admin/structure/menu/settings', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:14:"menu_configure";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/structure/menu', + 'tab_root' => 'admin/structure/menu', + 'title' => 'Settings', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '5', + 'include_file' => 'modules/menu/menu.admin.inc', )) ->values(array( - 'name' => 'BlockViewModuleDeltaAlterWebTest', - 'type' => 'class', - 'filename' => 'modules/block/block.test', - 'module' => 'block', - 'weight' => '-5', + 'path' => 'admin/structure/paragraphs', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"administer paragraphs bundles";}', + 'page_callback' => 'paragraphs_admin_bundle_overview', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/paragraphs', + 'title' => 'Paragraph Bundles', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'Manage Paragraph bundles', + 'position' => '', + 'weight' => '0', + 'include_file' => 'sites/all/modules/paragraphs/paragraphs.admin.inc', )) ->values(array( - 'name' => 'BlogTestCase', - 'type' => 'class', - 'filename' => 'modules/blog/blog.test', - 'module' => 'blog', + 'path' => 'admin/structure/paragraphs/%', + 'load_functions' => 'a:1:{i:3;s:22:"paragraphs_bundle_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"administer paragraphs bundles";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:28:"paragraphs_admin_bundle_form";i:1;i:3;}', + 'delivery_callback' => '', + 'fit' => '14', + 'number_parts' => '4', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/paragraphs/%', + 'title' => 'Edit paragraph bundle', + 'title_callback' => 'paragraphs_bundle_title_callback', + 'title_arguments' => 'a:1:{i:0;i:3;}', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'sites/all/modules/paragraphs/paragraphs.admin.inc', )) ->values(array( - 'name' => 'BookTestCase', - 'type' => 'class', - 'filename' => 'modules/book/book.test', - 'module' => 'book', + 'path' => 'admin/structure/paragraphs/%/delete', + 'load_functions' => 'a:1:{i:3;s:22:"paragraphs_bundle_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"administer paragraphs bundles";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:35:"paragraphs_admin_bundle_delete_form";i:1;i:3;}', + 'delivery_callback' => '', + 'fit' => '29', + 'number_parts' => '5', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/paragraphs/%/delete', + 'title' => 'Delete Paragraph Bundle', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'sites/all/modules/paragraphs/paragraphs.admin.inc', )) ->values(array( - 'name' => 'BootstrapAutoloadTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/bootstrap.test', - 'module' => 'simpletest', - 'weight' => '0', + 'path' => 'admin/structure/paragraphs/%/display', + 'load_functions' => 'a:1:{i:3;s:22:"paragraphs_bundle_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:29:"administer paragraphs bundles";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:15:"paragraphs_item";i:2;i:3;i:3;s:7:"default";}', + 'delivery_callback' => '', + 'fit' => '29', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/structure/paragraphs/%', + 'tab_root' => 'admin/structure/paragraphs/%', + 'title' => 'Manage display', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '2', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'BootstrapDestinationTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/bootstrap.test', - 'module' => 'simpletest', - 'weight' => '0', + 'path' => 'admin/structure/paragraphs/%/display/default', + 'load_functions' => 'a:1:{i:3;s:22:"paragraphs_bundle_load";}', + 'to_arg_functions' => '', + 'access_callback' => '_field_ui_view_mode_menu_access', + 'access_arguments' => 'a:6:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:7:"default";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:29:"administer paragraphs bundles";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:15:"paragraphs_item";i:2;i:3;i:3;s:7:"default";}', + 'delivery_callback' => '', + 'fit' => '59', + 'number_parts' => '6', + 'context' => '1', + 'tab_parent' => 'admin/structure/paragraphs/%/display', + 'tab_root' => 'admin/structure/paragraphs/%', + 'title' => 'Default', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', + 'weight' => '-10', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'BootstrapGetFilenameTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/bootstrap.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/paragraphs/%/display/full', + 'load_functions' => 'a:1:{i:3;s:22:"paragraphs_bundle_load";}', + 'to_arg_functions' => '', + 'access_callback' => '_field_ui_view_mode_menu_access', + 'access_arguments' => 'a:6:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:4:"full";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:29:"administer paragraphs bundles";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:15:"paragraphs_item";i:2;i:3;i:3;s:4:"full";}', + 'delivery_callback' => '', + 'fit' => '59', + 'number_parts' => '6', + 'context' => '1', + 'tab_parent' => 'admin/structure/paragraphs/%/display', + 'tab_root' => 'admin/structure/paragraphs/%', + 'title' => 'Full content', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'BootstrapGetFilenameWebTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/bootstrap.test', - 'module' => 'simpletest', - 'weight' => '0', + 'path' => 'admin/structure/paragraphs/%/display/paragraphs_editor_preview', + 'load_functions' => 'a:1:{i:3;s:22:"paragraphs_bundle_load";}', + 'to_arg_functions' => '', + 'access_callback' => '_field_ui_view_mode_menu_access', + 'access_arguments' => 'a:6:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:25:"paragraphs_editor_preview";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:29:"administer paragraphs bundles";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:15:"paragraphs_item";i:2;i:3;i:3;s:25:"paragraphs_editor_preview";}', + 'delivery_callback' => '', + 'fit' => '59', + 'number_parts' => '6', + 'context' => '1', + 'tab_parent' => 'admin/structure/paragraphs/%/display', + 'tab_root' => 'admin/structure/paragraphs/%', + 'title' => 'Paragraphs Editor Preview', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '1', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'BootstrapIPAddressTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/bootstrap.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/paragraphs/%/edit', + 'load_functions' => 'a:1:{i:3;s:22:"paragraphs_bundle_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"administer paragraphs bundles";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:28:"paragraphs_admin_bundle_form";i:1;i:3;}', + 'delivery_callback' => '', + 'fit' => '29', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/structure/paragraphs/%', + 'tab_root' => 'admin/structure/paragraphs/%', + 'title' => 'Edit', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'sites/all/modules/paragraphs/paragraphs.admin.inc', )) ->values(array( - 'name' => 'BootstrapMiscTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/bootstrap.test', - 'module' => 'simpletest', - 'weight' => '0', + 'path' => 'admin/structure/paragraphs/%/fields', + 'load_functions' => 'a:1:{i:3;s:22:"paragraphs_bundle_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:29:"administer paragraphs bundles";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:15:"paragraphs_item";i:2;i:3;}', + 'delivery_callback' => '', + 'fit' => '29', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/structure/paragraphs/%', + 'tab_root' => 'admin/structure/paragraphs/%', + 'title' => 'Manage fields', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '1', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'BootstrapOverrideServerVariablesTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/bootstrap.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/paragraphs/%/fields/%', + 'load_functions' => 'a:2:{i:3;a:1:{s:22:"paragraphs_bundle_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:29:"administer paragraphs bundles";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}', + 'delivery_callback' => '', + 'fit' => '58', + 'number_parts' => '6', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/paragraphs/%/fields/%', + 'title' => '', + 'title_callback' => 'field_ui_menu_title', + 'title_arguments' => 'a:1:{i:0;i:5;}', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'BootstrapPageCacheTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/bootstrap.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/paragraphs/%/fields/%/delete', + 'load_functions' => 'a:2:{i:3;a:1:{s:22:"paragraphs_bundle_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:29:"administer paragraphs bundles";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:26:"field_ui_field_delete_form";i:1;i:5;}', + 'delivery_callback' => '', + 'fit' => '117', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/structure/paragraphs/%/fields/%', + 'tab_root' => 'admin/structure/paragraphs/%/fields/%', + 'title' => 'Delete', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '10', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', +)) +->values(array( + 'path' => 'admin/structure/paragraphs/%/fields/%/edit', + 'load_functions' => 'a:2:{i:3;a:1:{s:22:"paragraphs_bundle_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:29:"administer paragraphs bundles";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}', + 'delivery_callback' => '', + 'fit' => '117', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/structure/paragraphs/%/fields/%', + 'tab_root' => 'admin/structure/paragraphs/%/fields/%', + 'title' => 'Edit', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'BootstrapResettableStaticTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/bootstrap.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/paragraphs/%/fields/%/field-settings', + 'load_functions' => 'a:2:{i:3;a:1:{s:22:"paragraphs_bundle_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:29:"administer paragraphs bundles";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:28:"field_ui_field_settings_form";i:1;i:5;}', + 'delivery_callback' => '', + 'fit' => '117', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/structure/paragraphs/%/fields/%', + 'tab_root' => 'admin/structure/paragraphs/%/fields/%', + 'title' => 'Field settings', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'BootstrapTimerTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/bootstrap.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/paragraphs/%/fields/%/widget-type', + 'load_functions' => 'a:2:{i:3;a:1:{s:22:"paragraphs_bundle_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:15:"paragraphs_item";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:29:"administer paragraphs bundles";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:25:"field_ui_widget_type_form";i:1;i:5;}', + 'delivery_callback' => '', + 'fit' => '117', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/structure/paragraphs/%/fields/%', + 'tab_root' => 'admin/structure/paragraphs/%/fields/%', + 'title' => 'Widget type', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'BootstrapVariableTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/bootstrap.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/paragraphs/add', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"administer paragraphs bundles";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:28:"paragraphs_admin_bundle_form";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/structure/paragraphs', + 'tab_root' => 'admin/structure/paragraphs', + 'title' => 'Add Paragraph Bundle', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '388', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'sites/all/modules/paragraphs/paragraphs.admin.inc', )) ->values(array( - 'name' => 'BRPhoneNumberTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.br.test', - 'module' => 'phone', - 'weight' => '0', + 'path' => 'admin/structure/paragraphs/list', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"administer paragraphs bundles";}', + 'page_callback' => 'paragraphs_admin_bundle_overview', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/structure/paragraphs', + 'tab_root' => 'admin/structure/paragraphs', + 'title' => 'List', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', + 'weight' => '-10', + 'include_file' => 'sites/all/modules/paragraphs/paragraphs.admin.inc', )) ->values(array( - 'name' => 'CacheClearCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/cache.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/taxonomy', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:30:"taxonomy_overview_vocabularies";}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/taxonomy', + 'title' => 'Taxonomy', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'Manage tagging, categorization, and classification of your content.', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/taxonomy/taxonomy.admin.inc', )) ->values(array( - 'name' => 'CacheGetMultipleUnitTest', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/cache.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/taxonomy/%', + 'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}', + 'delivery_callback' => '', + 'fit' => '14', + 'number_parts' => '4', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/taxonomy/%', + 'title' => '', + 'title_callback' => 'entity_label', + 'title_arguments' => 'a:2:{i:0;s:19:"taxonomy_vocabulary";i:1;i:3;}', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/taxonomy/taxonomy.admin.inc', )) ->values(array( - 'name' => 'CacheIsEmptyCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/cache.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/taxonomy/%/add', + 'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:3:{i:0;s:18:"taxonomy_form_term";i:1;a:0:{}i:2;i:3;}', + 'delivery_callback' => '', + 'fit' => '29', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/structure/taxonomy/%', + 'tab_root' => 'admin/structure/taxonomy/%', + 'title' => 'Add term', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '388', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/taxonomy/taxonomy.admin.inc', )) ->values(array( - 'name' => 'CacheSavingCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/cache.test', - 'module' => 'simpletest', - 'weight' => '0', + 'path' => 'admin/structure/taxonomy/%/display', + 'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:19:"administer taxonomy";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:13:"taxonomy_term";i:2;i:3;i:3;s:7:"default";}', + 'delivery_callback' => '', + 'fit' => '29', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/structure/taxonomy/%', + 'tab_root' => 'admin/structure/taxonomy/%', + 'title' => 'Manage display', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '2', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CacheTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/cache.test', - 'module' => 'simpletest', - 'weight' => '0', + 'path' => 'admin/structure/taxonomy/%/display/default', + 'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}', + 'to_arg_functions' => '', + 'access_callback' => '_field_ui_view_mode_menu_access', + 'access_arguments' => 'a:6:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:7:"default";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:19:"administer taxonomy";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:13:"taxonomy_term";i:2;i:3;i:3;s:7:"default";}', + 'delivery_callback' => '', + 'fit' => '59', + 'number_parts' => '6', + 'context' => '1', + 'tab_parent' => 'admin/structure/taxonomy/%/display', + 'tab_root' => 'admin/structure/taxonomy/%', + 'title' => 'Default', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', + 'weight' => '-10', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CAPhoneNumberTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.ca.test', - 'module' => 'phone', + 'path' => 'admin/structure/taxonomy/%/display/full', + 'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}', + 'to_arg_functions' => '', + 'access_callback' => '_field_ui_view_mode_menu_access', + 'access_arguments' => 'a:6:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:4:"full";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:19:"administer taxonomy";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:13:"taxonomy_term";i:2;i:3;i:3;s:4:"full";}', + 'delivery_callback' => '', + 'fit' => '59', + 'number_parts' => '6', + 'context' => '1', + 'tab_parent' => 'admin/structure/taxonomy/%/display', + 'tab_root' => 'admin/structure/taxonomy/%', + 'title' => 'Taxonomy term page', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CascadingStylesheetsTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', - 'weight' => '0', + 'path' => 'admin/structure/taxonomy/%/edit', + 'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:24:"taxonomy_form_vocabulary";i:1;i:3;}', + 'delivery_callback' => '', + 'fit' => '29', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/structure/taxonomy/%', + 'tab_root' => 'admin/structure/taxonomy/%', + 'title' => 'Edit', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '-10', + 'include_file' => 'modules/taxonomy/taxonomy.admin.inc', )) ->values(array( - 'name' => 'CascadingStylesheetsUnitTest', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', - 'weight' => '0', + 'path' => 'admin/structure/taxonomy/%/fields', + 'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:19:"administer taxonomy";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:13:"taxonomy_term";i:2;i:3;}', + 'delivery_callback' => '', + 'fit' => '29', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/structure/taxonomy/%', + 'tab_root' => 'admin/structure/taxonomy/%', + 'title' => 'Manage fields', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '1', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CategorizeFeedItemTestCase', - 'type' => 'class', - 'filename' => 'modules/aggregator/aggregator.test', - 'module' => 'aggregator', + 'path' => 'admin/structure/taxonomy/%/fields/%', + 'load_functions' => 'a:2:{i:3;a:1:{s:37:"taxonomy_vocabulary_machine_name_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:19:"administer taxonomy";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}', + 'delivery_callback' => '', + 'fit' => '58', + 'number_parts' => '6', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/taxonomy/%/fields/%', + 'title' => '', + 'title_callback' => 'field_ui_menu_title', + 'title_arguments' => 'a:1:{i:0;i:5;}', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CategorizeFeedTestCase', - 'type' => 'class', - 'filename' => 'modules/aggregator/aggregator.test', - 'module' => 'aggregator', - 'weight' => '0', + 'path' => 'admin/structure/taxonomy/%/fields/%/delete', + 'load_functions' => 'a:2:{i:3;a:1:{s:37:"taxonomy_vocabulary_machine_name_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:19:"administer taxonomy";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:26:"field_ui_field_delete_form";i:1;i:5;}', + 'delivery_callback' => '', + 'fit' => '117', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/structure/taxonomy/%/fields/%', + 'tab_root' => 'admin/structure/taxonomy/%/fields/%', + 'title' => 'Delete', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '10', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CHPhoneNumberTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.ch.test', - 'module' => 'phone', + 'path' => 'admin/structure/taxonomy/%/fields/%/edit', + 'load_functions' => 'a:2:{i:3;a:1:{s:37:"taxonomy_vocabulary_machine_name_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:19:"administer taxonomy";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:5;}', + 'delivery_callback' => '', + 'fit' => '117', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/structure/taxonomy/%/fields/%', + 'tab_root' => 'admin/structure/taxonomy/%/fields/%', + 'title' => 'Edit', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CLPhoneNumberTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.cl.test', - 'module' => 'phone', + 'path' => 'admin/structure/taxonomy/%/fields/%/field-settings', + 'load_functions' => 'a:2:{i:3;a:1:{s:37:"taxonomy_vocabulary_machine_name_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:19:"administer taxonomy";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:28:"field_ui_field_settings_form";i:1;i:5;}', + 'delivery_callback' => '', + 'fit' => '117', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/structure/taxonomy/%/fields/%', + 'tab_root' => 'admin/structure/taxonomy/%/fields/%', + 'title' => 'Field settings', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CNPhoneNumberTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.cn.test', - 'module' => 'phone', + 'path' => 'admin/structure/taxonomy/%/fields/%/widget-type', + 'load_functions' => 'a:2:{i:3;a:1:{s:37:"taxonomy_vocabulary_machine_name_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}i:5;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:13:"taxonomy_term";i:1;i:3;i:2;s:1:"3";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:19:"administer taxonomy";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:25:"field_ui_widget_type_form";i:1;i:5;}', + 'delivery_callback' => '', + 'fit' => '117', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/structure/taxonomy/%/fields/%', + 'tab_root' => 'admin/structure/taxonomy/%/fields/%', + 'title' => 'Widget type', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'ColorTestCase', - 'type' => 'class', - 'filename' => 'modules/color/color.test', - 'module' => 'color', - 'weight' => '0', + 'path' => 'admin/structure/taxonomy/%/list', + 'load_functions' => 'a:1:{i:3;s:37:"taxonomy_vocabulary_machine_name_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}', + 'delivery_callback' => '', + 'fit' => '29', + 'number_parts' => '5', + 'context' => '1', + 'tab_parent' => 'admin/structure/taxonomy/%', + 'tab_root' => 'admin/structure/taxonomy/%', + 'title' => 'List', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', + 'weight' => '-20', + 'include_file' => 'modules/taxonomy/taxonomy.admin.inc', )) ->values(array( - 'name' => 'CommentActionsTestCase', - 'type' => 'class', - 'filename' => 'modules/comment/comment.test', - 'module' => 'comment', + 'path' => 'admin/structure/taxonomy/add', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:24:"taxonomy_form_vocabulary";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/structure/taxonomy', + 'tab_root' => 'admin/structure/taxonomy', + 'title' => 'Add vocabulary', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '388', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/taxonomy/taxonomy.admin.inc', )) ->values(array( - 'name' => 'CommentAnonymous', - 'type' => 'class', - 'filename' => 'modules/comment/comment.test', - 'module' => 'comment', - 'weight' => '0', + 'path' => 'admin/structure/taxonomy/list', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:30:"taxonomy_overview_vocabularies";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/structure/taxonomy', + 'tab_root' => 'admin/structure/taxonomy', + 'title' => 'List', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', + 'weight' => '-10', + 'include_file' => 'modules/taxonomy/taxonomy.admin.inc', )) ->values(array( - 'name' => 'CommentApprovalTest', - 'type' => 'class', - 'filename' => 'modules/comment/comment.test', - 'module' => 'comment', + 'path' => 'admin/structure/trigger', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}', + 'page_callback' => 'trigger_assign', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/trigger', + 'title' => 'Triggers', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'Configure when to execute actions.', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/trigger/trigger.admin.inc', )) ->values(array( - 'name' => 'CommentBlockFunctionalTest', - 'type' => 'class', - 'filename' => 'modules/comment/comment.test', - 'module' => 'comment', + 'path' => 'admin/structure/trigger/comment', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}', + 'page_callback' => 'trigger_assign', + 'page_arguments' => 'a:1:{i:0;s:7:"comment";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/structure/trigger', + 'tab_root' => 'admin/structure/trigger', + 'title' => 'Comment', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/trigger/trigger.admin.inc', )) ->values(array( - 'name' => 'CommentContentRebuild', - 'type' => 'class', - 'filename' => 'modules/comment/comment.test', - 'module' => 'comment', + 'path' => 'admin/structure/trigger/node', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}', + 'page_callback' => 'trigger_assign', + 'page_arguments' => 'a:1:{i:0;s:4:"node";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/structure/trigger', + 'tab_root' => 'admin/structure/trigger', + 'title' => 'Node', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/trigger/trigger.admin.inc', )) ->values(array( - 'name' => 'CommentController', - 'type' => 'class', - 'filename' => 'modules/comment/comment.module', - 'module' => 'comment', + 'path' => 'admin/structure/trigger/system', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}', + 'page_callback' => 'trigger_assign', + 'page_arguments' => 'a:1:{i:0;s:6:"system";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/structure/trigger', + 'tab_root' => 'admin/structure/trigger', + 'title' => 'System', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/trigger/trigger.admin.inc', )) ->values(array( - 'name' => 'CommentFieldsTest', - 'type' => 'class', - 'filename' => 'modules/comment/comment.test', - 'module' => 'comment', + 'path' => 'admin/structure/trigger/taxonomy', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}', + 'page_callback' => 'trigger_assign', + 'page_arguments' => 'a:1:{i:0;s:8:"taxonomy";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/structure/trigger', + 'tab_root' => 'admin/structure/trigger', + 'title' => 'Taxonomy', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/trigger/trigger.admin.inc', )) ->values(array( - 'name' => 'CommentHelperCase', - 'type' => 'class', - 'filename' => 'modules/comment/comment.test', - 'module' => 'comment', + 'path' => 'admin/structure/trigger/unassign', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'trigger_menu_unassign_access', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:16:"trigger_unassign";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/trigger/unassign', + 'title' => 'Unassign', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '4', + 'description' => 'Unassign an action from a trigger.', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/trigger/trigger.admin.inc', )) ->values(array( - 'name' => 'CommentInterfaceTest', - 'type' => 'class', - 'filename' => 'modules/comment/comment.test', - 'module' => 'comment', + 'path' => 'admin/structure/trigger/user', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}', + 'page_callback' => 'trigger_assign', + 'page_arguments' => 'a:1:{i:0;s:4:"user";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/structure/trigger', + 'tab_root' => 'admin/structure/trigger', + 'title' => 'User', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/trigger/trigger.admin.inc', )) ->values(array( - 'name' => 'CommentNodeAccessTest', - 'type' => 'class', - 'filename' => 'modules/comment/comment.test', - 'module' => 'comment', + 'path' => 'admin/structure/types', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}', + 'page_callback' => 'node_overview_types', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/types', + 'title' => 'Content types', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'Manage content types, including default status, front page promotion, comment settings, etc.', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/node/content_types.inc', )) ->values(array( - 'name' => 'CommentNodeChangesTestCase', - 'type' => 'class', - 'filename' => 'modules/comment/comment.test', - 'module' => 'comment', + 'path' => 'admin/structure/types/add', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:14:"node_type_form";}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/structure/types', + 'tab_root' => 'admin/structure/types', + 'title' => 'Add content type', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '388', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/node/content_types.inc', )) ->values(array( - 'name' => 'CommentPagerTest', - 'type' => 'class', - 'filename' => 'modules/comment/comment.test', - 'module' => 'comment', - 'weight' => '0', + 'path' => 'admin/structure/types/list', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}', + 'page_callback' => 'node_overview_types', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '15', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'admin/structure/types', + 'tab_root' => 'admin/structure/types', + 'title' => 'List', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', + 'weight' => '-10', + 'include_file' => 'modules/node/content_types.inc', )) ->values(array( - 'name' => 'CommentPreviewTest', - 'type' => 'class', - 'filename' => 'modules/comment/comment.test', - 'module' => 'comment', + 'path' => 'admin/structure/types/manage/%', + 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;i:4;}', + 'delivery_callback' => '', + 'fit' => '30', + 'number_parts' => '5', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/types/manage/%', + 'title' => 'Edit content type', + 'title_callback' => 'node_type_page_title', + 'title_arguments' => 'a:1:{i:0;i:4;}', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/node/content_types.inc', )) ->values(array( - 'name' => 'CommentRSSUnitTest', - 'type' => 'class', - 'filename' => 'modules/comment/comment.test', - 'module' => 'comment', - 'weight' => '0', + 'path' => 'admin/structure/types/manage/%/comment/display', + 'load_functions' => 'a:1:{i:4;s:22:"comment_node_type_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:7:"comment";i:2;i:4;i:3;s:7:"default";}', + 'delivery_callback' => '', + 'fit' => '123', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/structure/types/manage/%', + 'tab_root' => 'admin/structure/types/manage/%', + 'title' => 'Comment display', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '4', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CommentThreadingTestCase', - 'type' => 'class', - 'filename' => 'modules/comment/comment.test', - 'module' => 'comment', - 'weight' => '0', + 'path' => 'admin/structure/types/manage/%/comment/display/default', + 'load_functions' => 'a:1:{i:4;s:22:"comment_node_type_load";}', + 'to_arg_functions' => '', + 'access_callback' => '_field_ui_view_mode_menu_access', + 'access_arguments' => 'a:6:{i:0;s:7:"comment";i:1;i:4;i:2;s:7:"default";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:7:"comment";i:2;i:4;i:3;s:7:"default";}', + 'delivery_callback' => '', + 'fit' => '247', + 'number_parts' => '8', + 'context' => '1', + 'tab_parent' => 'admin/structure/types/manage/%/comment/display', + 'tab_root' => 'admin/structure/types/manage/%', + 'title' => 'Default', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', + 'weight' => '-10', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CommentTokenReplaceTestCase', - 'type' => 'class', - 'filename' => 'modules/comment/comment.test', - 'module' => 'comment', + 'path' => 'admin/structure/types/manage/%/comment/display/full', + 'load_functions' => 'a:1:{i:4;s:22:"comment_node_type_load";}', + 'to_arg_functions' => '', + 'access_callback' => '_field_ui_view_mode_menu_access', + 'access_arguments' => 'a:6:{i:0;s:7:"comment";i:1;i:4;i:2;s:4:"full";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:7:"comment";i:2;i:4;i:3;s:4:"full";}', + 'delivery_callback' => '', + 'fit' => '247', + 'number_parts' => '8', + 'context' => '1', + 'tab_parent' => 'admin/structure/types/manage/%/comment/display', + 'tab_root' => 'admin/structure/types/manage/%', + 'title' => 'Full comment', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CommentUpgradePathTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/upgrade.comment.test', - 'module' => 'simpletest', - 'weight' => '0', + 'path' => 'admin/structure/types/manage/%/comment/fields', + 'load_functions' => 'a:1:{i:4;s:22:"comment_node_type_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:7:"comment";i:2;i:4;}', + 'delivery_callback' => '', + 'fit' => '123', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/structure/types/manage/%', + 'tab_root' => 'admin/structure/types/manage/%', + 'title' => 'Comment fields', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '3', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CommonSizeTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/types/manage/%/comment/fields/%', + 'load_functions' => 'a:2:{i:4;a:1:{s:22:"comment_node_type_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:7;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:7;}', + 'delivery_callback' => '', + 'fit' => '246', + 'number_parts' => '8', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/types/manage/%/comment/fields/%', + 'title' => '', + 'title_callback' => 'field_ui_menu_title', + 'title_arguments' => 'a:1:{i:0;i:7;}', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CommonURLUnitTest', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/types/manage/%/comment/fields/%/delete', + 'load_functions' => 'a:2:{i:4;a:1:{s:22:"comment_node_type_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:7;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:26:"field_ui_field_delete_form";i:1;i:7;}', + 'delivery_callback' => '', + 'fit' => '493', + 'number_parts' => '9', + 'context' => '1', + 'tab_parent' => 'admin/structure/types/manage/%/comment/fields/%', + 'tab_root' => 'admin/structure/types/manage/%/comment/fields/%', + 'title' => 'Delete', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '10', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', +)) +->values(array( + 'path' => 'admin/structure/types/manage/%/comment/fields/%/edit', + 'load_functions' => 'a:2:{i:4;a:1:{s:22:"comment_node_type_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:7;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:7;}', + 'delivery_callback' => '', + 'fit' => '493', + 'number_parts' => '9', + 'context' => '1', + 'tab_parent' => 'admin/structure/types/manage/%/comment/fields/%', + 'tab_root' => 'admin/structure/types/manage/%/comment/fields/%', + 'title' => 'Edit', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CommonXssUnitTest', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/types/manage/%/comment/fields/%/field-settings', + 'load_functions' => 'a:2:{i:4;a:1:{s:22:"comment_node_type_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:7;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:28:"field_ui_field_settings_form";i:1;i:7;}', + 'delivery_callback' => '', + 'fit' => '493', + 'number_parts' => '9', + 'context' => '1', + 'tab_parent' => 'admin/structure/types/manage/%/comment/fields/%', + 'tab_root' => 'admin/structure/types/manage/%/comment/fields/%', + 'title' => 'Field settings', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'ConfirmFormTest', - 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'path' => 'admin/structure/types/manage/%/comment/fields/%/widget-type', + 'load_functions' => 'a:2:{i:4;a:1:{s:22:"comment_node_type_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:7;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:7:"comment";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:25:"field_ui_widget_type_form";i:1;i:7;}', + 'delivery_callback' => '', + 'fit' => '493', + 'number_parts' => '9', + 'context' => '1', + 'tab_parent' => 'admin/structure/types/manage/%/comment/fields/%', + 'tab_root' => 'admin/structure/types/manage/%/comment/fields/%', + 'title' => 'Widget type', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'ConnectionUnitTest', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'admin/structure/types/manage/%/delete', + 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:24:"node_type_delete_confirm";i:1;i:4;}', + 'delivery_callback' => '', + 'fit' => '61', + 'number_parts' => '6', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/types/manage/%/delete', + 'title' => 'Delete', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/node/content_types.inc', )) ->values(array( - 'name' => 'ContactPersonalTestCase', - 'type' => 'class', - 'filename' => 'modules/contact/contact.test', - 'module' => 'contact', - 'weight' => '0', + 'path' => 'admin/structure/types/manage/%/display', + 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"node";i:2;i:4;i:3;s:7:"default";}', + 'delivery_callback' => '', + 'fit' => '61', + 'number_parts' => '6', + 'context' => '1', + 'tab_parent' => 'admin/structure/types/manage/%', + 'tab_root' => 'admin/structure/types/manage/%', + 'title' => 'Manage display', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '2', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'ContactSitewideTestCase', - 'type' => 'class', - 'filename' => 'modules/contact/contact.test', - 'module' => 'contact', - 'weight' => '0', + 'path' => 'admin/structure/types/manage/%/display/default', + 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', + 'to_arg_functions' => '', + 'access_callback' => '_field_ui_view_mode_menu_access', + 'access_arguments' => 'a:6:{i:0;s:4:"node";i:1;i:4;i:2;s:7:"default";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"node";i:2;i:4;i:3;s:7:"default";}', + 'delivery_callback' => '', + 'fit' => '123', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/structure/types/manage/%/display', + 'tab_root' => 'admin/structure/types/manage/%', + 'title' => 'Default', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', + 'weight' => '-10', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'ContextualDynamicContextTestCase', - 'type' => 'class', - 'filename' => 'modules/contextual/contextual.test', - 'module' => 'contextual', + 'path' => 'admin/structure/types/manage/%/display/full', + 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', + 'to_arg_functions' => '', + 'access_callback' => '_field_ui_view_mode_menu_access', + 'access_arguments' => 'a:6:{i:0;s:4:"node";i:1;i:4;i:2;s:4:"full";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"node";i:2;i:4;i:3;s:4:"full";}', + 'delivery_callback' => '', + 'fit' => '123', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/structure/types/manage/%/display', + 'tab_root' => 'admin/structure/types/manage/%', + 'title' => 'Full content', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CronQueueTestCase', - 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', - 'weight' => '0', + 'path' => 'admin/structure/types/manage/%/display/print', + 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', + 'to_arg_functions' => '', + 'access_callback' => '_field_ui_view_mode_menu_access', + 'access_arguments' => 'a:6:{i:0;s:4:"node";i:1;i:4;i:2;s:5:"print";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"node";i:2;i:4;i:3;s:5:"print";}', + 'delivery_callback' => '', + 'fit' => '123', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/structure/types/manage/%/display', + 'tab_root' => 'admin/structure/types/manage/%', + 'title' => 'Print', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '5', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CronRunTestCase', - 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', - 'weight' => '0', + 'path' => 'admin/structure/types/manage/%/display/rss', + 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', + 'to_arg_functions' => '', + 'access_callback' => '_field_ui_view_mode_menu_access', + 'access_arguments' => 'a:6:{i:0;s:4:"node";i:1;i:4;i:2;s:3:"rss";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"node";i:2;i:4;i:3;s:3:"rss";}', + 'delivery_callback' => '', + 'fit' => '123', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/structure/types/manage/%/display', + 'tab_root' => 'admin/structure/types/manage/%', + 'title' => 'RSS', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '2', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CRPhoneNumberTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.cr.test', - 'module' => 'phone', - 'weight' => '0', + 'path' => 'admin/structure/types/manage/%/display/search_index', + 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', + 'to_arg_functions' => '', + 'access_callback' => '_field_ui_view_mode_menu_access', + 'access_arguments' => 'a:6:{i:0;s:4:"node";i:1;i:4;i:2;s:12:"search_index";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"node";i:2;i:4;i:3;s:12:"search_index";}', + 'delivery_callback' => '', + 'fit' => '123', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/structure/types/manage/%/display', + 'tab_root' => 'admin/structure/types/manage/%', + 'title' => 'Search index', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '3', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CSPhoneNumberTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.cs.test', - 'module' => 'phone', - 'weight' => '0', + 'path' => 'admin/structure/types/manage/%/display/search_result', + 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', + 'to_arg_functions' => '', + 'access_callback' => '_field_ui_view_mode_menu_access', + 'access_arguments' => 'a:6:{i:0;s:4:"node";i:1;i:4;i:2;s:13:"search_result";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"node";i:2;i:4;i:3;s:13:"search_result";}', + 'delivery_callback' => '', + 'fit' => '123', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/structure/types/manage/%/display', + 'tab_root' => 'admin/structure/types/manage/%', + 'title' => 'Search result highlighting input', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '4', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CtoolsContextKeywordsSubstitutionTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/ctools/tests/context.test', - 'module' => 'ctools_plugin_test', - 'weight' => '0', + 'path' => 'admin/structure/types/manage/%/display/teaser', + 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', + 'to_arg_functions' => '', + 'access_callback' => '_field_ui_view_mode_menu_access', + 'access_arguments' => 'a:6:{i:0;s:4:"node";i:1;i:4;i:2;s:6:"teaser";i:3;s:21:"field_ui_admin_access";i:4;s:11:"user_access";i:5;a:1:{i:0;s:24:"administer content types";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:30:"field_ui_display_overview_form";i:1;s:4:"node";i:2;i:4;i:3;s:6:"teaser";}', + 'delivery_callback' => '', + 'fit' => '123', + 'number_parts' => '7', + 'context' => '1', + 'tab_parent' => 'admin/structure/types/manage/%/display', + 'tab_root' => 'admin/structure/types/manage/%', + 'title' => 'Teaser', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '1', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CToolsCssCache', - 'type' => 'class', - 'filename' => 'sites/all/modules/ctools/includes/css-cache.inc', - 'module' => 'ctools', + 'path' => 'admin/structure/types/manage/%/edit', + 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;i:4;}', + 'delivery_callback' => '', + 'fit' => '61', + 'number_parts' => '6', + 'context' => '1', + 'tab_parent' => 'admin/structure/types/manage/%', + 'tab_root' => 'admin/structure/types/manage/%', + 'title' => 'Edit', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/node/content_types.inc', )) ->values(array( - 'name' => 'CtoolsCssTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/ctools/tests/css.test', - 'module' => 'ctools_plugin_test', - 'weight' => '0', + 'path' => 'admin/structure/types/manage/%/fields', + 'load_functions' => 'a:1:{i:4;s:14:"node_type_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:3:{i:0;s:28:"field_ui_field_overview_form";i:1;s:4:"node";i:2;i:4;}', + 'delivery_callback' => '', + 'fit' => '61', + 'number_parts' => '6', + 'context' => '1', + 'tab_parent' => 'admin/structure/types/manage/%', + 'tab_root' => 'admin/structure/types/manage/%', + 'title' => 'Manage fields', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '1', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CtoolsExportCrudTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/ctools/tests/ctools_export_test/ctools_export.test', - 'module' => 'ctools_export_test', + 'path' => 'admin/structure/types/manage/%/fields/%', + 'load_functions' => 'a:2:{i:4;a:1:{s:14:"node_type_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:6;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:6;}', + 'delivery_callback' => '', + 'fit' => '122', + 'number_parts' => '7', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/structure/types/manage/%/fields/%', + 'title' => '', + 'title_callback' => 'field_ui_menu_title', + 'title_arguments' => 'a:1:{i:0;i:6;}', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CtoolsMathExpressionStackTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/ctools/tests/math_expression_stack.test', - 'module' => 'ctools_plugin_test', - 'weight' => '0', + 'path' => 'admin/structure/types/manage/%/fields/%/delete', + 'load_functions' => 'a:2:{i:4;a:1:{s:14:"node_type_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:6;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:26:"field_ui_field_delete_form";i:1;i:6;}', + 'delivery_callback' => '', + 'fit' => '245', + 'number_parts' => '8', + 'context' => '1', + 'tab_parent' => 'admin/structure/types/manage/%/fields/%', + 'tab_root' => 'admin/structure/types/manage/%/fields/%', + 'title' => 'Delete', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '10', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CtoolsMathExpressionTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/ctools/tests/math_expression.test', - 'module' => 'ctools_plugin_test', + 'path' => 'admin/structure/types/manage/%/fields/%/edit', + 'load_functions' => 'a:2:{i:4;a:1:{s:14:"node_type_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:6;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:24:"field_ui_field_edit_form";i:1;i:6;}', + 'delivery_callback' => '', + 'fit' => '245', + 'number_parts' => '8', + 'context' => '1', + 'tab_parent' => 'admin/structure/types/manage/%/fields/%', + 'tab_root' => 'admin/structure/types/manage/%/fields/%', + 'title' => 'Edit', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CtoolsObjectCache', - 'type' => 'class', - 'filename' => 'sites/all/modules/ctools/tests/object_cache.test', - 'module' => 'ctools_plugin_test', + 'path' => 'admin/structure/types/manage/%/fields/%/field-settings', + 'load_functions' => 'a:2:{i:4;a:1:{s:14:"node_type_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:6;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:28:"field_ui_field_settings_form";i:1;i:6;}', + 'delivery_callback' => '', + 'fit' => '245', + 'number_parts' => '8', + 'context' => '1', + 'tab_parent' => 'admin/structure/types/manage/%/fields/%', + 'tab_root' => 'admin/structure/types/manage/%/fields/%', + 'title' => 'Field settings', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'CtoolsPluginsGetInfoTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/ctools/tests/ctools.plugins.test', - 'module' => 'ctools_plugin_test', + 'path' => 'admin/structure/types/manage/%/fields/%/widget-type', + 'load_functions' => 'a:2:{i:4;a:1:{s:14:"node_type_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}i:6;a:1:{s:18:"field_ui_menu_load";a:4:{i:0;s:4:"node";i:1;i:4;i:2;s:1:"4";i:3;s:4:"%map";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'field_ui_admin_access', + 'access_arguments' => 'a:2:{i:0;s:11:"user_access";i:1;a:1:{i:0;s:24:"administer content types";}}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:25:"field_ui_widget_type_form";i:1;i:6;}', + 'delivery_callback' => '', + 'fit' => '245', + 'number_parts' => '8', + 'context' => '1', + 'tab_parent' => 'admin/structure/types/manage/%/fields/%', + 'tab_root' => 'admin/structure/types/manage/%/fields/%', + 'title' => 'Widget type', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/field_ui/field_ui.admin.inc', )) ->values(array( - 'name' => 'ctools_context', - 'type' => 'class', - 'filename' => 'sites/all/modules/ctools/includes/context.inc', - 'module' => 'ctools', - 'weight' => '0', + 'path' => 'admin/tasks', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', + 'page_callback' => 'system_admin_menu_block_page', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '1', + 'tab_parent' => 'admin', + 'tab_root' => 'admin', + 'title' => 'Tasks', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', + 'weight' => '-20', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'name' => 'ctools_context_optional', - 'type' => 'class', - 'filename' => 'sites/all/modules/ctools/includes/context.inc', - 'module' => 'ctools', + 'path' => 'admin/update/ready', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'update_manager_access', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:32:"update_manager_update_ready_form";}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'admin/update/ready', + 'title' => 'Ready to update', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/update/update.manager.inc', )) ->values(array( - 'name' => 'ctools_context_required', - 'type' => 'class', - 'filename' => 'sites/all/modules/ctools/includes/context.inc', - 'module' => 'ctools', - 'weight' => '0', + 'path' => 'aggregator', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}', + 'page_callback' => 'aggregator_page_last', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '1', + 'number_parts' => '1', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'aggregator', + 'title' => 'Feed aggregator', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', + 'weight' => '5', + 'include_file' => 'modules/aggregator/aggregator.pages.inc', )) ->values(array( - 'name' => 'ctools_export_ui', - 'type' => 'class', - 'filename' => 'sites/all/modules/ctools/plugins/export_ui/ctools_export_ui.class.php', - 'module' => 'ctools', + 'path' => 'aggregator/categories', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '_aggregator_has_categories', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'aggregator_page_categories', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'aggregator/categories', + 'title' => 'Categories', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/aggregator/aggregator.pages.inc', )) ->values(array( - 'name' => 'ctools_math_expr', - 'type' => 'class', - 'filename' => 'sites/all/modules/ctools/includes/math-expr.inc', - 'module' => 'ctools', + 'path' => 'aggregator/categories/%', + 'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}', + 'page_callback' => 'aggregator_page_category', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '6', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'aggregator/categories/%', + 'title' => '', + 'title_callback' => '_aggregator_category_title', + 'title_arguments' => 'a:1:{i:0;i:2;}', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/aggregator/aggregator.pages.inc', )) ->values(array( - 'name' => 'ctools_math_expr_stack', - 'type' => 'class', - 'filename' => 'sites/all/modules/ctools/includes/math-expr.inc', - 'module' => 'ctools', + 'path' => 'aggregator/categories/%/categorize', + 'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:29:"aggregator_page_category_form";i:1;i:2;}', + 'delivery_callback' => '', + 'fit' => '13', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'aggregator/categories/%', + 'tab_root' => 'aggregator/categories/%', + 'title' => 'Categorize', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/aggregator/aggregator.pages.inc', )) ->values(array( - 'name' => 'ctools_stylizer_image_processor', - 'type' => 'class', - 'filename' => 'sites/all/modules/ctools/includes/stylizer.inc', - 'module' => 'ctools', - 'weight' => '0', + 'path' => 'aggregator/categories/%/configure', + 'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:24:"aggregator_form_category";i:1;i:2;}', + 'delivery_callback' => '', + 'fit' => '13', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'aggregator/categories/%', + 'tab_root' => 'aggregator/categories/%', + 'title' => 'Configure', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '1', + 'include_file' => 'modules/aggregator/aggregator.admin.inc', )) ->values(array( - 'name' => 'DashboardBlocksTestCase', - 'type' => 'class', - 'filename' => 'modules/dashboard/dashboard.test', - 'module' => 'dashboard', - 'weight' => '0', + 'path' => 'aggregator/categories/%/view', + 'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}', + 'page_callback' => 'aggregator_page_category', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '13', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'aggregator/categories/%', + 'tab_root' => 'aggregator/categories/%', + 'title' => 'View', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', + 'weight' => '-10', + 'include_file' => 'modules/aggregator/aggregator.pages.inc', )) ->values(array( - 'name' => 'Database', - 'type' => 'class', - 'filename' => 'includes/database/database.inc', - 'module' => '', + 'path' => 'aggregator/opml', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}', + 'page_callback' => 'aggregator_page_opml', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'aggregator/opml', + 'title' => 'OPML feed', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/aggregator/aggregator.pages.inc', )) ->values(array( - 'name' => 'DatabaseAlterTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'aggregator/rss', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}', + 'page_callback' => 'aggregator_page_rss', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'aggregator/rss', + 'title' => 'RSS feed', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/aggregator/aggregator.pages.inc', )) ->values(array( - 'name' => 'DatabaseBasicSyntaxTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'aggregator/sources', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}', + 'page_callback' => 'aggregator_page_sources', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'aggregator/sources', + 'title' => 'Sources', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/aggregator/aggregator.pages.inc', )) ->values(array( - 'name' => 'DatabaseCaseSensitivityTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'aggregator/sources/%', + 'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}', + 'page_callback' => 'aggregator_page_source', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '6', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'aggregator/sources/%', + 'title' => '', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/aggregator/aggregator.pages.inc', )) ->values(array( - 'name' => 'DatabaseCondition', - 'type' => 'class', - 'filename' => 'includes/database/query.inc', - 'module' => '', + 'path' => 'aggregator/sources/%/categorize', + 'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:27:"aggregator_page_source_form";i:1;i:2;}', + 'delivery_callback' => '', + 'fit' => '13', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'aggregator/sources/%', + 'tab_root' => 'aggregator/sources/%', + 'title' => 'Categorize', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/aggregator/aggregator.pages.inc', )) ->values(array( - 'name' => 'DatabaseConnection', - 'type' => 'class', - 'filename' => 'includes/database/database.inc', - 'module' => '', - 'weight' => '0', + 'path' => 'aggregator/sources/%/configure', + 'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:20:"aggregator_form_feed";i:1;i:2;}', + 'delivery_callback' => '', + 'fit' => '13', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'aggregator/sources/%', + 'tab_root' => 'aggregator/sources/%', + 'title' => 'Configure', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '1', + 'include_file' => 'modules/aggregator/aggregator.admin.inc', )) ->values(array( - 'name' => 'DatabaseConnectionNotDefinedException', - 'type' => 'class', - 'filename' => 'includes/database/database.inc', - 'module' => '', - 'weight' => '0', + 'path' => 'aggregator/sources/%/view', + 'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}', + 'page_callback' => 'aggregator_page_source', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '13', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'aggregator/sources/%', + 'tab_root' => 'aggregator/sources/%', + 'title' => 'View', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', + 'weight' => '-10', + 'include_file' => 'modules/aggregator/aggregator.pages.inc', )) ->values(array( - 'name' => 'DatabaseConnectionTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'batch', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '1', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'system_batch_page', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '1', + 'number_parts' => '1', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'batch', + 'title' => '', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '_system_batch_theme', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'name' => 'DatabaseConnection_mysql', - 'type' => 'class', - 'filename' => 'includes/database/mysql/database.inc', - 'module' => '', + 'path' => 'blog', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', + 'page_callback' => 'blog_page_last', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '1', + 'number_parts' => '1', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'blog', + 'title' => 'Blogs', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '20', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/blog/blog.pages.inc', )) ->values(array( - 'name' => 'DatabaseConnection_pgsql', - 'type' => 'class', - 'filename' => 'includes/database/pgsql/database.inc', - 'module' => '', + 'path' => 'blog/%', + 'load_functions' => 'a:1:{i:1;s:22:"user_uid_optional_load";}', + 'to_arg_functions' => 'a:1:{i:1;s:24:"user_uid_optional_to_arg";}', + 'access_callback' => 'blog_page_user_access', + 'access_arguments' => 'a:1:{i:0;i:1;}', + 'page_callback' => 'blog_page_user', + 'page_arguments' => 'a:1:{i:0;i:1;}', + 'delivery_callback' => '', + 'fit' => '2', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'blog/%', + 'title' => 'My blog', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/blog/blog.pages.inc', )) ->values(array( - 'name' => 'DatabaseConnection_sqlite', - 'type' => 'class', - 'filename' => 'includes/database/sqlite/database.inc', - 'module' => '', + 'path' => 'blog/%/feed', + 'load_functions' => 'a:1:{i:1;s:9:"user_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'blog_page_user_access', + 'access_arguments' => 'a:1:{i:0;i:1;}', + 'page_callback' => 'blog_feed_user', + 'page_arguments' => 'a:1:{i:0;i:1;}', + 'delivery_callback' => '', + 'fit' => '5', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'blog/%/feed', + 'title' => 'Blogs', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/blog/blog.pages.inc', )) ->values(array( - 'name' => 'DatabaseDeleteTruncateTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'blog/feed', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', + 'page_callback' => 'blog_feed_last', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'blog/feed', + 'title' => 'Blogs', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/blog/blog.pages.inc', )) ->values(array( - 'name' => 'DatabaseDriverNotSpecifiedException', - 'type' => 'class', - 'filename' => 'includes/database/database.inc', - 'module' => '', + 'path' => 'book', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', + 'page_callback' => 'book_render', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '1', + 'number_parts' => '1', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'book', + 'title' => 'Books', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '20', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/book/book.pages.inc', )) ->values(array( - 'name' => 'DatabaseEmptyStatementTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'book/export/%/%', + 'load_functions' => 'a:2:{i:2;N;i:3;N;}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:31:"access printer-friendly version";}', + 'page_callback' => 'book_export', + 'page_arguments' => 'a:2:{i:0;i:2;i:1;i:3;}', + 'delivery_callback' => '', + 'fit' => '12', + 'number_parts' => '4', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'book/export/%/%', + 'title' => '', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/book/book.pages.inc', )) ->values(array( - 'name' => 'DatabaseFetch2TestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'comment/%', + 'load_functions' => 'a:1:{i:1;N;}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:15:"access comments";}', + 'page_callback' => 'comment_permalink', + 'page_arguments' => 'a:1:{i:0;i:1;}', + 'delivery_callback' => '', + 'fit' => '2', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'comment/%', + 'title' => 'Comment permalink', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => '', )) ->values(array( - 'name' => 'DatabaseFetchTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', - 'weight' => '0', + 'path' => 'comment/%/approve', + 'load_functions' => 'a:1:{i:1;N;}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}', + 'page_callback' => 'comment_approve', + 'page_arguments' => 'a:1:{i:0;i:1;}', + 'delivery_callback' => '', + 'fit' => '5', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'comment/%/approve', + 'title' => 'Approve', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', + 'weight' => '1', + 'include_file' => 'modules/comment/comment.pages.inc', )) ->values(array( - 'name' => 'DatabaseInsertDefaultsTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', - 'weight' => '0', + 'path' => 'comment/%/delete', + 'load_functions' => 'a:1:{i:1;N;}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}', + 'page_callback' => 'comment_confirm_delete_page', + 'page_arguments' => 'a:1:{i:0;i:1;}', + 'delivery_callback' => '', + 'fit' => '5', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'comment/%', + 'tab_root' => 'comment/%', + 'title' => 'Delete', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '2', + 'include_file' => 'modules/comment/comment.admin.inc', )) ->values(array( - 'name' => 'DatabaseInsertLOBTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'comment/%/edit', + 'load_functions' => 'a:1:{i:1;s:12:"comment_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'comment_access', + 'access_arguments' => 'a:2:{i:0;s:4:"edit";i:1;i:1;}', + 'page_callback' => 'comment_edit_page', + 'page_arguments' => 'a:1:{i:0;i:1;}', + 'delivery_callback' => '', + 'fit' => '5', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'comment/%', + 'tab_root' => 'comment/%', + 'title' => 'Edit', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => '', )) ->values(array( - 'name' => 'DatabaseInsertTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', - 'weight' => '0', + 'path' => 'comment/%/view', + 'load_functions' => 'a:1:{i:1;N;}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:15:"access comments";}', + 'page_callback' => 'comment_permalink', + 'page_arguments' => 'a:1:{i:0;i:1;}', + 'delivery_callback' => '', + 'fit' => '5', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'comment/%', + 'tab_root' => 'comment/%', + 'title' => 'View comment', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', + 'weight' => '-10', + 'include_file' => '', )) ->values(array( - 'name' => 'DatabaseInvalidDataTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'comment/reply/%', + 'load_functions' => 'a:1:{i:2;s:9:"node_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'node_access', + 'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:2;}', + 'page_callback' => 'comment_reply', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '6', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'comment/reply/%', + 'title' => 'Add new comment', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/comment/comment.pages.inc', )) ->values(array( - 'name' => 'DatabaseLog', - 'type' => 'class', - 'filename' => 'includes/database/log.inc', - 'module' => '', + 'path' => 'contact', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:29:"access site-wide contact form";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:17:"contact_site_form";}', + 'delivery_callback' => '', + 'fit' => '1', + 'number_parts' => '1', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'contact', + 'title' => 'Contact', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '20', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/contact/contact.pages.inc', )) ->values(array( - 'name' => 'DatabaseLoggingTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'email/%/%/%', + 'load_functions' => 'a:3:{i:1;N;i:2;N;i:3;N;}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', + 'page_callback' => 'email_mail_page', + 'page_arguments' => 'a:3:{i:0;i:1;i:1;i:2;i:2;i:3;}', + 'delivery_callback' => '', + 'fit' => '8', + 'number_parts' => '4', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'email/%/%/%', + 'title' => 'Email Contact Form', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => '', )) ->values(array( - 'name' => 'DatabaseMergeTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'entityreference/autocomplete/single/%/%/%', + 'load_functions' => 'a:3:{i:3;N;i:4;N;i:5;N;}', + 'to_arg_functions' => '', + 'access_callback' => 'entityreference_autocomplete_access_callback', + 'access_arguments' => 'a:4:{i:0;i:2;i:1;i:3;i:2;i:4;i:3;i:5;}', + 'page_callback' => 'entityreference_autocomplete_callback', + 'page_arguments' => 'a:4:{i:0;i:2;i:1;i:3;i:2;i:4;i:3;i:5;}', + 'delivery_callback' => '', + 'fit' => '56', + 'number_parts' => '6', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'entityreference/autocomplete/single/%/%/%', + 'title' => 'Entity Reference Autocomplete', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => '', )) ->values(array( - 'name' => 'DatabaseNextIdCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'entityreference/autocomplete/tags/%/%/%', + 'load_functions' => 'a:3:{i:3;N;i:4;N;i:5;N;}', + 'to_arg_functions' => '', + 'access_callback' => 'entityreference_autocomplete_access_callback', + 'access_arguments' => 'a:4:{i:0;i:2;i:1;i:3;i:2;i:4;i:3;i:5;}', + 'page_callback' => 'entityreference_autocomplete_callback', + 'page_arguments' => 'a:4:{i:0;i:2;i:1;i:3;i:2;i:4;i:3;i:5;}', + 'delivery_callback' => '', + 'fit' => '56', + 'number_parts' => '6', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'entityreference/autocomplete/tags/%/%/%', + 'title' => 'Entity Reference Autocomplete', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => '', )) ->values(array( - 'name' => 'DatabaseQueryTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'field-collection/field-field-collection-test/%', + 'load_functions' => 'a:1:{i:2;s:26:"field_collection_item_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'entity_access', + 'access_arguments' => 'a:3:{i:0;s:4:"view";i:1;s:21:"field_collection_item";i:2;i:2;}', + 'page_callback' => 'field_collection_item_page_view', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '6', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'field-collection/field-field-collection-test/%', + 'title' => '', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'sites/all/modules/field_collection/field_collection.pages.inc', )) ->values(array( - 'name' => 'DatabaseRangeQueryTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'field-collection/field-field-collection-test/%/delete', + 'load_functions' => 'a:1:{i:2;s:26:"field_collection_item_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'entity_access', + 'access_arguments' => 'a:3:{i:0;s:6:"delete";i:1;s:21:"field_collection_item";i:2;i:2;}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:36:"field_collection_item_delete_confirm";i:1;i:2;}', + 'delivery_callback' => '', + 'fit' => '13', + 'number_parts' => '4', + 'context' => '2', + 'tab_parent' => 'field-collection/field-field-collection-test/%', + 'tab_root' => 'field-collection/field-field-collection-test/%', + 'title' => 'Delete', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'sites/all/modules/field_collection/field_collection.pages.inc', )) ->values(array( - 'name' => 'DatabaseRegressionTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'field-collection/field-field-collection-test/%/edit', + 'load_functions' => 'a:1:{i:2;s:26:"field_collection_item_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'entity_access', + 'access_arguments' => 'a:3:{i:0;s:6:"update";i:1;s:21:"field_collection_item";i:2;i:2;}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:26:"field_collection_item_form";i:1;i:2;}', + 'delivery_callback' => '', + 'fit' => '13', + 'number_parts' => '4', + 'context' => '3', + 'tab_parent' => 'field-collection/field-field-collection-test/%', + 'tab_root' => 'field-collection/field-field-collection-test/%', + 'title' => 'Edit', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'sites/all/modules/field_collection/field_collection.pages.inc', )) ->values(array( - 'name' => 'DatabaseSchema', - 'type' => 'class', - 'filename' => 'includes/database/schema.inc', - 'module' => '', + 'path' => 'field-collection/field-field-collection-test/%/revisions/%', + 'load_functions' => 'a:2:{i:2;s:26:"field_collection_item_load";i:4;s:35:"field_collection_item_revision_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'entity_access', + 'access_arguments' => 'a:3:{i:0;s:4:"view";i:1;s:21:"field_collection_item";i:2;i:4;}', + 'page_callback' => 'field_collection_item_page_view', + 'page_arguments' => 'a:1:{i:0;i:4;}', + 'delivery_callback' => '', + 'fit' => '26', + 'number_parts' => '5', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'field-collection/field-field-collection-test/%/revisions/%', + 'title' => '', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'sites/all/modules/field_collection/field_collection.pages.inc', )) ->values(array( - 'name' => 'DatabaseSchemaObjectDoesNotExistException', - 'type' => 'class', - 'filename' => 'includes/database/schema.inc', - 'module' => '', - 'weight' => '0', + 'path' => 'field-collection/field-field-collection-test/%/view', + 'load_functions' => 'a:1:{i:2;s:26:"field_collection_item_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'entity_access', + 'access_arguments' => 'a:3:{i:0;s:4:"view";i:1;s:21:"field_collection_item";i:2;i:2;}', + 'page_callback' => 'field_collection_item_page_view', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '13', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'field-collection/field-field-collection-test/%', + 'tab_root' => 'field-collection/field-field-collection-test/%', + 'title' => 'View', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', + 'weight' => '-10', + 'include_file' => 'sites/all/modules/field_collection/field_collection.pages.inc', )) ->values(array( - 'name' => 'DatabaseSchemaObjectExistsException', - 'type' => 'class', - 'filename' => 'includes/database/schema.inc', - 'module' => '', + 'path' => 'field-collection/field-field-collection-test/add/%/%', + 'load_functions' => 'a:2:{i:3;N;i:4;N;}', + 'to_arg_functions' => '', + 'access_callback' => '1', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'field_collection_item_add', + 'page_arguments' => 'a:3:{i:0;s:27:"field_field_collection_test";i:1;i:3;i:2;i:4;}', + 'delivery_callback' => '', + 'fit' => '28', + 'number_parts' => '5', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'field-collection/field-field-collection-test/add/%/%', + 'title' => '', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'sites/all/modules/field_collection/field_collection.pages.inc', )) ->values(array( - 'name' => 'DatabaseSchema_mysql', - 'type' => 'class', - 'filename' => 'includes/database/mysql/schema.inc', - 'module' => '', + 'path' => 'file/ajax', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', + 'page_callback' => 'file_ajax_upload', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => 'ajax_deliver', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'file/ajax', + 'title' => '', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => 'ajax_base_page_theme', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => '', )) ->values(array( - 'name' => 'DatabaseSchema_pgsql', - 'type' => 'class', - 'filename' => 'includes/database/pgsql/schema.inc', - 'module' => '', + 'path' => 'file/progress', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', + 'page_callback' => 'file_ajax_progress', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'file/progress', + 'title' => '', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => 'ajax_base_page_theme', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => '', )) ->values(array( - 'name' => 'DatabaseSchema_sqlite', - 'type' => 'class', - 'filename' => 'includes/database/sqlite/schema.inc', - 'module' => '', + 'path' => 'filter/tips', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '1', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'filter_tips_long', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'filter/tips', + 'title' => 'Compose tips', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '20', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/filter/filter.pages.inc', )) ->values(array( - 'name' => 'DatabaseSelectCloneTest', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'filter/tips/%', + 'load_functions' => 'a:1:{i:2;s:18:"filter_format_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'filter_access', + 'access_arguments' => 'a:1:{i:0;i:2;}', + 'page_callback' => 'filter_tips_long', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '6', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'filter/tips/%', + 'title' => 'Compose tips', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/filter/filter.pages.inc', )) ->values(array( - 'name' => 'DatabaseSelectComplexTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'forum', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', + 'page_callback' => 'forum_page', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '1', + 'number_parts' => '1', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'forum', + 'title' => 'Forums', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/forum/forum.pages.inc', )) ->values(array( - 'name' => 'DatabaseSelectComplexTestCase2', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'forum/%', + 'load_functions' => 'a:1:{i:1;s:16:"forum_forum_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', + 'page_callback' => 'forum_page', + 'page_arguments' => 'a:1:{i:0;i:1;}', + 'delivery_callback' => '', + 'fit' => '2', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'forum/%', + 'title' => 'Forums', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/forum/forum.pages.inc', )) ->values(array( - 'name' => 'DatabaseSelectOrderedTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'node', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', + 'page_callback' => 'node_page_default', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '1', + 'number_parts' => '1', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'node', + 'title' => '', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => '', )) ->values(array( - 'name' => 'DatabaseSelectPagerDefaultTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'node/%', + 'load_functions' => 'a:1:{i:1;s:9:"node_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'node_access', + 'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}', + 'page_callback' => 'node_page_view', + 'page_arguments' => 'a:1:{i:0;i:1;}', + 'delivery_callback' => '', + 'fit' => '2', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'node/%', + 'title' => '', + 'title_callback' => 'node_page_title', + 'title_arguments' => 'a:1:{i:0;i:1;}', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => '', )) ->values(array( - 'name' => 'DatabaseSelectSubqueryTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', - 'weight' => '0', + 'path' => 'node/%/delete', + 'load_functions' => 'a:1:{i:1;s:9:"node_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'node_access', + 'access_arguments' => 'a:2:{i:0;s:6:"delete";i:1;i:1;}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:19:"node_delete_confirm";i:1;i:1;}', + 'delivery_callback' => '', + 'fit' => '5', + 'number_parts' => '3', + 'context' => '2', + 'tab_parent' => 'node/%', + 'tab_root' => 'node/%', + 'title' => 'Delete', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '1', + 'include_file' => 'modules/node/node.pages.inc', )) ->values(array( - 'name' => 'DatabaseSelectTableSortDefaultTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'node/%/edit', + 'load_functions' => 'a:1:{i:1;s:9:"node_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'node_access', + 'access_arguments' => 'a:2:{i:0;s:6:"update";i:1;i:1;}', + 'page_callback' => 'node_page_edit', + 'page_arguments' => 'a:1:{i:0;i:1;}', + 'delivery_callback' => '', + 'fit' => '5', + 'number_parts' => '3', + 'context' => '3', + 'tab_parent' => 'node/%', + 'tab_root' => 'node/%', + 'title' => 'Edit', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/node/node.pages.inc', )) ->values(array( - 'name' => 'DatabaseSelectTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', - 'weight' => '0', + 'path' => 'node/%/outline', + 'load_functions' => 'a:1:{i:1;s:9:"node_load";}', + 'to_arg_functions' => '', + 'access_callback' => '_book_outline_access', + 'access_arguments' => 'a:1:{i:0;i:1;}', + 'page_callback' => 'book_outline', + 'page_arguments' => 'a:1:{i:0;i:1;}', + 'delivery_callback' => '', + 'fit' => '5', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'node/%', + 'tab_root' => 'node/%', + 'title' => 'Outline', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '2', + 'include_file' => 'modules/book/book.pages.inc', )) ->values(array( - 'name' => 'DatabaseSerializeQueryTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'node/%/outline/remove', + 'load_functions' => 'a:1:{i:1;s:9:"node_load";}', + 'to_arg_functions' => '', + 'access_callback' => '_book_outline_remove_access', + 'access_arguments' => 'a:1:{i:0;i:1;}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:16:"book_remove_form";i:1;i:1;}', + 'delivery_callback' => '', + 'fit' => '11', + 'number_parts' => '4', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'node/%/outline/remove', + 'title' => 'Remove from outline', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/book/book.pages.inc', )) ->values(array( - 'name' => 'DatabaseStatementBase', - 'type' => 'class', - 'filename' => 'includes/database/database.inc', - 'module' => '', - 'weight' => '0', + 'path' => 'node/%/revisions', + 'load_functions' => 'a:1:{i:1;s:9:"node_load";}', + 'to_arg_functions' => '', + 'access_callback' => '_node_revision_access', + 'access_arguments' => 'a:1:{i:0;i:1;}', + 'page_callback' => 'node_revision_overview', + 'page_arguments' => 'a:1:{i:0;i:1;}', + 'delivery_callback' => '', + 'fit' => '5', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'node/%', + 'tab_root' => 'node/%', + 'title' => 'Revisions', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '2', + 'include_file' => 'modules/node/node.pages.inc', )) ->values(array( - 'name' => 'DatabaseStatementEmpty', - 'type' => 'class', - 'filename' => 'includes/database/database.inc', - 'module' => '', + 'path' => 'node/%/revisions/%/delete', + 'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}', + 'to_arg_functions' => '', + 'access_callback' => '_node_revision_access', + 'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"delete";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:28:"node_revision_delete_confirm";i:1;i:1;}', + 'delivery_callback' => '', + 'fit' => '21', + 'number_parts' => '5', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'node/%/revisions/%/delete', + 'title' => 'Delete earlier revision', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/node/node.pages.inc', )) ->values(array( - 'name' => 'DatabaseStatementInterface', - 'type' => 'interface', - 'filename' => 'includes/database/database.inc', - 'module' => '', + 'path' => 'node/%/revisions/%/revert', + 'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}', + 'to_arg_functions' => '', + 'access_callback' => '_node_revision_access', + 'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"update";}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:28:"node_revision_revert_confirm";i:1;i:1;}', + 'delivery_callback' => '', + 'fit' => '21', + 'number_parts' => '5', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'node/%/revisions/%/revert', + 'title' => 'Revert to earlier revision', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/node/node.pages.inc', )) ->values(array( - 'name' => 'DatabaseStatementPrefetch', - 'type' => 'class', - 'filename' => 'includes/database/prefetch.inc', - 'module' => '', + 'path' => 'node/%/revisions/%/view', + 'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}', + 'to_arg_functions' => '', + 'access_callback' => '_node_revision_access', + 'access_arguments' => 'a:1:{i:0;i:1;}', + 'page_callback' => 'node_show', + 'page_arguments' => 'a:2:{i:0;i:1;i:1;b:1;}', + 'delivery_callback' => '', + 'fit' => '21', + 'number_parts' => '5', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'node/%/revisions/%/view', + 'title' => 'Revisions', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => '', )) ->values(array( - 'name' => 'DatabaseStatement_sqlite', - 'type' => 'class', - 'filename' => 'includes/database/sqlite/database.inc', - 'module' => '', - 'weight' => '0', + 'path' => 'node/%/track', + 'load_functions' => 'a:1:{i:1;s:9:"node_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}', + 'page_callback' => 'statistics_node_tracker', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '5', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'node/%', + 'tab_root' => 'node/%', + 'title' => 'Track', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '2', + 'include_file' => 'modules/statistics/statistics.pages.inc', )) ->values(array( - 'name' => 'DatabaseTaggingTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', - 'weight' => '0', + 'path' => 'node/%/translate', + 'load_functions' => 'a:1:{i:1;s:9:"node_load";}', + 'to_arg_functions' => '', + 'access_callback' => '_translation_tab_access', + 'access_arguments' => 'a:1:{i:0;i:1;}', + 'page_callback' => 'translation_node_overview', + 'page_arguments' => 'a:1:{i:0;i:1;}', + 'delivery_callback' => '', + 'fit' => '5', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'node/%', + 'tab_root' => 'node/%', + 'title' => 'Translate', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '2', + 'include_file' => 'modules/translation/translation.pages.inc', )) ->values(array( - 'name' => 'DatabaseTaskException', - 'type' => 'class', - 'filename' => 'includes/install.inc', - 'module' => '', - 'weight' => '0', + 'path' => 'node/%/view', + 'load_functions' => 'a:1:{i:1;s:9:"node_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'node_access', + 'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}', + 'page_callback' => 'node_page_view', + 'page_arguments' => 'a:1:{i:0;i:1;}', + 'delivery_callback' => '', + 'fit' => '5', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'node/%', + 'tab_root' => 'node/%', + 'title' => 'View', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', + 'weight' => '-10', + 'include_file' => '', )) ->values(array( - 'name' => 'DatabaseTasks', - 'type' => 'class', - 'filename' => 'includes/install.inc', - 'module' => '', + 'path' => 'node/add', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '_node_add_access', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'node_add_page', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'node/add', + 'title' => 'Add content', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/node/node.pages.inc', )) ->values(array( - 'name' => 'DatabaseTasks_mysql', - 'type' => 'class', - 'filename' => 'includes/database/mysql/install.inc', - 'module' => '', + 'path' => 'node/add/article', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'node_access', + 'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:7:"article";}', + 'page_callback' => 'node_add', + 'page_arguments' => 'a:1:{i:0;s:7:"article";}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'node/add/article', + 'title' => 'Article', + 'title_callback' => 'check_plain', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'Use articles for time-sensitive content like news, press releases or blog posts.', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/node/node.pages.inc', )) ->values(array( - 'name' => 'DatabaseTasks_pgsql', - 'type' => 'class', - 'filename' => 'includes/database/pgsql/install.inc', - 'module' => '', + 'path' => 'node/add/blog', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'node_access', + 'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:4:"blog";}', + 'page_callback' => 'node_add', + 'page_arguments' => 'a:1:{i:0;s:4:"blog";}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'node/add/blog', + 'title' => 'Blog entry', + 'title_callback' => 'check_plain', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'Use for multi-user blogs. Every user gets a personal blog.', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/node/node.pages.inc', )) ->values(array( - 'name' => 'DatabaseTasks_sqlite', - 'type' => 'class', - 'filename' => 'includes/database/sqlite/install.inc', - 'module' => '', + 'path' => 'node/add/book', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'node_access', + 'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:4:"book";}', + 'page_callback' => 'node_add', + 'page_arguments' => 'a:1:{i:0;s:4:"book";}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'node/add/book', + 'title' => 'Book page', + 'title_callback' => 'check_plain', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'Books have a built-in hierarchical navigation. Use for handbooks or tutorials.', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/node/node.pages.inc', )) ->values(array( - 'name' => 'DatabaseTemporaryQueryTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'node/add/forum', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'node_access', + 'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:5:"forum";}', + 'page_callback' => 'node_add', + 'page_arguments' => 'a:1:{i:0;s:5:"forum";}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'node/add/forum', + 'title' => 'Forum topic', + 'title_callback' => 'check_plain', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'A forum topic starts a new discussion thread within a forum.', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/node/node.pages.inc', )) ->values(array( - 'name' => 'DatabaseTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'node/add/page', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'node_access', + 'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:4:"page";}', + 'page_callback' => 'node_add', + 'page_arguments' => 'a:1:{i:0;s:4:"page";}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'node/add/page', + 'title' => 'Basic page', + 'title_callback' => 'check_plain', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => "Use basic pages for your static content, such as an 'About us' page.", + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/node/node.pages.inc', )) ->values(array( - 'name' => 'DatabaseTransaction', - 'type' => 'class', - 'filename' => 'includes/database/database.inc', - 'module' => '', + 'path' => 'node/add/paragraphs-test', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'node_access', + 'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:15:"paragraphs_test";}', + 'page_callback' => 'node_add', + 'page_arguments' => 'a:1:{i:0;s:15:"paragraphs_test";}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'node/add/paragraphs-test', + 'title' => 'Paragraphs Test', + 'title_callback' => 'check_plain', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'A Content Type for Testing Paragraphs and Field Collection Migrations', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/node/node.pages.inc', )) ->values(array( - 'name' => 'DatabaseTransactionCommitFailedException', - 'type' => 'class', - 'filename' => 'includes/database/database.inc', - 'module' => '', + 'path' => 'node/add/test-content-type', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'node_access', + 'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:17:"test_content_type";}', + 'page_callback' => 'node_add', + 'page_arguments' => 'a:1:{i:0;s:17:"test_content_type";}', + 'delivery_callback' => '', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'node/add/test-content-type', + 'title' => 'Test content type', + 'title_callback' => 'check_plain', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => 'This is the description of the test content type.', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/node/node.pages.inc', )) ->values(array( - 'name' => 'DatabaseTransactionExplicitCommitNotAllowedException', - 'type' => 'class', - 'filename' => 'includes/database/database.inc', - 'module' => '', + 'path' => 'paragraphs/collapse/ajax', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '1', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'paragraphs_collapse_js', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => 'ajax_deliver', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'paragraphs/collapse/ajax', + 'title' => 'Close item callback', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => 'ajax_base_page_theme', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'sites/all/modules/paragraphs/paragraphs.ajax.inc', )) ->values(array( - 'name' => 'DatabaseTransactionNameNonUniqueException', - 'type' => 'class', - 'filename' => 'includes/database/database.inc', - 'module' => '', + 'path' => 'paragraphs/deleteconfirm/ajax', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '1', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'paragraphs_deleteconfirm_js', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => 'ajax_deliver', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'paragraphs/deleteconfirm/ajax', + 'title' => 'Remove item callback', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => 'ajax_base_page_theme', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'sites/all/modules/paragraphs/paragraphs.ajax.inc', )) ->values(array( - 'name' => 'DatabaseTransactionNoActiveException', - 'type' => 'class', - 'filename' => 'includes/database/database.inc', - 'module' => '', + 'path' => 'paragraphs/edit/ajax', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '1', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'paragraphs_edit_js', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => 'ajax_deliver', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'paragraphs/edit/ajax', + 'title' => 'Edit item callback', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => 'ajax_base_page_theme', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'sites/all/modules/paragraphs/paragraphs.ajax.inc', )) ->values(array( - 'name' => 'DatabaseTransactionOutOfOrderException', - 'type' => 'class', - 'filename' => 'includes/database/database.inc', - 'module' => '', + 'path' => 'paragraphs/remove/ajax', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '1', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'paragraphs_remove_js', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => 'ajax_deliver', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'paragraphs/remove/ajax', + 'title' => 'Remove item callback', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => 'ajax_base_page_theme', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'sites/all/modules/paragraphs/paragraphs.ajax.inc', )) ->values(array( - 'name' => 'DatabaseTransactionTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'paragraphs/restore/ajax', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '1', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'paragraphs_restore_js', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => 'ajax_deliver', + 'fit' => '7', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'paragraphs/restore/ajax', + 'title' => 'Restore item callback', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => 'ajax_base_page_theme', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'sites/all/modules/paragraphs/paragraphs.ajax.inc', )) ->values(array( - 'name' => 'DatabaseUpdateComplexTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'rss.xml', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', + 'page_callback' => 'node_feed', + 'page_arguments' => 'a:2:{i:0;b:0;i:1;a:0:{}}', + 'delivery_callback' => '', + 'fit' => '1', + 'number_parts' => '1', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'rss.xml', + 'title' => 'RSS feed', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => '', )) ->values(array( - 'name' => 'DatabaseUpdateLOBTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', + 'path' => 'search', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'search_is_active', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'search_view', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '1', + 'number_parts' => '1', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'search', + 'title' => 'Search', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '20', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/search/search.pages.inc', )) ->values(array( - 'name' => 'DatabaseUpdateTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', - 'module' => 'simpletest', - 'weight' => '0', + 'path' => 'search/node', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '_search_menu_access', + 'access_arguments' => 'a:1:{i:0;s:4:"node";}', + 'page_callback' => 'search_view', + 'page_arguments' => 'a:2:{i:0;s:4:"node";i:1;s:0:"";}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '1', + 'tab_parent' => 'search', + 'tab_root' => 'search', + 'title' => 'Content', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '-10', + 'include_file' => 'modules/search/search.pages.inc', )) ->values(array( - 'name' => 'DateAPITestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/date/tests/date_api.test', - 'module' => 'date', + 'path' => 'search/node/%', + 'load_functions' => 'a:1:{i:2;a:1:{s:14:"menu_tail_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}', + 'to_arg_functions' => 'a:1:{i:2;s:16:"menu_tail_to_arg";}', + 'access_callback' => '_search_menu_access', + 'access_arguments' => 'a:1:{i:0;s:4:"node";}', + 'page_callback' => 'search_view', + 'page_arguments' => 'a:2:{i:0;s:4:"node";i:1;i:2;}', + 'delivery_callback' => '', + 'fit' => '6', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'search/node', + 'tab_root' => 'search/node/%', + 'title' => 'Content', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/search/search.pages.inc', )) ->values(array( - 'name' => 'DateFieldBasic', - 'type' => 'class', - 'filename' => 'sites/all/modules/date/tests/date_field.test', - 'module' => 'date', + 'path' => 'search/user', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '_search_menu_access', + 'access_arguments' => 'a:1:{i:0;s:4:"user";}', + 'page_callback' => 'search_view', + 'page_arguments' => 'a:2:{i:0;s:4:"user";i:1;s:0:"";}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '1', + 'tab_parent' => 'search', + 'tab_root' => 'search', + 'title' => 'Users', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/search/search.pages.inc', )) ->values(array( - 'name' => 'DateFieldTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/date/tests/date_field.test', - 'module' => 'date', + 'path' => 'search/user/%', + 'load_functions' => 'a:1:{i:2;a:1:{s:14:"menu_tail_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}', + 'to_arg_functions' => 'a:1:{i:2;s:16:"menu_tail_to_arg";}', + 'access_callback' => '_search_menu_access', + 'access_arguments' => 'a:1:{i:0;s:4:"user";}', + 'page_callback' => 'search_view', + 'page_arguments' => 'a:2:{i:0;s:4:"user";i:1;i:2;}', + 'delivery_callback' => '', + 'fit' => '6', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'search/node', + 'tab_root' => 'search/node/%', + 'title' => 'Users', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/search/search.pages.inc', )) ->values(array( - 'name' => 'DateFormatTestCase', - 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'path' => 'sites/default/files/styles/%', + 'load_functions' => 'a:1:{i:4;s:16:"image_style_load";}', + 'to_arg_functions' => '', + 'access_callback' => '1', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'image_style_deliver', + 'page_arguments' => 'a:1:{i:0;i:4;}', + 'delivery_callback' => '', + 'fit' => '30', + 'number_parts' => '5', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'sites/default/files/styles/%', + 'title' => 'Generate image style', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => '', )) ->values(array( - 'name' => 'DateFormTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/date/tests/date_form.test', - 'module' => 'date', + 'path' => 'system/ajax', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '1', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'ajax_form_callback', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => 'ajax_deliver', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'system/ajax', + 'title' => 'AHAH callback', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => 'ajax_base_page_theme', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'includes/form.inc', )) ->values(array( - 'name' => 'DateMigrateExampleUnitTest', - 'type' => 'class', - 'filename' => 'sites/all/modules/date/tests/date_migrate.test', - 'module' => 'date', + 'path' => 'system/files', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '1', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'file_download', + 'page_arguments' => 'a:1:{i:0;s:7:"private";}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'system/files', + 'title' => 'File download', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => '', )) ->values(array( - 'name' => 'DateMigrateFieldHandler', - 'type' => 'class', - 'filename' => 'sites/all/modules/date/date.migrate.inc', - 'module' => 'date', + 'path' => 'system/files/styles/%', + 'load_functions' => 'a:1:{i:3;s:16:"image_style_load";}', + 'to_arg_functions' => '', + 'access_callback' => '1', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'image_style_deliver', + 'page_arguments' => 'a:1:{i:0;i:3;}', + 'delivery_callback' => '', + 'fit' => '14', + 'number_parts' => '4', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'system/files/styles/%', + 'title' => 'Generate image style', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => '', )) ->values(array( - 'name' => 'DateObject', - 'type' => 'class', - 'filename' => 'sites/all/modules/date/date_api/date_api.module', - 'module' => 'date_api', + 'path' => 'system/temporary', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '1', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'file_download', + 'page_arguments' => 'a:1:{i:0;s:9:"temporary";}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'system/temporary', + 'title' => 'Temporary files', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => '', )) ->values(array( - 'name' => 'DateRepeatFormTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/date/date_repeat/tests/date_repeat_form.test', - 'module' => 'date_repeat', + 'path' => 'system/timezone', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '1', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'system_timezone', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'system/timezone', + 'title' => 'Time zone', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/system/system.admin.inc', )) ->values(array( - 'name' => 'DateRepeatTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/date/date_repeat/tests/date_repeat.test', - 'module' => 'date_repeat', + 'path' => 'taxonomy/autocomplete', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', + 'page_callback' => 'taxonomy_autocomplete', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'taxonomy/autocomplete', + 'title' => 'Autocomplete taxonomy', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/taxonomy/taxonomy.pages.inc', )) ->values(array( - 'name' => 'DateTimeFunctionalTest', - 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'path' => 'taxonomy/term/%', + 'load_functions' => 'a:1:{i:2;s:18:"taxonomy_term_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', + 'page_callback' => 'taxonomy_term_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '6', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'taxonomy/term/%', + 'title' => 'Taxonomy term', + 'title_callback' => 'taxonomy_term_title', + 'title_arguments' => 'a:1:{i:0;i:2;}', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/taxonomy/taxonomy.pages.inc', )) ->values(array( - 'name' => 'DateTimezoneTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/date/tests/date_timezone.test', - 'module' => 'date', - 'weight' => '0', + 'path' => 'taxonomy/term/%/edit', + 'load_functions' => 'a:1:{i:2;s:18:"taxonomy_term_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'taxonomy_term_edit_access', + 'access_arguments' => 'a:1:{i:0;i:2;}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:3:{i:0;s:18:"taxonomy_form_term";i:1;i:2;i:2;N;}', + 'delivery_callback' => '', + 'fit' => '13', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'taxonomy/term/%', + 'tab_root' => 'taxonomy/term/%', + 'title' => 'Edit', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '10', + 'include_file' => 'modules/taxonomy/taxonomy.admin.inc', )) ->values(array( - 'name' => 'DateToolsTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/date/date_tools/tests/date_tools.test', - 'module' => 'date_tools', + 'path' => 'taxonomy/term/%/feed', + 'load_functions' => 'a:1:{i:2;s:18:"taxonomy_term_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', + 'page_callback' => 'taxonomy_term_feed', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '13', + 'number_parts' => '4', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'taxonomy/term/%/feed', + 'title' => 'Taxonomy term', + 'title_callback' => 'taxonomy_term_title', + 'title_arguments' => 'a:1:{i:0;i:2;}', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/taxonomy/taxonomy.pages.inc', )) ->values(array( - 'name' => 'DateUITestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/date/tests/date.test', - 'module' => 'date', + 'path' => 'taxonomy/term/%/view', + 'load_functions' => 'a:1:{i:2;s:18:"taxonomy_term_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', + 'page_callback' => 'taxonomy_term_page', + 'page_arguments' => 'a:1:{i:0;i:2;}', + 'delivery_callback' => '', + 'fit' => '13', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'taxonomy/term/%', + 'tab_root' => 'taxonomy/term/%', + 'title' => 'View', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/taxonomy/taxonomy.pages.inc', )) ->values(array( - 'name' => 'DateValidationTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/date/tests/date_validation.test', - 'module' => 'date', + 'path' => 'toolbar/toggle', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:14:"access toolbar";}', + 'page_callback' => 'toolbar_toggle_page', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'toolbar/toggle', + 'title' => 'Toggle drawer visibility', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => '', )) ->values(array( - 'name' => 'DateViewsPopupTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/date/tests/date_views_popup.test', - 'module' => 'date', - 'weight' => '0', + 'path' => 'tracker', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', + 'page_callback' => 'tracker_page', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '1', + 'number_parts' => '1', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'tracker', + 'title' => 'Recent content', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', + 'weight' => '1', + 'include_file' => 'modules/tracker/tracker.pages.inc', )) ->values(array( - 'name' => 'date_sql_handler', - 'type' => 'class', - 'filename' => 'sites/all/modules/date/date_api/date_api_sql.inc', - 'module' => 'date_api', + 'path' => 'tracker/%', + 'load_functions' => 'a:1:{i:1;s:22:"user_uid_optional_load";}', + 'to_arg_functions' => 'a:1:{i:1;s:24:"user_uid_optional_to_arg";}', + 'access_callback' => '_tracker_myrecent_access', + 'access_arguments' => 'a:1:{i:0;i:1;}', + 'page_callback' => 'tracker_page', + 'page_arguments' => 'a:1:{i:0;i:1;}', + 'delivery_callback' => '', + 'fit' => '2', + 'number_parts' => '2', + 'context' => '1', + 'tab_parent' => 'tracker', + 'tab_root' => 'tracker', + 'title' => 'My recent content', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/tracker/tracker.pages.inc', )) ->values(array( - 'name' => 'DBLogTestCase', - 'type' => 'class', - 'filename' => 'modules/dblog/dblog.test', - 'module' => 'dblog', + 'path' => 'tracker/all', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', + 'page_callback' => 'tracker_page', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '1', + 'tab_parent' => 'tracker', + 'tab_root' => 'tracker', + 'title' => 'All recent content', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/tracker/tracker.pages.inc', )) ->values(array( - 'name' => 'DefaultMailSystem', - 'type' => 'class', - 'filename' => 'modules/system/system.mail.inc', - 'module' => 'system', - 'weight' => '0', + 'path' => 'user', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '1', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'user_page', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '1', + 'number_parts' => '1', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'user', + 'title' => 'User account', + 'title_callback' => 'user_menu_title', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', + 'weight' => '-10', + 'include_file' => 'modules/user/user.pages.inc', )) ->values(array( - 'name' => 'DeleteQuery', - 'type' => 'class', - 'filename' => 'includes/database/query.inc', - 'module' => '', + 'path' => 'user/%', + 'load_functions' => 'a:1:{i:1;s:9:"user_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_view_access', + 'access_arguments' => 'a:1:{i:0;i:1;}', + 'page_callback' => 'user_view_page', + 'page_arguments' => 'a:1:{i:0;i:1;}', + 'delivery_callback' => '', + 'fit' => '2', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'user/%', + 'title' => 'My account', + 'title_callback' => 'user_page_title', + 'title_arguments' => 'a:1:{i:0;i:1;}', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => '', )) ->values(array( - 'name' => 'DeleteQuery_sqlite', - 'type' => 'class', - 'filename' => 'includes/database/sqlite/query.inc', - 'module' => '', + 'path' => 'user/%/cancel', + 'load_functions' => 'a:1:{i:1;s:9:"user_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_cancel_access', + 'access_arguments' => 'a:1:{i:0;i:1;}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:24:"user_cancel_confirm_form";i:1;i:1;}', + 'delivery_callback' => '', + 'fit' => '5', + 'number_parts' => '3', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'user/%/cancel', + 'title' => 'Cancel account', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/user/user.pages.inc', )) ->values(array( - 'name' => 'DisabledNodeTypeTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/upgrade.node.test', - 'module' => 'simpletest', + 'path' => 'user/%/cancel/confirm/%/%', + 'load_functions' => 'a:3:{i:1;s:9:"user_load";i:4;N;i:5;N;}', + 'to_arg_functions' => '', + 'access_callback' => 'user_cancel_access', + 'access_arguments' => 'a:1:{i:0;i:1;}', + 'page_callback' => 'user_cancel_confirm', + 'page_arguments' => 'a:3:{i:0;i:1;i:1;i:4;i:2;i:5;}', + 'delivery_callback' => '', + 'fit' => '44', + 'number_parts' => '6', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'user/%/cancel/confirm/%/%', + 'title' => 'Confirm account cancellation', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/user/user.pages.inc', )) ->values(array( - 'name' => 'DrupalAddFeedTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', - 'weight' => '0', + 'path' => 'user/%/contact', + 'load_functions' => 'a:1:{i:1;s:9:"user_load";}', + 'to_arg_functions' => '', + 'access_callback' => '_contact_personal_tab_access', + 'access_arguments' => 'a:1:{i:0;i:1;}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:21:"contact_personal_form";i:1;i:1;}', + 'delivery_callback' => '', + 'fit' => '5', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'user/%', + 'tab_root' => 'user/%', + 'title' => 'Contact', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '2', + 'include_file' => 'modules/contact/contact.pages.inc', )) ->values(array( - 'name' => 'DrupalAlterTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', + 'path' => 'user/%/edit', + 'load_functions' => 'a:1:{i:1;s:9:"user_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_edit_access', + 'access_arguments' => 'a:1:{i:0;i:1;}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:17:"user_profile_form";i:1;i:1;}', + 'delivery_callback' => '', + 'fit' => '5', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'user/%', + 'tab_root' => 'user/%', + 'title' => 'Edit', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/user/user.pages.inc', )) ->values(array( - 'name' => 'DrupalAttributesUnitTest', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', + 'path' => 'user/%/edit/account', + 'load_functions' => 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}', + 'to_arg_functions' => '', + 'access_callback' => 'user_edit_access', + 'access_arguments' => 'a:1:{i:0;i:1;}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:17:"user_profile_form";i:1;i:1;}', + 'delivery_callback' => '', + 'fit' => '11', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'user/%/edit', + 'tab_root' => 'user/%', + 'title' => 'Account', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/user/user.pages.inc', )) ->values(array( - 'name' => 'DrupalCacheArray', - 'type' => 'class', - 'filename' => 'includes/bootstrap.inc', - 'module' => '', + 'path' => 'user/%/shortcuts', + 'load_functions' => 'a:1:{i:1;s:9:"user_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'shortcut_set_switch_access', + 'access_arguments' => 'a:1:{i:0;i:1;}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:2:{i:0;s:19:"shortcut_set_switch";i:1;i:1;}', + 'delivery_callback' => '', + 'fit' => '5', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'user/%', + 'tab_root' => 'user/%', + 'title' => 'Shortcuts', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/shortcut/shortcut.admin.inc', )) ->values(array( - 'name' => 'DrupalCacheInterface', - 'type' => 'interface', - 'filename' => 'includes/cache.inc', - 'module' => '', + 'path' => 'user/%/track', + 'load_functions' => 'a:1:{i:1;s:9:"user_load";}', + 'to_arg_functions' => '', + 'access_callback' => '_tracker_user_access', + 'access_arguments' => 'a:1:{i:0;i:1;}', + 'page_callback' => 'tracker_page', + 'page_arguments' => 'a:2:{i:0;i:1;i:1;b:1;}', + 'delivery_callback' => '', + 'fit' => '5', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'user/%', + 'tab_root' => 'user/%', + 'title' => 'Track', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/tracker/tracker.pages.inc', )) ->values(array( - 'name' => 'DrupalDataApiTest', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', + 'path' => 'user/%/track/content', + 'load_functions' => 'a:1:{i:1;s:9:"user_load";}', + 'to_arg_functions' => '', + 'access_callback' => '_tracker_user_access', + 'access_arguments' => 'a:1:{i:0;i:1;}', + 'page_callback' => 'tracker_page', + 'page_arguments' => 'a:2:{i:0;i:1;i:1;b:1;}', + 'delivery_callback' => '', + 'fit' => '11', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'user/%/track', + 'tab_root' => 'user/%', + 'title' => 'Track content', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/tracker/tracker.pages.inc', )) ->values(array( - 'name' => 'DrupalDatabaseCache', - 'type' => 'class', - 'filename' => 'includes/cache.inc', - 'module' => '', - 'weight' => '0', + 'path' => 'user/%/track/navigation', + 'load_functions' => 'a:1:{i:1;s:9:"user_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:17:"access statistics";}', + 'page_callback' => 'statistics_user_tracker', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '11', + 'number_parts' => '4', + 'context' => '1', + 'tab_parent' => 'user/%/track', + 'tab_root' => 'user/%', + 'title' => 'Track page visits', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', + 'weight' => '2', + 'include_file' => 'modules/statistics/statistics.pages.inc', )) ->values(array( - 'name' => 'DrupalDefaultEntityController', - 'type' => 'class', - 'filename' => 'includes/entity.inc', - 'module' => '', - 'weight' => '0', + 'path' => 'user/%/view', + 'load_functions' => 'a:1:{i:1;s:9:"user_load";}', + 'to_arg_functions' => '', + 'access_callback' => 'user_view_access', + 'access_arguments' => 'a:1:{i:0;i:1;}', + 'page_callback' => 'user_view_page', + 'page_arguments' => 'a:1:{i:0;i:1;}', + 'delivery_callback' => '', + 'fit' => '5', + 'number_parts' => '3', + 'context' => '1', + 'tab_parent' => 'user/%', + 'tab_root' => 'user/%', + 'title' => 'View', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', + 'weight' => '-10', + 'include_file' => '', )) ->values(array( - 'name' => 'DrupalEntityControllerInterface', - 'type' => 'interface', - 'filename' => 'includes/entity.inc', - 'module' => '', + 'path' => 'user/autocomplete', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_access', + 'access_arguments' => 'a:1:{i:0;s:20:"access user profiles";}', + 'page_callback' => 'user_autocomplete', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'user/autocomplete', + 'title' => 'User autocomplete', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/user/user.pages.inc', )) ->values(array( - 'name' => 'DrupalErrorCollectionUnitTest', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', + 'path' => 'user/login', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_is_anonymous', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'user_page', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '1', + 'tab_parent' => 'user', + 'tab_root' => 'user', + 'title' => 'Log in', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '140', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/user/user.pages.inc', )) ->values(array( - 'name' => 'DrupalErrorHandlerTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/error.test', - 'module' => 'simpletest', - 'weight' => '0', + 'path' => 'user/logout', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_is_logged_in', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'user_logout', + 'page_arguments' => 'a:0:{}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'user/logout', + 'title' => 'Log out', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '6', + 'description' => '', + 'position' => '', + 'weight' => '10', + 'include_file' => 'modules/user/user.pages.inc', )) ->values(array( - 'name' => 'DrupalFakeCache', - 'type' => 'class', - 'filename' => 'includes/cache-install.inc', - 'module' => '', + 'path' => 'user/password', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => '1', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:9:"user_pass";}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '1', + 'tab_parent' => 'user', + 'tab_root' => 'user', + 'title' => 'Request new password', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/user/user.pages.inc', )) ->values(array( - 'name' => 'DrupalGetQueryArrayTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', + 'path' => 'user/register', + 'load_functions' => '', + 'to_arg_functions' => '', + 'access_callback' => 'user_register_access', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:1:{i:0;s:18:"user_register_form";}', + 'delivery_callback' => '', + 'fit' => '3', + 'number_parts' => '2', + 'context' => '1', + 'tab_parent' => 'user', + 'tab_root' => 'user', + 'title' => 'Create new account', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '132', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => '', )) ->values(array( - 'name' => 'DrupalGetRdfNamespacesTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', + 'path' => 'user/reset/%/%/%', + 'load_functions' => 'a:3:{i:2;N;i:3;N;i:4;N;}', + 'to_arg_functions' => '', + 'access_callback' => '1', + 'access_arguments' => 'a:0:{}', + 'page_callback' => 'drupal_get_form', + 'page_arguments' => 'a:4:{i:0;s:15:"user_pass_reset";i:1;i:2;i:2;i:3;i:3;i:4;}', + 'delivery_callback' => '', + 'fit' => '24', + 'number_parts' => '5', + 'context' => '0', + 'tab_parent' => '', + 'tab_root' => 'user/reset/%/%/%', + 'title' => 'Reset password', + 'title_callback' => 't', + 'title_arguments' => '', + 'theme_callback' => '', + 'theme_arguments' => 'a:0:{}', + 'type' => '0', + 'description' => '', + 'position' => '', 'weight' => '0', + 'include_file' => 'modules/user/user.pages.inc', )) -->values(array( - 'name' => 'DrupalGotoTest', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', - 'weight' => '0', +->execute(); + +$connection->schema()->createTable('node', array( + 'fields' => array( + 'nid' => array( + 'type' => 'serial', + 'not null' => TRUE, + 'size' => 'normal', + 'unsigned' => TRUE, + ), + 'vid' => array( + 'type' => 'int', + 'not null' => FALSE, + 'size' => 'normal', + 'unsigned' => TRUE, + ), + 'type' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '32', + 'default' => '', + ), + 'language' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '12', + 'default' => '', + ), + 'title' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + 'default' => '', + ), + 'uid' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'status' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '1', + ), + 'created' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'changed' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'comment' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'promote' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'sticky' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'tnid' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + 'unsigned' => TRUE, + ), + 'translate' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + ), + 'primary key' => array( + 'nid', + ), + 'mysql_character_set' => 'utf8', +)); + +$connection->insert('node') +->fields(array( + 'nid', + 'vid', + 'type', + 'language', + 'title', + 'uid', + 'status', + 'created', + 'changed', + 'comment', + 'promote', + 'sticky', + 'tnid', + 'translate', )) ->values(array( - 'name' => 'DrupalHTMLIdentifierTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', - 'weight' => '0', + 'nid' => '1', + 'vid' => '1', + 'type' => 'test_content_type', + 'language' => 'en', + 'title' => 'A Node', + 'uid' => '2', + 'status' => '1', + 'created' => '1421727515', + 'changed' => '1441032132', + 'comment' => '2', + 'promote' => '1', + 'sticky' => '0', + 'tnid' => '0', + 'translate' => '0', )) ->values(array( - 'name' => 'DrupalHtmlToTextTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/mail.test', - 'module' => 'simpletest', - 'weight' => '0', + 'nid' => '2', + 'vid' => '2', + 'type' => 'article', + 'language' => 'en', + 'title' => 'The thing about Deep Space 9', + 'uid' => '2', + 'status' => '1', + 'created' => '1441306772', + 'changed' => '1441306832', + 'comment' => '2', + 'promote' => '1', + 'sticky' => '0', + 'tnid' => '2', + 'translate' => '0', )) ->values(array( - 'name' => 'DrupalHTTPRequestTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', - 'weight' => '0', + 'nid' => '3', + 'vid' => '3', + 'type' => 'article', + 'language' => 'is', + 'title' => 'is - The thing about Deep Space 9', + 'uid' => '1', + 'status' => '1', + 'created' => '1471428152', + 'changed' => '1471428152', + 'comment' => '2', + 'promote' => '1', + 'sticky' => '0', + 'tnid' => '2', + 'translate' => '0', )) ->values(array( - 'name' => 'DrupalHTTPResponseStatusLineTest', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', - 'weight' => '0', + 'nid' => '4', + 'vid' => '4', + 'type' => 'article', + 'language' => 'is', + 'title' => 'is - The thing about Firefly', + 'uid' => '1', + 'status' => '1', + 'created' => '1478755274', + 'changed' => '1478755274', + 'comment' => '1', + 'promote' => '1', + 'sticky' => '0', + 'tnid' => '4', + 'translate' => '0', )) ->values(array( - 'name' => 'Drupali18nConfigTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/i18n/i18n.test', - 'module' => 'i18n', - 'weight' => '10', + 'nid' => '5', + 'vid' => '5', + 'type' => 'article', + 'language' => 'en', + 'title' => 'en - The thing about Firefly', + 'uid' => '1', + 'status' => '1', + 'created' => '1478755314', + 'changed' => '1478755314', + 'comment' => '1', + 'promote' => '1', + 'sticky' => '0', + 'tnid' => '4', + 'translate' => '0', )) ->values(array( - 'name' => 'Drupali18nTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/i18n/i18n.test', - 'module' => 'i18n', - 'weight' => '10', + 'nid' => '6', + 'vid' => '6', + 'type' => 'forum', + 'language' => 'en', + 'title' => 'Comments are closed :-(', + 'uid' => '1', + 'status' => '1', + 'created' => '1504715414', + 'changed' => '1504715414', + 'comment' => '1', + 'promote' => '0', + 'sticky' => '0', + 'tnid' => '0', + 'translate' => '0', )) ->values(array( - 'name' => 'DrupalJSONTest', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', - 'weight' => '0', + 'nid' => '7', + 'vid' => '7', + 'type' => 'forum', + 'language' => 'en', + 'title' => 'Comments are open :-)', + 'uid' => '1', + 'status' => '1', + 'created' => '1504715432', + 'changed' => '1504715432', + 'comment' => '2', + 'promote' => '0', + 'sticky' => '0', + 'tnid' => '0', + 'translate' => '0', )) ->values(array( - 'name' => 'DrupalLocalStreamWrapper', - 'type' => 'class', - 'filename' => 'includes/stream_wrappers.inc', - 'module' => '', - 'weight' => '0', + 'nid' => '8', + 'vid' => '11', + 'type' => 'paragraphs_test', + 'language' => 'und', + 'title' => 'Paragraph Migration Test Content UND', + 'uid' => '1', + 'status' => '1', + 'created' => '1518101181', + 'changed' => '1518468638', + 'comment' => '1', + 'promote' => '1', + 'sticky' => '0', + 'tnid' => '0', + 'translate' => '0', )) ->values(array( - 'name' => 'DrupalMatchPathTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/path.test', - 'module' => 'simpletest', - 'weight' => '0', + 'nid' => '9', + 'vid' => '9', + 'type' => 'paragraphs_test', + 'language' => 'en', + 'title' => 'Paragraph Migration Test Content EN', + 'uid' => '1', + 'status' => '1', + 'created' => '1518101182', + 'changed' => '1518107793', + 'comment' => '1', + 'promote' => '1', + 'sticky' => '0', + 'tnid' => '9', + 'translate' => '0', )) ->values(array( - 'name' => 'DrupalPrivateStreamWrapper', - 'type' => 'class', - 'filename' => 'includes/stream_wrappers.inc', - 'module' => '', - 'weight' => '0', + 'nid' => '10', + 'vid' => '10', + 'type' => 'paragraphs_test', + 'language' => 'is', + 'title' => 'Paragraph Migration Test Content IS', + 'uid' => '1', + 'status' => '1', + 'created' => '1518101284', + 'changed' => '1518107817', + 'comment' => '1', + 'promote' => '1', + 'sticky' => '0', + 'tnid' => '9', + 'translate' => '0', )) -->values(array( - 'name' => 'DrupalPublicStreamWrapper', - 'type' => 'class', - 'filename' => 'includes/stream_wrappers.inc', - 'module' => '', - 'weight' => '0', +->execute(); + +$connection->schema()->createTable('node_access', array( + 'fields' => array( + 'nid' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + 'unsigned' => TRUE, + ), + 'gid' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + 'unsigned' => TRUE, + ), + 'realm' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + 'default' => '', + ), + 'grant_view' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + 'unsigned' => TRUE, + ), + 'grant_update' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + 'unsigned' => TRUE, + ), + 'grant_delete' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + 'unsigned' => TRUE, + ), + ), + 'primary key' => array( + 'nid', + 'gid', + 'realm', + ), + 'mysql_character_set' => 'utf8', +)); + +$connection->insert('node_access') +->fields(array( + 'nid', + 'gid', + 'realm', + 'grant_view', + 'grant_update', + 'grant_delete', )) ->values(array( - 'name' => 'DrupalQueue', - 'type' => 'class', - 'filename' => 'modules/system/system.queue.inc', - 'module' => 'system', - 'weight' => '0', + 'nid' => '0', + 'gid' => '0', + 'realm' => 'all', + 'grant_view' => '1', + 'grant_update' => '0', + 'grant_delete' => '0', )) -->values(array( - 'name' => 'DrupalQueueInterface', - 'type' => 'interface', - 'filename' => 'modules/system/system.queue.inc', - 'module' => 'system', - 'weight' => '0', +->execute(); + +$connection->schema()->createTable('node_comment_statistics', array( + 'fields' => array( + 'nid' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + 'unsigned' => TRUE, + ), + 'cid' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'last_comment_timestamp' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'last_comment_name' => array( + 'type' => 'varchar', + 'not null' => FALSE, + 'length' => '60', + ), + 'last_comment_uid' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'comment_count' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + 'unsigned' => TRUE, + ), + ), + 'primary key' => array( + 'nid', + ), + 'mysql_character_set' => 'utf8', +)); + +$connection->insert('node_comment_statistics') +->fields(array( + 'nid', + 'cid', + 'last_comment_timestamp', + 'last_comment_name', + 'last_comment_uid', + 'comment_count', )) ->values(array( - 'name' => 'DrupalReliableQueueInterface', - 'type' => 'interface', - 'filename' => 'modules/system/system.queue.inc', - 'module' => 'system', - 'weight' => '0', + 'nid' => '1', + 'cid' => '1', + 'last_comment_timestamp' => '1421727536', + 'last_comment_name' => '', + 'last_comment_uid' => '1', + 'comment_count' => '1', )) ->values(array( - 'name' => 'DrupalRenderTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', - 'weight' => '0', + 'nid' => '3', + 'cid' => '0', + 'last_comment_timestamp' => '1471428152', + 'last_comment_name' => NULL, + 'last_comment_uid' => '1', + 'comment_count' => '0', )) ->values(array( - 'name' => 'DrupalSetContentTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', - 'weight' => '0', + 'nid' => '4', + 'cid' => '0', + 'last_comment_timestamp' => '1478755274', + 'last_comment_name' => NULL, + 'last_comment_uid' => '1', + 'comment_count' => '0', )) ->values(array( - 'name' => 'DrupalSetMessageTest', - 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', - 'weight' => '0', + 'nid' => '5', + 'cid' => '0', + 'last_comment_timestamp' => '1478755314', + 'last_comment_name' => NULL, + 'last_comment_uid' => '1', + 'comment_count' => '0', )) ->values(array( - 'name' => 'DrupalStreamWrapperInterface', - 'type' => 'interface', - 'filename' => 'includes/stream_wrappers.inc', - 'module' => '', - 'weight' => '0', + 'nid' => '6', + 'cid' => '0', + 'last_comment_timestamp' => '1504715414', + 'last_comment_name' => NULL, + 'last_comment_uid' => '1', + 'comment_count' => '0', )) ->values(array( - 'name' => 'DrupalSystemListingTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', - 'weight' => '0', + 'nid' => '7', + 'cid' => '0', + 'last_comment_timestamp' => '1504715432', + 'last_comment_name' => NULL, + 'last_comment_uid' => '1', + 'comment_count' => '0', )) ->values(array( - 'name' => 'DrupalTagsHandlingTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', - 'weight' => '0', + 'nid' => '8', + 'cid' => '0', + 'last_comment_timestamp' => '1518101181', + 'last_comment_name' => NULL, + 'last_comment_uid' => '1', + 'comment_count' => '0', )) ->values(array( - 'name' => 'DrupalTemporaryStreamWrapper', - 'type' => 'class', - 'filename' => 'includes/stream_wrappers.inc', - 'module' => '', - 'weight' => '0', + 'nid' => '9', + 'cid' => '0', + 'last_comment_timestamp' => '1518101182', + 'last_comment_name' => NULL, + 'last_comment_uid' => '1', + 'comment_count' => '0', )) ->values(array( - 'name' => 'DrupalTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/drupal_web_test_case.php', - 'module' => 'simpletest', - 'weight' => '0', + 'nid' => '10', + 'cid' => '0', + 'last_comment_timestamp' => '1518101284', + 'last_comment_name' => NULL, + 'last_comment_uid' => '1', + 'comment_count' => '0', )) -->values(array( - 'name' => 'DrupalUnitTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/drupal_web_test_case.php', - 'module' => 'simpletest', - 'weight' => '0', +->execute(); + +$connection->schema()->createTable('node_counter', array( + 'fields' => array( + 'nid' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'totalcount' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + 'unsigned' => TRUE, + ), + 'daycount' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + 'unsigned' => TRUE, + ), + 'timestamp' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + 'unsigned' => TRUE, + ), + ), + 'primary key' => array( + 'nid', + ), + 'mysql_character_set' => 'utf8', +)); + +$connection->insert('node_counter') +->fields(array( + 'nid', + 'totalcount', + 'daycount', + 'timestamp', )) ->values(array( - 'name' => 'DrupalUpdateException', - 'type' => 'class', - 'filename' => 'includes/update.inc', - 'module' => '', - 'weight' => '0', + 'nid' => '1', + 'totalcount' => '2', + 'daycount' => '0', + 'timestamp' => '1421727536', )) ->values(array( - 'name' => 'DrupalUpdaterInterface', - 'type' => 'interface', - 'filename' => 'includes/updater.inc', - 'module' => '', - 'weight' => '0', + 'nid' => '2', + 'totalcount' => '1', + 'daycount' => '0', + 'timestamp' => '1471428059', )) ->values(array( - 'name' => 'DrupalWebTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/drupal_web_test_case.php', - 'module' => 'simpletest', - 'weight' => '0', + 'nid' => '3', + 'totalcount' => '1', + 'daycount' => '0', + 'timestamp' => '1471428153', )) ->values(array( - 'name' => 'EarlyBootstrapTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/boot.test', - 'module' => 'simpletest', - 'weight' => '0', + 'nid' => '4', + 'totalcount' => '1', + 'daycount' => '0', + 'timestamp' => '1478755275', )) ->values(array( - 'name' => 'EGPhoneNumberTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.eg.test', - 'module' => 'phone', - 'weight' => '0', + 'nid' => '5', + 'totalcount' => '1', + 'daycount' => '0', + 'timestamp' => '1478755314', )) ->values(array( - 'name' => 'EnableDisableTestCase', - 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', - 'weight' => '0', + 'nid' => '6', + 'totalcount' => '2', + 'daycount' => '0', + 'timestamp' => '1504715439', )) ->values(array( - 'name' => 'Entity', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/includes/entity.inc', - 'module' => 'entity', - 'weight' => '0', + 'nid' => '7', + 'totalcount' => '2', + 'daycount' => '0', + 'timestamp' => '1504715438', )) ->values(array( - 'name' => 'EntityAPICommentNodeAccessTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/entity.test', - 'module' => 'entity', - 'weight' => '0', + 'nid' => '8', + 'totalcount' => '4', + 'daycount' => '0', + 'timestamp' => '1518106402', )) ->values(array( - 'name' => 'EntityAPIController', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/includes/entity.controller.inc', - 'module' => 'entity', - 'weight' => '0', + 'nid' => '9', + 'totalcount' => '2', + 'daycount' => '0', + 'timestamp' => '1518106216', )) ->values(array( - 'name' => 'EntityAPIControllerExportable', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/includes/entity.controller.inc', - 'module' => 'entity', - 'weight' => '0', + 'nid' => '10', + 'totalcount' => '2', + 'daycount' => '0', + 'timestamp' => '1518106648', )) -->values(array( - 'name' => 'EntityAPIControllerInterface', - 'type' => 'interface', - 'filename' => 'sites/all/modules/entity/includes/entity.controller.inc', - 'module' => 'entity', - 'weight' => '0', +->execute(); + +$connection->schema()->createTable('node_revision', array( + 'fields' => array( + 'nid' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + 'unsigned' => TRUE, + ), + 'vid' => array( + 'type' => 'serial', + 'not null' => TRUE, + 'size' => 'normal', + 'unsigned' => TRUE, + ), + 'uid' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'title' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + 'default' => '', + ), + 'log' => array( + 'type' => 'text', + 'not null' => TRUE, + 'size' => 'normal', + ), + 'timestamp' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'status' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '1', + ), + 'comment' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'promote' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'sticky' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + ), + 'primary key' => array( + 'vid', + ), + 'mysql_character_set' => 'utf8', +)); + +$connection->insert('node_revision') +->fields(array( + 'nid', + 'vid', + 'uid', + 'title', + 'log', + 'timestamp', + 'status', + 'comment', + 'promote', + 'sticky', )) ->values(array( - 'name' => 'EntityAPIControllerRevisionableInterface', - 'type' => 'interface', - 'filename' => 'sites/all/modules/entity/includes/entity.controller.inc', - 'module' => 'entity', - 'weight' => '0', + 'nid' => '1', + 'vid' => '1', + 'uid' => '1', + 'title' => 'A Node', + 'log' => '', + 'timestamp' => '1441032132', + 'status' => '1', + 'comment' => '2', + 'promote' => '1', + 'sticky' => '0', )) ->values(array( - 'name' => 'EntityAPIi18nItegrationTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/entity.test', - 'module' => 'entity', - 'weight' => '0', + 'nid' => '2', + 'vid' => '2', + 'uid' => '1', + 'title' => 'The thing about Deep Space 9', + 'log' => '', + 'timestamp' => '1441306832', + 'status' => '1', + 'comment' => '2', + 'promote' => '1', + 'sticky' => '0', )) ->values(array( - 'name' => 'EntityAPIRulesIntegrationTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/entity.test', - 'module' => 'entity', - 'weight' => '0', + 'nid' => '3', + 'vid' => '3', + 'uid' => '1', + 'title' => 'is - The thing about Deep Space 9', + 'log' => '', + 'timestamp' => '1471428152', + 'status' => '1', + 'comment' => '2', + 'promote' => '1', + 'sticky' => '0', )) ->values(array( - 'name' => 'EntityAPITestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/entity.test', - 'module' => 'entity', - 'weight' => '0', + 'nid' => '4', + 'vid' => '4', + 'uid' => '1', + 'title' => 'is - The thing about Firefly', + 'log' => '', + 'timestamp' => '1478755274', + 'status' => '1', + 'comment' => '1', + 'promote' => '1', + 'sticky' => '0', )) ->values(array( - 'name' => 'EntityBundleableUIController', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/includes/entity.ui.inc', - 'module' => 'entity', - 'weight' => '0', + 'nid' => '5', + 'vid' => '5', + 'uid' => '1', + 'title' => 'en - The thing about Firefly', + 'log' => '', + 'timestamp' => '1478755314', + 'status' => '1', + 'comment' => '1', + 'promote' => '1', + 'sticky' => '0', )) ->values(array( - 'name' => 'EntityContentUIController', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/includes/entity.ui.inc', - 'module' => 'entity', - 'weight' => '0', + 'nid' => '6', + 'vid' => '6', + 'uid' => '1', + 'title' => 'Comments are closed :-(', + 'log' => '', + 'timestamp' => '1504715414', + 'status' => '1', + 'comment' => '1', + 'promote' => '0', + 'sticky' => '0', )) ->values(array( - 'name' => 'EntityCrudHookTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/entity_crud_hook_test.test', - 'module' => 'simpletest', - 'weight' => '0', + 'nid' => '7', + 'vid' => '7', + 'uid' => '1', + 'title' => 'Comments are open :-)', + 'log' => '', + 'timestamp' => '1504715432', + 'status' => '1', + 'comment' => '2', + 'promote' => '0', + 'sticky' => '0', )) ->values(array( - 'name' => 'EntityDB', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/includes/entity.inc', - 'module' => 'entity', - 'weight' => '0', + 'nid' => '8', + 'vid' => '8', + 'uid' => '1', + 'title' => 'Paragraph Migration Test Content UND', + 'log' => '', + 'timestamp' => '1518107832', + 'status' => '1', + 'comment' => '1', + 'promote' => '1', + 'sticky' => '0', )) ->values(array( - 'name' => 'EntityDBExtendable', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/includes/entity.inc', - 'module' => 'entity', - 'weight' => '0', + 'nid' => '9', + 'vid' => '9', + 'uid' => '1', + 'title' => 'Paragraph Migration Test Content EN', + 'log' => '', + 'timestamp' => '1518107793', + 'status' => '1', + 'comment' => '1', + 'promote' => '1', + 'sticky' => '0', )) ->values(array( - 'name' => 'EntityDefaultExtraFieldsController', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/entity.info.inc', - 'module' => 'entity', - 'weight' => '0', + 'nid' => '10', + 'vid' => '10', + 'uid' => '1', + 'title' => 'Paragraph Migration Test Content IS', + 'log' => '', + 'timestamp' => '1518107817', + 'status' => '1', + 'comment' => '1', + 'promote' => '1', + 'sticky' => '0', )) ->values(array( - 'name' => 'EntityDefaultFeaturesController', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/entity.features.inc', - 'module' => 'entity', - 'weight' => '0', + 'nid' => '8', + 'vid' => '11', + 'uid' => '1', + 'title' => 'Paragraph Migration Test Content UND', + 'log' => '', + 'timestamp' => '1518468638', + 'status' => '1', + 'comment' => '1', + 'promote' => '1', + 'sticky' => '0', )) -->values(array( - 'name' => 'EntityDefaultI18nStringController', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/entity.i18n.inc', - 'module' => 'entity', - 'weight' => '0', +->execute(); + +$connection->schema()->createTable('node_type', array( + 'fields' => array( + 'type' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '32', + ), + 'name' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + 'default' => '', + ), + 'base' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + ), + 'module' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + ), + 'description' => array( + 'type' => 'text', + 'not null' => TRUE, + 'size' => 'normal', + ), + 'help' => array( + 'type' => 'text', + 'not null' => TRUE, + 'size' => 'normal', + ), + 'has_title' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'unsigned' => TRUE, + ), + 'title_label' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + 'default' => '', + ), + 'custom' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'modified' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'locked' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'disabled' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'orig_type' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + 'default' => '', + ), + ), + 'primary key' => array( + 'type', + ), + 'mysql_character_set' => 'utf8', +)); + +$connection->insert('node_type') +->fields(array( + 'type', + 'name', + 'base', + 'module', + 'description', + 'help', + 'has_title', + 'title_label', + 'custom', + 'modified', + 'locked', + 'disabled', + 'orig_type', )) ->values(array( - 'name' => 'EntityDefaultMetadataController', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/entity.info.inc', - 'module' => 'entity', - 'weight' => '0', + 'type' => 'article', + 'name' => 'Article', + 'base' => 'node_content', + 'module' => 'node', + 'description' => 'Use articles for time-sensitive content like news, press releases or blog posts.', + 'help' => 'Help text for articles', + 'has_title' => '1', + 'title_label' => 'Title', + 'custom' => '1', + 'modified' => '1', + 'locked' => '0', + 'disabled' => '0', + 'orig_type' => 'article', )) ->values(array( - 'name' => 'EntityDefaultRulesController', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/entity.rules.inc', - 'module' => 'entity', - 'weight' => '0', + 'type' => 'blog', + 'name' => 'Blog entry', + 'base' => 'blog', + 'module' => 'blog', + 'description' => 'Use for multi-user blogs. Every user gets a personal blog.', + 'help' => 'Blog away, good sir!', + 'has_title' => '1', + 'title_label' => 'Title', + 'custom' => '0', + 'modified' => '1', + 'locked' => '1', + 'disabled' => '0', + 'orig_type' => 'blog', )) ->values(array( - 'name' => 'EntityDefaultUIController', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/includes/entity.ui.inc', - 'module' => 'entity', - 'weight' => '0', + 'type' => 'book', + 'name' => 'Book page', + 'base' => 'node_content', + 'module' => 'node', + 'description' => 'Books have a built-in hierarchical navigation. Use for handbooks or tutorials.', + 'help' => '', + 'has_title' => '1', + 'title_label' => 'Title', + 'custom' => '1', + 'modified' => '1', + 'locked' => '0', + 'disabled' => '0', + 'orig_type' => 'book', )) ->values(array( - 'name' => 'EntityDefaultViewsController', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/views/entity.views.inc', - 'module' => 'entity', - 'weight' => '0', + 'type' => 'forum', + 'name' => 'Forum topic', + 'base' => 'forum', + 'module' => 'forum', + 'description' => 'A forum topic starts a new discussion thread within a forum.', + 'help' => 'No name-calling, no flame wars. Be nice.', + 'has_title' => '1', + 'title_label' => 'Subject', + 'custom' => '0', + 'modified' => '1', + 'locked' => '1', + 'disabled' => '0', + 'orig_type' => 'forum', )) ->values(array( - 'name' => 'EntityDrupalWrapper', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc', - 'module' => 'entity', - 'weight' => '0', + 'type' => 'page', + 'name' => 'Basic page', + 'base' => 'node_content', + 'module' => 'node', + 'description' => "Use basic pages for your static content, such as an 'About us' page.", + 'help' => 'Help text for basic pages', + 'has_title' => '1', + 'title_label' => 'Title', + 'custom' => '1', + 'modified' => '1', + 'locked' => '0', + 'disabled' => '0', + 'orig_type' => 'page', )) ->values(array( - 'name' => 'EntityExtendable', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/includes/entity.inc', - 'module' => 'entity', - 'weight' => '0', + 'type' => 'paragraphs_test', + 'name' => 'Paragraphs Test', + 'base' => 'node_content', + 'module' => 'node', + 'description' => 'A Content Type for Testing Paragraphs and Field Collection Migrations', + 'help' => '', + 'has_title' => '1', + 'title_label' => 'Title', + 'custom' => '1', + 'modified' => '1', + 'locked' => '0', + 'disabled' => '0', + 'orig_type' => 'paragraphs_test', )) ->values(array( - 'name' => 'EntityExtraFieldsControllerInterface', - 'type' => 'interface', - 'filename' => 'sites/all/modules/entity/entity.info.inc', - 'module' => 'entity', - 'weight' => '0', + 'type' => 'test_content_type', + 'name' => 'Test content type', + 'base' => 'node_content', + 'module' => 'node', + 'description' => 'This is the description of the test content type.', + 'help' => 'Help text for test content type', + 'has_title' => '1', + 'title_label' => 'Title', + 'custom' => '1', + 'modified' => '1', + 'locked' => '0', + 'disabled' => '0', + 'orig_type' => 'test_content_type', )) -->values(array( - 'name' => 'EntityFieldHandlerHelper', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_field_handler_helper.inc', - 'module' => 'entity', - 'weight' => '0', +->execute(); + +$connection->schema()->createTable('paragraphs_bundle', array( + 'fields' => array( + 'bundle' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '32', + ), + 'name' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + 'default' => '', + ), + 'locked' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'tiny', + 'default' => '0', + ), + ), + 'primary key' => array( + 'bundle', + ), + 'mysql_character_set' => 'utf8', +)); + +$connection->insert('paragraphs_bundle') +->fields(array( + 'bundle', + 'name', + 'locked', )) ->values(array( - 'name' => 'EntityFieldQuery', - 'type' => 'class', - 'filename' => 'includes/entity.inc', - 'module' => '', - 'weight' => '0', + 'bundle' => 'paragraph_bundle_one', + 'name' => 'Paragraph Bundle One', + 'locked' => '1', )) ->values(array( - 'name' => 'EntityFieldQueryException', - 'type' => 'class', - 'filename' => 'includes/entity.inc', - 'module' => '', - 'weight' => '0', + 'bundle' => 'paragraph_bundle_two', + 'name' => 'Paragraph Bundle Two', + 'locked' => '1', +)) +->execute(); + +$connection->schema()->createTable('paragraphs_item', array( + 'fields' => array( + 'item_id' => array( + 'type' => 'serial', + 'not null' => TRUE, + 'size' => 'normal', + ), + 'revision_id' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + ), + 'bundle' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '32', + ), + 'field_name' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '32', + ), + 'archived' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + ), + 'primary key' => array( + 'item_id', + ), + 'mysql_character_set' => 'utf8', +)); + +$connection->insert('paragraphs_item') +->fields(array( + 'item_id', + 'revision_id', + 'bundle', + 'field_name', + 'archived', )) ->values(array( - 'name' => 'EntityFieldQueryTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/entity_query.test', - 'module' => 'simpletest', - 'weight' => '0', + 'item_id' => '2', + 'revision_id' => '18', + 'bundle' => 'paragraph_bundle_two', + 'field_name' => 'field_any_paragraph', + 'archived' => '0', )) ->values(array( - 'name' => 'EntityInterface', - 'type' => 'interface', - 'filename' => 'sites/all/modules/entity/includes/entity.inc', - 'module' => 'entity', - 'weight' => '0', + 'item_id' => '5', + 'revision_id' => '5', + 'bundle' => 'paragraph_bundle_two', + 'field_name' => 'field_any_paragraph', + 'archived' => '0', )) ->values(array( - 'name' => 'EntityListWrapper', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc', - 'module' => 'entity', - 'weight' => '0', + 'item_id' => '8', + 'revision_id' => '8', + 'bundle' => 'paragraph_bundle_two', + 'field_name' => 'field_any_paragraph', + 'archived' => '0', )) ->values(array( - 'name' => 'EntityLoadTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/entity_crud.test', - 'module' => 'simpletest', - 'weight' => '0', + 'item_id' => '10', + 'revision_id' => '10', + 'bundle' => 'paragraph_bundle_two', + 'field_name' => 'field_any_paragraph', + 'archived' => '0', )) ->values(array( - 'name' => 'EntityMalformedException', - 'type' => 'class', - 'filename' => 'includes/entity.inc', - 'module' => '', - 'weight' => '0', + 'item_id' => '11', + 'revision_id' => '11', + 'bundle' => 'paragraph_bundle_one', + 'field_name' => 'field_any_paragraph', + 'archived' => '0', )) ->values(array( - 'name' => 'EntityMetadataArrayObject', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc', - 'module' => 'entity', - 'weight' => '0', + 'item_id' => '12', + 'revision_id' => '17', + 'bundle' => 'paragraph_bundle_one', + 'field_name' => 'field_any_paragraph', + 'archived' => '0', )) ->values(array( - 'name' => 'EntityMetadataIntegrationTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/entity.test', - 'module' => 'entity', - 'weight' => '0', + 'item_id' => '13', + 'revision_id' => '19', + 'bundle' => 'paragraph_bundle_one', + 'field_name' => 'field_paragraph_one_only', + 'archived' => '0', )) ->values(array( - 'name' => 'EntityMetadataNodeAccessTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/entity.test', - 'module' => 'entity', - 'weight' => '0', + 'item_id' => '14', + 'revision_id' => '14', + 'bundle' => 'paragraph_bundle_one', + 'field_name' => 'field_any_paragraph', + 'archived' => '0', )) ->values(array( - 'name' => 'EntityMetadataNodeCreateAccessTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/entity.test', - 'module' => 'entity', - 'weight' => '0', + 'item_id' => '15', + 'revision_id' => '15', + 'bundle' => 'paragraph_bundle_one', + 'field_name' => 'field_paragraph_one_only', + 'archived' => '0', )) ->values(array( - 'name' => 'EntityMetadataNodeRevisionAccessTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/entity.test', - 'module' => 'entity', - 'weight' => '0', + 'item_id' => '16', + 'revision_id' => '16', + 'bundle' => 'paragraph_bundle_one', + 'field_name' => 'field_paragraph_one_only', + 'archived' => '0', +)) +->execute(); + +$connection->schema()->createTable('paragraphs_item_revision', array( + 'fields' => array( + 'revision_id' => array( + 'type' => 'serial', + 'not null' => TRUE, + 'size' => 'normal', + ), + 'item_id' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + ), + ), + 'primary key' => array( + 'revision_id', + ), + 'indexes' => array( + 'item_id' => array( + 'item_id', + ), + ), + 'mysql_character_set' => 'utf8', +)); + +$connection->insert('paragraphs_item_revision') +->fields(array( + 'revision_id', + 'item_id', )) ->values(array( - 'name' => 'EntityMetadataTaxonomyAccessTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/entity.test', - 'module' => 'entity', - 'weight' => '0', + 'revision_id' => '2', + 'item_id' => '2', )) ->values(array( - 'name' => 'EntityMetadataTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/entity.test', - 'module' => 'entity', - 'weight' => '0', + 'revision_id' => '5', + 'item_id' => '5', )) ->values(array( - 'name' => 'EntityMetadataWrapper', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc', - 'module' => 'entity', - 'weight' => '0', + 'revision_id' => '8', + 'item_id' => '8', )) ->values(array( - 'name' => 'EntityMetadataWrapperException', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc', - 'module' => 'entity', - 'weight' => '0', + 'revision_id' => '10', + 'item_id' => '10', )) ->values(array( - 'name' => 'EntityMetadataWrapperIterator', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc', - 'module' => 'entity', - 'weight' => '0', + 'revision_id' => '11', + 'item_id' => '11', )) ->values(array( - 'name' => 'EntityPropertiesTestCase', - 'type' => 'class', - 'filename' => 'modules/field/tests/field.test', - 'module' => 'field', - 'weight' => '0', + 'revision_id' => '12', + 'item_id' => '12', )) ->values(array( - 'name' => 'EntityReferenceAdminTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/entityreference/tests/entityreference.admin.test', - 'module' => 'entityreference', - 'weight' => '0', + 'revision_id' => '13', + 'item_id' => '13', )) ->values(array( - 'name' => 'EntityReferenceBehavior_TaxonomyIndex', - 'type' => 'class', - 'filename' => 'sites/all/modules/entityreference/plugins/behavior/EntityReferenceBehavior_TaxonomyIndex.class.php', - 'module' => 'entityreference', - 'weight' => '0', + 'revision_id' => '14', + 'item_id' => '14', )) ->values(array( - 'name' => 'EntityReferenceBehavior_ViewsFilterSelect', - 'type' => 'class', - 'filename' => 'sites/all/modules/entityreference/plugins/behavior/EntityReferenceBehavior_ViewsFilterSelect.class.php', - 'module' => 'entityreference', - 'weight' => '0', + 'revision_id' => '15', + 'item_id' => '15', )) ->values(array( - 'name' => 'EntityReferenceHandlersTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/entityreference/tests/entityreference.handlers.test', - 'module' => 'entityreference', - 'weight' => '0', + 'revision_id' => '16', + 'item_id' => '16', )) ->values(array( - 'name' => 'EntityReferenceTaxonomyTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/entityreference/tests/entityreference.taxonomy.test', - 'module' => 'entityreference', - 'weight' => '0', + 'revision_id' => '17', + 'item_id' => '12', )) ->values(array( - 'name' => 'EntityReference_BehaviorHandler', - 'type' => 'interface', - 'filename' => 'sites/all/modules/entityreference/plugins/behavior/abstract.inc', - 'module' => 'entityreference', - 'weight' => '0', + 'revision_id' => '18', + 'item_id' => '2', )) ->values(array( - 'name' => 'EntityReference_BehaviorHandler_Abstract', - 'type' => 'class', - 'filename' => 'sites/all/modules/entityreference/plugins/behavior/abstract.inc', - 'module' => 'entityreference', - 'weight' => '0', + 'revision_id' => '19', + 'item_id' => '13', +)) +->execute(); + +$connection->schema()->createTable('queue', array( + 'fields' => array( + 'item_id' => array( + 'type' => 'serial', + 'not null' => TRUE, + 'size' => 'normal', + 'unsigned' => TRUE, + ), + 'name' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + 'default' => '', + ), + 'data' => array( + 'type' => 'blob', + 'not null' => FALSE, + 'size' => 'normal', + ), + 'expire' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + 'created' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + ), + 'primary key' => array( + 'item_id', + ), + 'mysql_character_set' => 'utf8', +)); + +$connection->insert('queue') +->fields(array( + 'item_id', + 'name', + 'data', + 'expire', + 'created', )) ->values(array( - 'name' => 'EntityReference_BehaviorHandler_Broken', - 'type' => 'class', - 'filename' => 'sites/all/modules/entityreference/plugins/behavior/abstract.inc', - 'module' => 'entityreference', - 'weight' => '0', + 'item_id' => '57', + 'name' => 'update_fetch_tasks', + 'data' => 'a:8:{s:4:"name";s:6:"drupal";s:4:"info";a:6:{s:4:"name";s:10:"Aggregator";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:16:"_info_file_ctime";i:1517536515;}s:9:"datestamp";s:10:"1498069849";s:8:"includes";a:42:{s:10:"aggregator";s:10:"Aggregator";s:5:"block";s:5:"Block";s:4:"blog";s:4:"Blog";s:4:"book";s:4:"Book";s:5:"color";s:5:"Color";s:7:"comment";s:7:"Comment";s:7:"contact";s:7:"Contact";s:10:"contextual";s:16:"Contextual links";s:5:"dblog";s:16:"Database logging";s:5:"field";s:5:"Field";s:17:"field_sql_storage";s:17:"Field SQL storage";s:8:"field_ui";s:8:"Field UI";s:4:"file";s:4:"File";s:6:"filter";s:6:"Filter";s:5:"forum";s:5:"Forum";s:4:"help";s:4:"Help";s:5:"image";s:5:"Image";s:4:"list";s:4:"List";s:6:"locale";s:6:"Locale";s:4:"menu";s:4:"Menu";s:4:"node";s:4:"Node";s:6:"number";s:6:"Number";s:7:"options";s:7:"Options";s:4:"path";s:4:"Path";s:3:"php";s:10:"PHP filter";s:3:"rdf";s:3:"RDF";s:6:"search";s:6:"Search";s:8:"shortcut";s:8:"Shortcut";s:10:"simpletest";s:7:"Testing";s:10:"statistics";s:10:"Statistics";s:6:"syslog";s:6:"Syslog";s:6:"system";s:6:"System";s:8:"taxonomy";s:8:"Taxonomy";s:4:"text";s:4:"Text";s:7:"toolbar";s:7:"Toolbar";s:7:"tracker";s:7:"Tracker";s:11:"translation";s:19:"Content translation";s:7:"trigger";s:7:"Trigger";s:6:"update";s:14:"Update manager";s:4:"user";s:4:"User";s:6:"bartik";s:6:"Bartik";s:5:"seven";s:5:"Seven";}s:12:"project_type";s:4:"core";s:14:"project_status";b:1;s:10:"sub_themes";a:0:{}s:11:"base_themes";a:0:{}}', + 'expire' => '0', + 'created' => '1518468588', )) ->values(array( - 'name' => 'entityreference_plugin_display', - 'type' => 'class', - 'filename' => 'sites/all/modules/entityreference/views/entityreference_plugin_display.inc', - 'module' => 'entityreference', - 'weight' => '0', + 'item_id' => '58', + 'name' => 'update_fetch_tasks', + 'data' => 'a:8:{s:4:"name";s:4:"date";s:4:"info";a:6:{s:4:"name";s:4:"Date";s:7:"package";s:9:"Date/Time";s:7:"version";s:8:"7.x-2.10";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1491562090";s:16:"_info_file_ctime";i:1517536920;}s:9:"datestamp";s:10:"1491562090";s:8:"includes";a:2:{s:4:"date";s:4:"Date";s:8:"date_api";s:8:"Date API";}s:12:"project_type";s:6:"module";s:14:"project_status";b:1;s:10:"sub_themes";a:0:{}s:11:"base_themes";a:0:{}}', + 'expire' => '0', + 'created' => '1518468588', )) ->values(array( - 'name' => 'entityreference_plugin_row_fields', - 'type' => 'class', - 'filename' => 'sites/all/modules/entityreference/views/entityreference_plugin_row_fields.inc', - 'module' => 'entityreference', - 'weight' => '0', + 'item_id' => '59', + 'name' => 'update_fetch_tasks', + 'data' => 'a:8:{s:4:"name";s:5:"email";s:4:"info";a:6:{s:4:"name";s:5:"Email";s:7:"package";s:6:"Fields";s:7:"version";s:7:"7.x-1.3";s:7:"project";s:5:"email";s:9:"datestamp";s:10:"1397134155";s:16:"_info_file_ctime";i:1517536920;}s:9:"datestamp";s:10:"1397134155";s:8:"includes";a:1:{s:5:"email";s:5:"Email";}s:12:"project_type";s:6:"module";s:14:"project_status";b:1;s:10:"sub_themes";a:0:{}s:11:"base_themes";a:0:{}}', + 'expire' => '0', + 'created' => '1518468588', )) ->values(array( - 'name' => 'entityreference_plugin_style', - 'type' => 'class', - 'filename' => 'sites/all/modules/entityreference/views/entityreference_plugin_style.inc', - 'module' => 'entityreference', - 'weight' => '0', + 'item_id' => '60', + 'name' => 'update_fetch_tasks', + 'data' => 'a:8:{s:4:"name";s:6:"entity";s:4:"info";a:6:{s:4:"name";s:10:"Entity API";s:7:"version";s:7:"7.x-1.8";s:7:"project";s:6:"entity";s:9:"datestamp";s:10:"1474546503";s:7:"package";s:5:"Other";s:16:"_info_file_ctime";i:1517536923;}s:9:"datestamp";s:10:"1474546503";s:8:"includes";a:1:{s:6:"entity";s:10:"Entity API";}s:12:"project_type";s:6:"module";s:14:"project_status";b:1;s:10:"sub_themes";a:0:{}s:11:"base_themes";a:0:{}}', + 'expire' => '0', + 'created' => '1518468588', )) ->values(array( - 'name' => 'EntityReference_SelectionHandler', - 'type' => 'interface', - 'filename' => 'sites/all/modules/entityreference/plugins/selection/abstract.inc', - 'module' => 'entityreference', - 'weight' => '0', + 'item_id' => '61', + 'name' => 'update_fetch_tasks', + 'data' => 'a:8:{s:4:"name";s:15:"entityreference";s:4:"info";a:6:{s:4:"name";s:16:"Entity Reference";s:7:"package";s:6:"Fields";s:7:"version";s:7:"7.x-1.5";s:7:"project";s:15:"entityreference";s:9:"datestamp";s:10:"1502895850";s:16:"_info_file_ctime";i:1517536924;}s:9:"datestamp";s:10:"1502895850";s:8:"includes";a:1:{s:15:"entityreference";s:16:"Entity Reference";}s:12:"project_type";s:6:"module";s:14:"project_status";b:1;s:10:"sub_themes";a:0:{}s:11:"base_themes";a:0:{}}', + 'expire' => '0', + 'created' => '1518468588', )) ->values(array( - 'name' => 'EntityReference_SelectionHandler_Broken', - 'type' => 'class', - 'filename' => 'sites/all/modules/entityreference/plugins/selection/abstract.inc', - 'module' => 'entityreference', - 'weight' => '0', + 'item_id' => '62', + 'name' => 'update_fetch_tasks', + 'data' => 'a:8:{s:4:"name";s:16:"field_collection";s:4:"info";a:6:{s:4:"name";s:16:"Field collection";s:7:"package";s:6:"Fields";s:7:"version";s:14:"7.x-1.0-beta12";s:7:"project";s:16:"field_collection";s:9:"datestamp";s:10:"1479402861";s:16:"_info_file_ctime";i:1517536925;}s:9:"datestamp";s:10:"1479402861";s:8:"includes";a:1:{s:16:"field_collection";s:16:"Field collection";}s:12:"project_type";s:6:"module";s:14:"project_status";b:1;s:10:"sub_themes";a:0:{}s:11:"base_themes";a:0:{}}', + 'expire' => '0', + 'created' => '1518468588', )) ->values(array( - 'name' => 'EntityReference_SelectionHandler_Generic', - 'type' => 'class', - 'filename' => 'sites/all/modules/entityreference/plugins/selection/EntityReference_SelectionHandler_Generic.class.php', - 'module' => 'entityreference', - 'weight' => '0', + 'item_id' => '63', + 'name' => 'update_fetch_tasks', + 'data' => 'a:8:{s:4:"name";s:4:"link";s:4:"info";a:6:{s:4:"name";s:4:"Link";s:7:"package";s:6:"Fields";s:7:"version";s:7:"7.x-1.4";s:7:"project";s:4:"link";s:9:"datestamp";s:10:"1452830642";s:16:"_info_file_ctime";i:1517536921;}s:9:"datestamp";s:10:"1452830642";s:8:"includes";a:1:{s:4:"link";s:4:"Link";}s:12:"project_type";s:6:"module";s:14:"project_status";b:1;s:10:"sub_themes";a:0:{}s:11:"base_themes";a:0:{}}', + 'expire' => '0', + 'created' => '1518468588', )) ->values(array( - 'name' => 'EntityReference_SelectionHandler_Generic_comment', - 'type' => 'class', - 'filename' => 'sites/all/modules/entityreference/plugins/selection/EntityReference_SelectionHandler_Generic.class.php', - 'module' => 'entityreference', - 'weight' => '0', + 'item_id' => '64', + 'name' => 'update_fetch_tasks', + 'data' => 'a:8:{s:4:"name";s:10:"paragraphs";s:4:"info";a:6:{s:4:"name";s:10:"Paragraphs";s:7:"package";s:10:"Paragraphs";s:7:"version";s:11:"7.x-1.0-rc5";s:7:"project";s:10:"paragraphs";s:9:"datestamp";s:10:"1487261293";s:16:"_info_file_ctime";i:1517536925;}s:9:"datestamp";s:10:"1487261293";s:8:"includes";a:2:{s:10:"paragraphs";s:10:"Paragraphs";s:15:"paragraphs_i18n";s:33:"Paragraphs - Internationalization";}s:12:"project_type";s:6:"module";s:14:"project_status";b:1;s:10:"sub_themes";a:0:{}s:11:"base_themes";a:0:{}}', + 'expire' => '0', + 'created' => '1518468588', )) ->values(array( - 'name' => 'EntityReference_SelectionHandler_Generic_file', - 'type' => 'class', - 'filename' => 'sites/all/modules/entityreference/plugins/selection/EntityReference_SelectionHandler_Generic.class.php', - 'module' => 'entityreference', - 'weight' => '0', + 'item_id' => '65', + 'name' => 'update_fetch_tasks', + 'data' => 'a:8:{s:4:"name";s:5:"phone";s:4:"info";a:6:{s:4:"name";s:5:"Phone";s:7:"package";s:6:"Fields";s:7:"version";s:13:"7.x-1.0-beta1";s:7:"project";s:5:"phone";s:9:"datestamp";s:10:"1389732224";s:16:"_info_file_ctime";i:1517536921;}s:9:"datestamp";s:10:"1389732224";s:8:"includes";a:1:{s:5:"phone";s:5:"Phone";}s:12:"project_type";s:6:"module";s:14:"project_status";b:1;s:10:"sub_themes";a:0:{}s:11:"base_themes";a:0:{}}', + 'expire' => '0', + 'created' => '1518468588', )) ->values(array( - 'name' => 'EntityReference_SelectionHandler_Generic_node', - 'type' => 'class', - 'filename' => 'sites/all/modules/entityreference/plugins/selection/EntityReference_SelectionHandler_Generic.class.php', - 'module' => 'entityreference', - 'weight' => '0', + 'item_id' => '66', + 'name' => 'update_fetch_tasks', + 'data' => 'a:8:{s:4:"name";s:9:"replicate";s:4:"info";a:6:{s:4:"name";s:9:"Replicate";s:7:"package";s:6:"Entity";s:7:"version";s:7:"7.x-1.2";s:7:"project";s:9:"replicate";s:9:"datestamp";s:10:"1493739489";s:16:"_info_file_ctime";i:1517543283;}s:9:"datestamp";s:10:"1493739489";s:8:"includes";a:1:{s:9:"replicate";s:9:"Replicate";}s:12:"project_type";s:6:"module";s:14:"project_status";b:1;s:10:"sub_themes";a:0:{}s:11:"base_themes";a:0:{}}', + 'expire' => '0', + 'created' => '1518468588', )) ->values(array( - 'name' => 'EntityReference_SelectionHandler_Generic_taxonomy_term', - 'type' => 'class', - 'filename' => 'sites/all/modules/entityreference/plugins/selection/EntityReference_SelectionHandler_Generic.class.php', - 'module' => 'entityreference', - 'weight' => '0', + 'item_id' => '67', + 'name' => 'update_fetch_tasks', + 'data' => 'a:8:{s:4:"name";s:20:"replicate_paragraphs";s:4:"info";a:6:{s:4:"name";s:20:"Replicate Paragraphs";s:7:"package";s:6:"Entity";s:7:"version";s:7:"7.x-1.2";s:7:"project";s:20:"replicate_paragraphs";s:9:"datestamp";s:10:"1434713581";s:16:"_info_file_ctime";i:1517543292;}s:9:"datestamp";s:10:"1434713581";s:8:"includes";a:1:{s:20:"replicate_paragraphs";s:20:"Replicate Paragraphs";}s:12:"project_type";s:6:"module";s:14:"project_status";b:1;s:10:"sub_themes";a:0:{}s:11:"base_themes";a:0:{}}', + 'expire' => '0', + 'created' => '1518468588', +)) +->execute(); + +$connection->schema()->createTable('rdf_mapping', array( + 'fields' => array( + 'type' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '128', + ), + 'bundle' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '128', + ), + 'mapping' => array( + 'type' => 'blob', + 'not null' => FALSE, + 'size' => 'normal', + ), + ), + 'primary key' => array( + 'type', + 'bundle', + ), + 'mysql_character_set' => 'utf8', +)); + +$connection->insert('rdf_mapping') +->fields(array( + 'type', + 'bundle', + 'mapping', )) ->values(array( - 'name' => 'EntityReference_SelectionHandler_Generic_user', - 'type' => 'class', - 'filename' => 'sites/all/modules/entityreference/plugins/selection/EntityReference_SelectionHandler_Generic.class.php', - 'module' => 'entityreference', - 'weight' => '0', + 'type' => 'node', + 'bundle' => 'article', + 'mapping' => 'a:11:{s:11:"field_image";a:2:{s:10:"predicates";a:2:{i:0;s:8:"og:image";i:1;s:12:"rdfs:seeAlso";}s:4:"type";s:3:"rel";}s:10:"field_tags";a:2:{s:10:"predicates";a:1:{i:0;s:10:"dc:subject";}s:4:"type";s:3:"rel";}s:7:"rdftype";a:2:{i:0;s:9:"sioc:Item";i:1;s:13:"foaf:Document";}s:5:"title";a:1:{s:10:"predicates";a:1:{i:0;s:8:"dc:title";}}s:7:"created";a:3:{s:10:"predicates";a:2:{i:0;s:7:"dc:date";i:1;s:10:"dc:created";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}s:7:"changed";a:3:{s:10:"predicates";a:1:{i:0;s:11:"dc:modified";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}s:4:"body";a:1:{s:10:"predicates";a:1:{i:0;s:15:"content:encoded";}}s:3:"uid";a:2:{s:10:"predicates";a:1:{i:0;s:16:"sioc:has_creator";}s:4:"type";s:3:"rel";}s:4:"name";a:1:{s:10:"predicates";a:1:{i:0;s:9:"foaf:name";}}s:13:"comment_count";a:2:{s:10:"predicates";a:1:{i:0;s:16:"sioc:num_replies";}s:8:"datatype";s:11:"xsd:integer";}s:13:"last_activity";a:3:{s:10:"predicates";a:1:{i:0;s:23:"sioc:last_activity_date";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}}', )) ->values(array( - 'name' => 'EntityReference_SelectionHandler_Views', - 'type' => 'class', - 'filename' => 'sites/all/modules/entityreference/plugins/selection/EntityReference_SelectionHandler_Views.class.php', - 'module' => 'entityreference', - 'weight' => '0', + 'type' => 'node', + 'bundle' => 'blog', + 'mapping' => 'a:9:{s:7:"rdftype";a:2:{i:0;s:9:"sioc:Post";i:1;s:14:"sioct:BlogPost";}s:5:"title";a:1:{s:10:"predicates";a:1:{i:0;s:8:"dc:title";}}s:7:"created";a:3:{s:10:"predicates";a:2:{i:0;s:7:"dc:date";i:1;s:10:"dc:created";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}s:7:"changed";a:3:{s:10:"predicates";a:1:{i:0;s:11:"dc:modified";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}s:4:"body";a:1:{s:10:"predicates";a:1:{i:0;s:15:"content:encoded";}}s:3:"uid";a:2:{s:10:"predicates";a:1:{i:0;s:16:"sioc:has_creator";}s:4:"type";s:3:"rel";}s:4:"name";a:1:{s:10:"predicates";a:1:{i:0;s:9:"foaf:name";}}s:13:"comment_count";a:2:{s:10:"predicates";a:1:{i:0;s:16:"sioc:num_replies";}s:8:"datatype";s:11:"xsd:integer";}s:13:"last_activity";a:3:{s:10:"predicates";a:1:{i:0;s:23:"sioc:last_activity_date";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}}', )) ->values(array( - 'name' => 'EntityStructureWrapper', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc', - 'module' => 'entity', - 'weight' => '0', + 'type' => 'node', + 'bundle' => 'forum', + 'mapping' => 'a:10:{s:7:"rdftype";a:2:{i:0;s:9:"sioc:Post";i:1;s:15:"sioct:BoardPost";}s:15:"taxonomy_forums";a:2:{s:10:"predicates";a:1:{i:0;s:18:"sioc:has_container";}s:4:"type";s:3:"rel";}s:5:"title";a:1:{s:10:"predicates";a:1:{i:0;s:8:"dc:title";}}s:7:"created";a:3:{s:10:"predicates";a:2:{i:0;s:7:"dc:date";i:1;s:10:"dc:created";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}s:7:"changed";a:3:{s:10:"predicates";a:1:{i:0;s:11:"dc:modified";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}s:4:"body";a:1:{s:10:"predicates";a:1:{i:0;s:15:"content:encoded";}}s:3:"uid";a:2:{s:10:"predicates";a:1:{i:0;s:16:"sioc:has_creator";}s:4:"type";s:3:"rel";}s:4:"name";a:1:{s:10:"predicates";a:1:{i:0;s:9:"foaf:name";}}s:13:"comment_count";a:2:{s:10:"predicates";a:1:{i:0;s:16:"sioc:num_replies";}s:8:"datatype";s:11:"xsd:integer";}s:13:"last_activity";a:3:{s:10:"predicates";a:1:{i:0;s:23:"sioc:last_activity_date";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}}', )) ->values(array( - 'name' => 'EntityTokenTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/entity/entity.test', - 'module' => 'entity', - 'weight' => '0', + 'type' => 'taxonomy_term', + 'bundle' => 'forums', + 'mapping' => 'a:5:{s:7:"rdftype";a:2:{i:0;s:14:"sioc:Container";i:1;s:10:"sioc:Forum";}s:4:"name";a:1:{s:10:"predicates";a:2:{i:0;s:10:"rdfs:label";i:1;s:14:"skos:prefLabel";}}s:11:"description";a:1:{s:10:"predicates";a:1:{i:0;s:15:"skos:definition";}}s:3:"vid";a:2:{s:10:"predicates";a:1:{i:0;s:13:"skos:inScheme";}s:4:"type";s:3:"rel";}s:6:"parent";a:2:{s:10:"predicates";a:1:{i:0;s:12:"skos:broader";}s:4:"type";s:3:"rel";}}', )) ->values(array( - 'name' => 'EntityTranslationFieldCollectionItemHandler', - 'type' => 'class', - 'filename' => 'sites/all/modules/field_collection/includes/translation.handler.field_collection_item.inc', - 'module' => 'field_collection', - 'weight' => '0', + 'type' => 'node', + 'bundle' => 'page', + 'mapping' => 'a:9:{s:7:"rdftype";a:1:{i:0;s:13:"foaf:Document";}s:5:"title";a:1:{s:10:"predicates";a:1:{i:0;s:8:"dc:title";}}s:7:"created";a:3:{s:10:"predicates";a:2:{i:0;s:7:"dc:date";i:1;s:10:"dc:created";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}s:7:"changed";a:3:{s:10:"predicates";a:1:{i:0;s:11:"dc:modified";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}s:4:"body";a:1:{s:10:"predicates";a:1:{i:0;s:15:"content:encoded";}}s:3:"uid";a:2:{s:10:"predicates";a:1:{i:0;s:16:"sioc:has_creator";}s:4:"type";s:3:"rel";}s:4:"name";a:1:{s:10:"predicates";a:1:{i:0;s:9:"foaf:name";}}s:13:"comment_count";a:2:{s:10:"predicates";a:1:{i:0;s:16:"sioc:num_replies";}s:8:"datatype";s:11:"xsd:integer";}s:13:"last_activity";a:3:{s:10:"predicates";a:1:{i:0;s:23:"sioc:last_activity_date";}s:8:"datatype";s:12:"xsd:dateTime";s:8:"callback";s:12:"date_iso8601";}}', +)) +->execute(); + +$connection->schema()->createTable('registry', array( + 'fields' => array( + 'name' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + 'default' => '', + ), + 'type' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '9', + 'default' => '', + ), + 'filename' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + ), + 'module' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + 'default' => '', + ), + 'weight' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + ), + 'primary key' => array( + 'name', + 'type', + ), + 'mysql_character_set' => 'utf8', +)); + +$connection->insert('registry') +->fields(array( + 'name', + 'type', + 'filename', + 'module', + 'weight', )) ->values(array( - 'name' => 'EntityValueWrapper', + 'name' => 'AccessDeniedTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc', - 'module' => 'entity', + 'filename' => 'modules/system/system.test', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'EntityWebTestCase', + 'name' => 'ActionLoopTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/entity/entity.test', - 'module' => 'entity', + 'filename' => 'modules/simpletest/tests/actions.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'entity_views_handler_area_entity', + 'name' => 'ActionsConfigurationTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_area_entity.inc', - 'module' => 'entity', + 'filename' => 'modules/simpletest/tests/actions.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'entity_views_handler_field_boolean', + 'name' => 'AddFeedTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_boolean.inc', - 'module' => 'entity', + 'filename' => 'modules/aggregator/aggregator.test', + 'module' => 'aggregator', 'weight' => '0', )) ->values(array( - 'name' => 'entity_views_handler_field_date', + 'name' => 'AdminMetaTagTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_date.inc', - 'module' => 'entity', + 'filename' => 'modules/system/system.test', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'entity_views_handler_field_duration', + 'name' => 'AggregatorConfigurationTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_duration.inc', - 'module' => 'entity', + 'filename' => 'modules/aggregator/aggregator.test', + 'module' => 'aggregator', 'weight' => '0', )) ->values(array( - 'name' => 'entity_views_handler_field_entity', + 'name' => 'AggregatorCronTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_entity.inc', - 'module' => 'entity', + 'filename' => 'modules/aggregator/aggregator.test', + 'module' => 'aggregator', 'weight' => '0', )) ->values(array( - 'name' => 'entity_views_handler_field_field', + 'name' => 'AggregatorRenderingTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_field.inc', - 'module' => 'entity', + 'filename' => 'modules/aggregator/aggregator.test', + 'module' => 'aggregator', 'weight' => '0', )) ->values(array( - 'name' => 'entity_views_handler_field_numeric', + 'name' => 'AggregatorTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_numeric.inc', - 'module' => 'entity', + 'filename' => 'modules/aggregator/aggregator.test', + 'module' => 'aggregator', 'weight' => '0', )) ->values(array( - 'name' => 'entity_views_handler_field_options', + 'name' => 'AggregatorUpdatePathTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_options.inc', - 'module' => 'entity', + 'filename' => 'modules/simpletest/tests/upgrade/update.aggregator.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'entity_views_handler_field_text', + 'name' => 'AJAXCommandsTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_text.inc', - 'module' => 'entity', + 'filename' => 'modules/simpletest/tests/ajax.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'entity_views_handler_field_uri', + 'name' => 'AJAXElementValidation', 'type' => 'class', - 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_uri.inc', - 'module' => 'entity', + 'filename' => 'modules/simpletest/tests/ajax.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'entity_views_handler_relationship', + 'name' => 'AJAXFormPageCacheTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_relationship.inc', - 'module' => 'entity', + 'filename' => 'modules/simpletest/tests/ajax.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'entity_views_handler_relationship_by_bundle', + 'name' => 'AJAXFormValuesTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_relationship_by_bundle.inc', - 'module' => 'entity', + 'filename' => 'modules/simpletest/tests/ajax.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'entity_views_plugin_row_entity_view', + 'name' => 'AJAXFrameworkTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/entity/views/plugins/entity_views_plugin_row_entity_view.inc', - 'module' => 'entity', + 'filename' => 'modules/simpletest/tests/ajax.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'ESPhoneNumberTestCase', + 'name' => 'AJAXMultiFormTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.es.test', - 'module' => 'phone', + 'filename' => 'modules/simpletest/tests/ajax.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FakeRecord', + 'name' => 'AJAXTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/database_test.test', + 'filename' => 'modules/simpletest/tests/ajax.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FeedIconTest', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', + 'name' => 'ArchiverInterface', + 'type' => 'interface', + 'filename' => 'includes/archiver.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'FeedParserTestCase', + 'name' => 'ArchiverTar', 'type' => 'class', - 'filename' => 'modules/aggregator/aggregator.test', - 'module' => 'aggregator', + 'filename' => 'modules/system/system.archiver.inc', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'FeedsMapperFieldTestCase', + 'name' => 'ArchiverZip', 'type' => 'class', - 'filename' => 'sites/all/modules/entityreference/tests/entityreference.feeds.test', - 'module' => 'entityreference', + 'filename' => 'modules/system/system.archiver.inc', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'FieldAttachOtherTestCase', + 'name' => 'Archive_Tar', 'type' => 'class', - 'filename' => 'modules/field/tests/field.test', - 'module' => 'field', + 'filename' => 'modules/system/system.tar.inc', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'FieldAttachStorageTestCase', + 'name' => 'ArrayDiffUnitTest', 'type' => 'class', - 'filename' => 'modules/field/tests/field.test', - 'module' => 'field', + 'filename' => 'modules/simpletest/tests/common.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FieldAttachTestCase', + 'name' => 'AUPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'modules/field/tests/field.test', - 'module' => 'field', + 'filename' => 'sites/all/modules/phone/tests/phone.au.test', + 'module' => 'phone', 'weight' => '0', )) ->values(array( - 'name' => 'FieldBulkDeleteTestCase', + 'name' => 'BasicMinimalUpdatePath', 'type' => 'class', - 'filename' => 'modules/field/tests/field.test', - 'module' => 'field', + 'filename' => 'modules/simpletest/tests/upgrade/upgrade.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FieldCollectionBasicTestCase', + 'name' => 'BasicStandardUpdatePath', 'type' => 'class', - 'filename' => 'sites/all/modules/field_collection/field_collection.test', - 'module' => 'field_collection', + 'filename' => 'modules/simpletest/tests/upgrade/upgrade.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FieldCollectionContentTranslationTestCase', + 'name' => 'BasicUpgradePath', 'type' => 'class', - 'filename' => 'sites/all/modules/field_collection/field_collection.test', - 'module' => 'field_collection', + 'filename' => 'modules/simpletest/tests/upgrade/upgrade.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FieldCollectionEntityTranslationTestCase', + 'name' => 'BatchMemoryQueue', 'type' => 'class', - 'filename' => 'sites/all/modules/field_collection/field_collection.test', - 'module' => 'field_collection', + 'filename' => 'includes/batch.queue.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'FieldCollectionItemEntity', + 'name' => 'BatchPageTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/field_collection/field_collection.entity.inc', - 'module' => 'field_collection', + 'filename' => 'modules/simpletest/tests/batch.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FieldCollectionItemMetadataController', + 'name' => 'BatchPercentagesUnitTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/field_collection/field_collection.info.inc', - 'module' => 'field_collection', + 'filename' => 'modules/simpletest/tests/batch.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FieldCollectionRulesIntegrationTestCase', + 'name' => 'BatchProcessingTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/field_collection/field_collection.test', - 'module' => 'field_collection', + 'filename' => 'modules/simpletest/tests/batch.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FieldCrudTestCase', + 'name' => 'BatchQueue', 'type' => 'class', - 'filename' => 'modules/field/tests/field.test', - 'module' => 'field', + 'filename' => 'includes/batch.queue.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'FieldDisplayAPITestCase', + 'name' => 'BEPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'modules/field/tests/field.test', - 'module' => 'field', + 'filename' => 'sites/all/modules/phone/tests/phone.be.test', + 'module' => 'phone', 'weight' => '0', )) ->values(array( - 'name' => 'FieldException', + 'name' => 'BlockAdminThemeTestCase', 'type' => 'class', - 'filename' => 'modules/field/field.module', - 'module' => 'field', - 'weight' => '0', + 'filename' => 'modules/block/block.test', + 'module' => 'block', + 'weight' => '-5', )) ->values(array( - 'name' => 'FieldFormTestCase', + 'name' => 'BlockCacheTestCase', + 'type' => 'class', + 'filename' => 'modules/block/block.test', + 'module' => 'block', + 'weight' => '-5', +)) +->values(array( + 'name' => 'BlockHashTestCase', 'type' => 'class', - 'filename' => 'modules/field/tests/field.test', - 'module' => 'field', - 'weight' => '0', + 'filename' => 'modules/block/block.test', + 'module' => 'block', + 'weight' => '-5', )) ->values(array( - 'name' => 'FieldInfo', + 'name' => 'BlockHiddenRegionTestCase', 'type' => 'class', - 'filename' => 'modules/field/field.info.class.inc', - 'module' => 'field', - 'weight' => '0', + 'filename' => 'modules/block/block.test', + 'module' => 'block', + 'weight' => '-5', )) ->values(array( - 'name' => 'FieldInfoTestCase', + 'name' => 'BlockHTMLIdTestCase', 'type' => 'class', - 'filename' => 'modules/field/tests/field.test', - 'module' => 'field', - 'weight' => '0', + 'filename' => 'modules/block/block.test', + 'module' => 'block', + 'weight' => '-5', )) ->values(array( - 'name' => 'FieldInstanceCrudTestCase', + 'name' => 'BlockInvalidRegionTestCase', 'type' => 'class', - 'filename' => 'modules/field/tests/field.test', - 'module' => 'field', - 'weight' => '0', + 'filename' => 'modules/block/block.test', + 'module' => 'block', + 'weight' => '-5', )) ->values(array( - 'name' => 'FieldsOverlapException', + 'name' => 'BlockTemplateSuggestionsUnitTest', 'type' => 'class', - 'filename' => 'includes/database/database.inc', - 'module' => '', - 'weight' => '0', + 'filename' => 'modules/block/block.test', + 'module' => 'block', + 'weight' => '-5', )) ->values(array( - 'name' => 'FieldSqlStorageTestCase', + 'name' => 'BlockTestCase', 'type' => 'class', - 'filename' => 'modules/field/modules/field_sql_storage/field_sql_storage.test', - 'module' => 'field_sql_storage', - 'weight' => '0', + 'filename' => 'modules/block/block.test', + 'module' => 'block', + 'weight' => '-5', )) ->values(array( - 'name' => 'FieldTestCase', + 'name' => 'BlockViewModuleDeltaAlterWebTest', 'type' => 'class', - 'filename' => 'modules/field/tests/field.test', - 'module' => 'field', - 'weight' => '0', + 'filename' => 'modules/block/block.test', + 'module' => 'block', + 'weight' => '-5', )) ->values(array( - 'name' => 'FieldTranslationsTestCase', + 'name' => 'BlogTestCase', 'type' => 'class', - 'filename' => 'modules/field/tests/field.test', - 'module' => 'field', + 'filename' => 'modules/blog/blog.test', + 'module' => 'blog', 'weight' => '0', )) ->values(array( - 'name' => 'FieldUIAlterTestCase', + 'name' => 'BookTestCase', 'type' => 'class', - 'filename' => 'modules/field_ui/field_ui.test', - 'module' => 'field_ui', + 'filename' => 'modules/book/book.test', + 'module' => 'book', 'weight' => '0', )) ->values(array( - 'name' => 'FieldUIManageDisplayTestCase', + 'name' => 'BootstrapAutoloadTestCase', 'type' => 'class', - 'filename' => 'modules/field_ui/field_ui.test', - 'module' => 'field_ui', + 'filename' => 'modules/simpletest/tests/bootstrap.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FieldUIManageFieldsTestCase', + 'name' => 'BootstrapDestinationTestCase', 'type' => 'class', - 'filename' => 'modules/field_ui/field_ui.test', - 'module' => 'field_ui', + 'filename' => 'modules/simpletest/tests/bootstrap.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FieldUITestCase', + 'name' => 'BootstrapGetFilenameTestCase', 'type' => 'class', - 'filename' => 'modules/field_ui/field_ui.test', - 'module' => 'field_ui', + 'filename' => 'modules/simpletest/tests/bootstrap.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FieldUpdateForbiddenException', + 'name' => 'BootstrapGetFilenameWebTestCase', 'type' => 'class', - 'filename' => 'modules/field/field.module', - 'module' => 'field', + 'filename' => 'modules/simpletest/tests/bootstrap.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FieldUpdatePathTestCase', + 'name' => 'BootstrapIPAddressTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/update.field.test', + 'filename' => 'modules/simpletest/tests/bootstrap.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FieldValidationException', + 'name' => 'BootstrapMiscTestCase', 'type' => 'class', - 'filename' => 'modules/field/field.attach.inc', - 'module' => 'field', + 'filename' => 'modules/simpletest/tests/bootstrap.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'field_collection_handler_relationship', + 'name' => 'BootstrapOverrideServerVariablesTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/field_collection/views/field_collection_handler_relationship.inc', - 'module' => 'field_collection', + 'filename' => 'modules/simpletest/tests/bootstrap.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FileCopyTest', + 'name' => 'BootstrapPageCacheTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', + 'filename' => 'modules/simpletest/tests/bootstrap.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FileDeleteTest', + 'name' => 'BootstrapResettableStaticTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', + 'filename' => 'modules/simpletest/tests/bootstrap.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FileDirectoryTest', + 'name' => 'BootstrapTimerTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', + 'filename' => 'modules/simpletest/tests/bootstrap.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FileDownloadTest', + 'name' => 'BootstrapVariableTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', + 'filename' => 'modules/simpletest/tests/bootstrap.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FileFieldAnonymousSubmission', + 'name' => 'BRPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'modules/file/tests/file.test', - 'module' => 'file', + 'filename' => 'sites/all/modules/phone/tests/phone.br.test', + 'module' => 'phone', 'weight' => '0', )) ->values(array( - 'name' => 'FileFieldDisplayTestCase', + 'name' => 'CacheClearCase', 'type' => 'class', - 'filename' => 'modules/file/tests/file.test', - 'module' => 'file', + 'filename' => 'modules/simpletest/tests/cache.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FileFieldPathTestCase', + 'name' => 'CacheGetMultipleUnitTest', 'type' => 'class', - 'filename' => 'modules/file/tests/file.test', - 'module' => 'file', + 'filename' => 'modules/simpletest/tests/cache.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FileFieldRevisionTestCase', + 'name' => 'CacheIsEmptyCase', 'type' => 'class', - 'filename' => 'modules/file/tests/file.test', - 'module' => 'file', + 'filename' => 'modules/simpletest/tests/cache.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FileFieldTestCase', + 'name' => 'CacheSavingCase', 'type' => 'class', - 'filename' => 'modules/file/tests/file.test', - 'module' => 'file', + 'filename' => 'modules/simpletest/tests/cache.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FileFieldValidateTestCase', + 'name' => 'CacheTestCase', 'type' => 'class', - 'filename' => 'modules/file/tests/file.test', - 'module' => 'file', + 'filename' => 'modules/simpletest/tests/cache.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FileFieldWidgetTestCase', + 'name' => 'CAPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'modules/file/tests/file.test', - 'module' => 'file', + 'filename' => 'sites/all/modules/phone/tests/phone.ca.test', + 'module' => 'phone', 'weight' => '0', )) ->values(array( - 'name' => 'FileHookTestCase', + 'name' => 'CascadingStylesheetsTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', + 'filename' => 'modules/simpletest/tests/common.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FileLoadTest', + 'name' => 'CascadingStylesheetsUnitTest', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', + 'filename' => 'modules/simpletest/tests/common.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FileManagedFileElementTestCase', + 'name' => 'CategorizeFeedItemTestCase', 'type' => 'class', - 'filename' => 'modules/file/tests/file.test', - 'module' => 'file', + 'filename' => 'modules/aggregator/aggregator.test', + 'module' => 'aggregator', 'weight' => '0', )) ->values(array( - 'name' => 'FileMimeTypeTest', + 'name' => 'CategorizeFeedTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', - 'module' => 'simpletest', + 'filename' => 'modules/aggregator/aggregator.test', + 'module' => 'aggregator', 'weight' => '0', )) ->values(array( - 'name' => 'FileMoveTest', + 'name' => 'CHPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/phone/tests/phone.ch.test', + 'module' => 'phone', 'weight' => '0', )) ->values(array( - 'name' => 'FileNameMungingTest', + 'name' => 'CLPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/phone/tests/phone.cl.test', + 'module' => 'phone', 'weight' => '0', )) ->values(array( - 'name' => 'FilePrivateTestCase', + 'name' => 'CNPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'modules/file/tests/file.test', - 'module' => 'file', + 'filename' => 'sites/all/modules/phone/tests/phone.cn.test', + 'module' => 'phone', 'weight' => '0', )) ->values(array( - 'name' => 'FileSaveDataTest', + 'name' => 'ColorTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', - 'module' => 'simpletest', + 'filename' => 'modules/color/color.test', + 'module' => 'color', 'weight' => '0', )) ->values(array( - 'name' => 'FileSaveTest', + 'name' => 'CommentActionsTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', - 'module' => 'simpletest', + 'filename' => 'modules/comment/comment.test', + 'module' => 'comment', 'weight' => '0', )) ->values(array( - 'name' => 'FileSaveUploadTest', + 'name' => 'CommentAnonymous', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', - 'module' => 'simpletest', + 'filename' => 'modules/comment/comment.test', + 'module' => 'comment', 'weight' => '0', )) ->values(array( - 'name' => 'FileScanDirectoryTest', + 'name' => 'CommentApprovalTest', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', - 'module' => 'simpletest', + 'filename' => 'modules/comment/comment.test', + 'module' => 'comment', 'weight' => '0', )) ->values(array( - 'name' => 'FileSpaceUsedTest', + 'name' => 'CommentBlockFunctionalTest', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', - 'module' => 'simpletest', + 'filename' => 'modules/comment/comment.test', + 'module' => 'comment', 'weight' => '0', )) ->values(array( - 'name' => 'FileTaxonomyTermTestCase', + 'name' => 'CommentContentRebuild', 'type' => 'class', - 'filename' => 'modules/file/tests/file.test', - 'module' => 'file', + 'filename' => 'modules/comment/comment.test', + 'module' => 'comment', 'weight' => '0', )) ->values(array( - 'name' => 'FileTestCase', + 'name' => 'CommentController', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', - 'module' => 'simpletest', + 'filename' => 'modules/comment/comment.module', + 'module' => 'comment', 'weight' => '0', )) ->values(array( - 'name' => 'FileTokenReplaceTestCase', + 'name' => 'CommentFieldsTest', 'type' => 'class', - 'filename' => 'modules/file/tests/file.test', - 'module' => 'file', + 'filename' => 'modules/comment/comment.test', + 'module' => 'comment', 'weight' => '0', )) ->values(array( - 'name' => 'FileTranferTest', + 'name' => 'CommentHelperCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/filetransfer.test', - 'module' => 'simpletest', + 'filename' => 'modules/comment/comment.test', + 'module' => 'comment', 'weight' => '0', )) ->values(array( - 'name' => 'FileTransfer', + 'name' => 'CommentInterfaceTest', 'type' => 'class', - 'filename' => 'includes/filetransfer/filetransfer.inc', - 'module' => '', + 'filename' => 'modules/comment/comment.test', + 'module' => 'comment', 'weight' => '0', )) ->values(array( - 'name' => 'FileTransferChmodInterface', - 'type' => 'interface', - 'filename' => 'includes/filetransfer/filetransfer.inc', - 'module' => '', + 'name' => 'CommentNodeAccessTest', + 'type' => 'class', + 'filename' => 'modules/comment/comment.test', + 'module' => 'comment', 'weight' => '0', )) ->values(array( - 'name' => 'FileTransferException', + 'name' => 'CommentNodeChangesTestCase', 'type' => 'class', - 'filename' => 'includes/filetransfer/filetransfer.inc', - 'module' => '', + 'filename' => 'modules/comment/comment.test', + 'module' => 'comment', 'weight' => '0', )) ->values(array( - 'name' => 'FileTransferFTP', + 'name' => 'CommentPagerTest', 'type' => 'class', - 'filename' => 'includes/filetransfer/ftp.inc', - 'module' => '', + 'filename' => 'modules/comment/comment.test', + 'module' => 'comment', 'weight' => '0', )) ->values(array( - 'name' => 'FileTransferFTPExtension', + 'name' => 'CommentPreviewTest', 'type' => 'class', - 'filename' => 'includes/filetransfer/ftp.inc', - 'module' => '', + 'filename' => 'modules/comment/comment.test', + 'module' => 'comment', 'weight' => '0', )) ->values(array( - 'name' => 'FileTransferLocal', + 'name' => 'CommentRSSUnitTest', 'type' => 'class', - 'filename' => 'includes/filetransfer/local.inc', - 'module' => '', + 'filename' => 'modules/comment/comment.test', + 'module' => 'comment', 'weight' => '0', )) ->values(array( - 'name' => 'FileTransferSSH', + 'name' => 'CommentThreadingTestCase', 'type' => 'class', - 'filename' => 'includes/filetransfer/ssh.inc', - 'module' => '', + 'filename' => 'modules/comment/comment.test', + 'module' => 'comment', 'weight' => '0', )) ->values(array( - 'name' => 'FileUnmanagedCopyTest', + 'name' => 'CommentTokenReplaceTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', - 'module' => 'simpletest', + 'filename' => 'modules/comment/comment.test', + 'module' => 'comment', 'weight' => '0', )) ->values(array( - 'name' => 'FileUnmanagedDeleteRecursiveTest', + 'name' => 'CommentUpgradePathTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', + 'filename' => 'modules/simpletest/tests/upgrade/upgrade.comment.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FileUnmanagedDeleteTest', + 'name' => 'CommonSizeTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', + 'filename' => 'modules/simpletest/tests/common.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FileUnmanagedMoveTest', + 'name' => 'CommonURLUnitTest', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', + 'filename' => 'modules/simpletest/tests/common.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FileUnmanagedSaveDataTest', + 'name' => 'CommonXssUnitTest', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', + 'filename' => 'modules/simpletest/tests/common.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FileURLRewritingTest', + 'name' => 'ConfirmFormTest', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', - 'module' => 'simpletest', + 'filename' => 'modules/system/system.test', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'FileUsageTest', + 'name' => 'ConnectionUnitTest', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', + 'filename' => 'modules/simpletest/tests/database_test.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FileValidateTest', + 'name' => 'ContactPersonalTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', - 'module' => 'simpletest', + 'filename' => 'modules/contact/contact.test', + 'module' => 'contact', 'weight' => '0', )) ->values(array( - 'name' => 'FileValidatorTest', + 'name' => 'ContactSitewideTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', - 'module' => 'simpletest', + 'filename' => 'modules/contact/contact.test', + 'module' => 'contact', 'weight' => '0', )) ->values(array( - 'name' => 'FilledMinimalUpdatePath', + 'name' => 'ContextualDynamicContextTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/upgrade.test', - 'module' => 'simpletest', + 'filename' => 'modules/contextual/contextual.test', + 'module' => 'contextual', 'weight' => '0', )) ->values(array( - 'name' => 'FilledStandardUpdatePath', + 'name' => 'CronQueueTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/upgrade.test', - 'module' => 'simpletest', + 'filename' => 'modules/system/system.test', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'FilterAdminTestCase', + 'name' => 'CronRunTestCase', 'type' => 'class', - 'filename' => 'modules/filter/filter.test', - 'module' => 'filter', + 'filename' => 'modules/system/system.test', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'FilterCRUDTestCase', + 'name' => 'CRPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'modules/filter/filter.test', - 'module' => 'filter', + 'filename' => 'sites/all/modules/phone/tests/phone.cr.test', + 'module' => 'phone', 'weight' => '0', )) ->values(array( - 'name' => 'FilterDefaultFormatTestCase', + 'name' => 'CSPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'modules/filter/filter.test', - 'module' => 'filter', + 'filename' => 'sites/all/modules/phone/tests/phone.cs.test', + 'module' => 'phone', 'weight' => '0', )) ->values(array( - 'name' => 'FilterDOMSerializeTestCase', + 'name' => 'CtoolsContextKeywordsSubstitutionTestCase', 'type' => 'class', - 'filename' => 'modules/filter/filter.test', - 'module' => 'filter', + 'filename' => 'sites/all/modules/ctools/tests/context.test', + 'module' => 'ctools_plugin_test', 'weight' => '0', )) ->values(array( - 'name' => 'FilterFormatAccessTestCase', + 'name' => 'CtoolsCssTestCase', 'type' => 'class', - 'filename' => 'modules/filter/filter.test', - 'module' => 'filter', + 'filename' => 'sites/all/modules/ctools/tests/css.test', + 'module' => 'ctools_plugin_test', 'weight' => '0', )) ->values(array( - 'name' => 'FilterFormatUpgradePathTestCase', + 'name' => 'CtoolsExportCrudTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/upgrade.filter.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/ctools/tests/ctools_export_test/ctools_export.test', + 'module' => 'ctools_export_test', 'weight' => '0', )) ->values(array( - 'name' => 'FilterHooksTestCase', + 'name' => 'CtoolsMathExpressionStackTestCase', 'type' => 'class', - 'filename' => 'modules/filter/filter.test', - 'module' => 'filter', + 'filename' => 'sites/all/modules/ctools/tests/math_expression_stack.test', + 'module' => 'ctools_plugin_test', 'weight' => '0', )) ->values(array( - 'name' => 'FilterNoFormatTestCase', + 'name' => 'CtoolsMathExpressionTestCase', 'type' => 'class', - 'filename' => 'modules/filter/filter.test', - 'module' => 'filter', + 'filename' => 'sites/all/modules/ctools/tests/math_expression.test', + 'module' => 'ctools_plugin_test', 'weight' => '0', )) ->values(array( - 'name' => 'FilterSecurityTestCase', + 'name' => 'CtoolsObjectCache', 'type' => 'class', - 'filename' => 'modules/filter/filter.test', - 'module' => 'filter', + 'filename' => 'sites/all/modules/ctools/tests/object_cache.test', + 'module' => 'ctools_plugin_test', 'weight' => '0', )) ->values(array( - 'name' => 'FilterSettingsTestCase', + 'name' => 'CtoolsPluginsGetInfoTestCase', 'type' => 'class', - 'filename' => 'modules/filter/filter.test', - 'module' => 'filter', + 'filename' => 'sites/all/modules/ctools/tests/ctools.plugins.test', + 'module' => 'ctools_plugin_test', 'weight' => '0', )) ->values(array( - 'name' => 'FilterUnitTestCase', + 'name' => 'DashboardBlocksTestCase', 'type' => 'class', - 'filename' => 'modules/filter/filter.test', - 'module' => 'filter', + 'filename' => 'modules/dashboard/dashboard.test', + 'module' => 'dashboard', 'weight' => '0', )) ->values(array( - 'name' => 'FloodFunctionalTest', + 'name' => 'Database', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'includes/database/database.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'FormAlterTestCase', + 'name' => 'DatabaseAlterTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/form.test', + 'filename' => 'modules/simpletest/tests/database_test.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FormatDateUnitTest', + 'name' => 'DatabaseBasicSyntaxTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', + 'filename' => 'modules/simpletest/tests/database_test.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FormCheckboxTestCase', + 'name' => 'DatabaseCaseSensitivityTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/form.test', + 'filename' => 'modules/simpletest/tests/database_test.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FormElementTestCase', + 'name' => 'DatabaseCondition', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/form.test', - 'module' => 'simpletest', + 'filename' => 'includes/database/query.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'FormsArbitraryRebuildTestCase', + 'name' => 'DatabaseConnection', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/form.test', - 'module' => 'simpletest', + 'filename' => 'includes/database/database.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'FormsElementsLabelsTestCase', + 'name' => 'DatabaseConnectionNotDefinedException', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/form.test', - 'module' => 'simpletest', + 'filename' => 'includes/database/database.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'FormsElementsTableSelectFunctionalTest', + 'name' => 'DatabaseConnectionTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/form.test', + 'filename' => 'modules/simpletest/tests/database_test.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FormsElementsVerticalTabsFunctionalTest', + 'name' => 'DatabaseConnection_mysql', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/form.test', - 'module' => 'simpletest', + 'filename' => 'includes/database/mysql/database.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'FormsFileInclusionTestCase', + 'name' => 'DatabaseConnection_pgsql', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/form.test', - 'module' => 'simpletest', + 'filename' => 'includes/database/pgsql/database.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'FormsFormStoragePageCacheTestCase', + 'name' => 'DatabaseConnection_sqlite', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/form.test', + 'filename' => 'includes/database/sqlite/database.inc', + 'module' => '', + 'weight' => '0', +)) +->values(array( + 'name' => 'DatabaseDeleteTruncateTestCase', + 'type' => 'class', + 'filename' => 'modules/simpletest/tests/database_test.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FormsFormStorageTestCase', + 'name' => 'DatabaseDriverNotSpecifiedException', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/form.test', + 'filename' => 'includes/database/database.inc', + 'module' => '', + 'weight' => '0', +)) +->values(array( + 'name' => 'DatabaseEmptyStatementTestCase', + 'type' => 'class', + 'filename' => 'modules/simpletest/tests/database_test.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FormsFormWrapperTestCase', + 'name' => 'DatabaseFetch2TestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/form.test', + 'filename' => 'modules/simpletest/tests/database_test.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FormsProgrammaticTestCase', + 'name' => 'DatabaseFetchTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/form.test', + 'filename' => 'modules/simpletest/tests/database_test.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FormsRebuildTestCase', + 'name' => 'DatabaseInsertDefaultsTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/form.test', + 'filename' => 'modules/simpletest/tests/database_test.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FormsRedirectTestCase', + 'name' => 'DatabaseInsertLOBTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/form.test', + 'filename' => 'modules/simpletest/tests/database_test.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FormStateValuesCleanAdvancedTestCase', + 'name' => 'DatabaseInsertTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/form.test', + 'filename' => 'modules/simpletest/tests/database_test.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FormStateValuesCleanTestCase', + 'name' => 'DatabaseInvalidDataTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/form.test', + 'filename' => 'modules/simpletest/tests/database_test.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FormsTestCase', + 'name' => 'DatabaseLog', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/form.test', - 'module' => 'simpletest', + 'filename' => 'includes/database/log.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'FormsTriggeringElementTestCase', + 'name' => 'DatabaseLoggingTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/form.test', + 'filename' => 'modules/simpletest/tests/database_test.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FormTextareaTestCase', + 'name' => 'DatabaseMergeTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/form.test', + 'filename' => 'modules/simpletest/tests/database_test.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FormValidationTestCase', + 'name' => 'DatabaseNextIdCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/form.test', + 'filename' => 'modules/simpletest/tests/database_test.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'ForumIndexTestCase', + 'name' => 'DatabaseQueryTestCase', 'type' => 'class', - 'filename' => 'modules/forum/forum.test', - 'module' => 'forum', - 'weight' => '1', + 'filename' => 'modules/simpletest/tests/database_test.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'ForumTestCase', + 'name' => 'DatabaseRangeQueryTestCase', 'type' => 'class', - 'filename' => 'modules/forum/forum.test', - 'module' => 'forum', - 'weight' => '1', + 'filename' => 'modules/simpletest/tests/database_test.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'ForumUpgradePathTestCase', + 'name' => 'DatabaseRegressionTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/upgrade.forum.test', + 'filename' => 'modules/simpletest/tests/database_test.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'FrontPageTestCase', + 'name' => 'DatabaseSchema', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'includes/database/schema.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'GraphUnitTest', + 'name' => 'DatabaseSchemaObjectDoesNotExistException', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/graph.test', - 'module' => 'simpletest', + 'filename' => 'includes/database/schema.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'HelpTestCase', + 'name' => 'DatabaseSchemaObjectExistsException', 'type' => 'class', - 'filename' => 'modules/help/help.test', - 'module' => 'help', + 'filename' => 'includes/database/schema.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'HookBootExitTestCase', + 'name' => 'DatabaseSchema_mysql', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/bootstrap.test', - 'module' => 'simpletest', + 'filename' => 'includes/database/mysql/schema.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'HookRequirementsTestCase', + 'name' => 'DatabaseSchema_pgsql', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'includes/database/pgsql/schema.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'HTMLIdTestCase', + 'name' => 'DatabaseSchema_sqlite', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/form.test', - 'module' => 'simpletest', + 'filename' => 'includes/database/sqlite/schema.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'HUPhoneNumberTestCase', + 'name' => 'DatabaseSelectCloneTest', 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.hu.test', - 'module' => 'phone', + 'filename' => 'modules/simpletest/tests/database_test.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'i18nBlocksTestCase', + 'name' => 'DatabaseSelectComplexTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/i18n/i18n_block/i18n_block.test', - 'module' => 'i18n_block', + 'filename' => 'modules/simpletest/tests/database_test.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'i18nFieldTestCase', + 'name' => 'DatabaseSelectComplexTestCase2', 'type' => 'class', - 'filename' => 'sites/all/modules/i18n/i18n_field/i18n_field.test', - 'module' => 'i18n_field', + 'filename' => 'modules/simpletest/tests/database_test.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'i18nForumTestCase', + 'name' => 'DatabaseSelectOrderedTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/i18n/i18n_forum/i18n_forum.test', - 'module' => 'i18n_forum', + 'filename' => 'modules/simpletest/tests/database_test.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'i18nMenuTestCase', + 'name' => 'DatabaseSelectPagerDefaultTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/i18n/i18n_menu/i18n_menu.test', - 'module' => 'i18n_menu', + 'filename' => 'modules/simpletest/tests/database_test.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'I18nNodeTestCase', + 'name' => 'DatabaseSelectSubqueryTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/i18n/i18n_node/i18n_node.test', - 'module' => 'i18n_node', + 'filename' => 'modules/simpletest/tests/database_test.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'i18nPathTestCase', + 'name' => 'DatabaseSelectTableSortDefaultTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/i18n/i18n_path/i18n_path.test', - 'module' => 'i18n_path', + 'filename' => 'modules/simpletest/tests/database_test.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'I18NSelectAdminViewsAjax', + 'name' => 'DatabaseSelectTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/i18n/i18n_select/i18n_select.test', - 'module' => 'i18n_select', + 'filename' => 'modules/simpletest/tests/database_test.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'i18nSelectTestCase', + 'name' => 'DatabaseSerializeQueryTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/i18n/i18n_select/i18n_select.test', - 'module' => 'i18n_select', + 'filename' => 'modules/simpletest/tests/database_test.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'i18nStringTestCase', + 'name' => 'DatabaseStatementBase', 'type' => 'class', - 'filename' => 'sites/all/modules/i18n/i18n_string/i18n_string.test', - 'module' => 'i18n_string', + 'filename' => 'includes/database/database.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'i18nSyncTestCase', + 'name' => 'DatabaseStatementEmpty', 'type' => 'class', - 'filename' => 'sites/all/modules/i18n/i18n_sync/i18n_sync.test', - 'module' => 'i18n_sync', + 'filename' => 'includes/database/database.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'i18nTaxonomyTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.test', - 'module' => 'i18n_taxonomy', + 'name' => 'DatabaseStatementInterface', + 'type' => 'interface', + 'filename' => 'includes/database/database.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'i18nVariableTestCase', + 'name' => 'DatabaseStatementPrefetch', 'type' => 'class', - 'filename' => 'sites/all/modules/i18n/i18n_variable/i18n_variable.test', - 'module' => 'i18n_variable', + 'filename' => 'includes/database/prefetch.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'i18n_field', + 'name' => 'DatabaseStatement_sqlite', 'type' => 'class', - 'filename' => 'sites/all/modules/i18n/i18n_field/i18n_field.inc', - 'module' => 'i18n_field', + 'filename' => 'includes/database/sqlite/database.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'i18n_field_base', + 'name' => 'DatabaseTaggingTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/i18n/i18n_field/i18n_field.inc', - 'module' => 'i18n_field', + 'filename' => 'modules/simpletest/tests/database_test.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'i18n_field_instance', + 'name' => 'DatabaseTaskException', 'type' => 'class', - 'filename' => 'sites/all/modules/i18n/i18n_field/i18n_field.inc', - 'module' => 'i18n_field', + 'filename' => 'includes/install.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'i18n_object_wrapper', + 'name' => 'DatabaseTasks', 'type' => 'class', - 'filename' => 'sites/all/modules/i18n/i18n_object.inc', - 'module' => 'i18n', - 'weight' => '10', + 'filename' => 'includes/install.inc', + 'module' => '', + 'weight' => '0', )) ->values(array( - 'name' => 'i18n_string_object', + 'name' => 'DatabaseTasks_mysql', 'type' => 'class', - 'filename' => 'sites/all/modules/i18n/i18n_string/i18n_string.inc', - 'module' => 'i18n_string', + 'filename' => 'includes/database/mysql/install.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'i18n_string_object_wrapper', + 'name' => 'DatabaseTasks_pgsql', 'type' => 'class', - 'filename' => 'sites/all/modules/i18n/i18n_string/i18n_string.inc', - 'module' => 'i18n_string', + 'filename' => 'includes/database/pgsql/install.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'i18n_string_textgroup_cached', + 'name' => 'DatabaseTasks_sqlite', 'type' => 'class', - 'filename' => 'sites/all/modules/i18n/i18n_string/i18n_string.inc', - 'module' => 'i18n_string', + 'filename' => 'includes/database/sqlite/install.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'i18n_string_textgroup_default', + 'name' => 'DatabaseTemporaryQueryTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/i18n/i18n_string/i18n_string.inc', - 'module' => 'i18n_string', + 'filename' => 'modules/simpletest/tests/database_test.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'ILPhoneNumberTestCase', + 'name' => 'DatabaseTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.il.test', - 'module' => 'phone', + 'filename' => 'modules/simpletest/tests/database_test.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'ImageAdminStylesUnitTest', + 'name' => 'DatabaseTransaction', 'type' => 'class', - 'filename' => 'modules/image/image.test', - 'module' => 'image', + 'filename' => 'includes/database/database.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'ImageAdminUiTestCase', + 'name' => 'DatabaseTransactionCommitFailedException', 'type' => 'class', - 'filename' => 'modules/image/image.test', - 'module' => 'image', + 'filename' => 'includes/database/database.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'ImageDimensionsScaleTestCase', + 'name' => 'DatabaseTransactionExplicitCommitNotAllowedException', 'type' => 'class', - 'filename' => 'modules/image/image.test', - 'module' => 'image', + 'filename' => 'includes/database/database.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'ImageDimensionsTestCase', + 'name' => 'DatabaseTransactionNameNonUniqueException', 'type' => 'class', - 'filename' => 'modules/image/image.test', - 'module' => 'image', + 'filename' => 'includes/database/database.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'ImageEffectsUnitTest', + 'name' => 'DatabaseTransactionNoActiveException', 'type' => 'class', - 'filename' => 'modules/image/image.test', - 'module' => 'image', + 'filename' => 'includes/database/database.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'ImageFieldDefaultImagesTestCase', + 'name' => 'DatabaseTransactionOutOfOrderException', 'type' => 'class', - 'filename' => 'modules/image/image.test', - 'module' => 'image', + 'filename' => 'includes/database/database.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'ImageFieldDisplayTestCase', + 'name' => 'DatabaseTransactionTestCase', 'type' => 'class', - 'filename' => 'modules/image/image.test', - 'module' => 'image', + 'filename' => 'modules/simpletest/tests/database_test.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'ImageFieldTestCase', + 'name' => 'DatabaseUpdateComplexTestCase', 'type' => 'class', - 'filename' => 'modules/image/image.test', - 'module' => 'image', + 'filename' => 'modules/simpletest/tests/database_test.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'ImageFieldValidateTestCase', + 'name' => 'DatabaseUpdateLOBTestCase', 'type' => 'class', - 'filename' => 'modules/image/image.test', - 'module' => 'image', + 'filename' => 'modules/simpletest/tests/database_test.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'ImageFileMoveTest', + 'name' => 'DatabaseUpdateTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/image.test', + 'filename' => 'modules/simpletest/tests/database_test.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'ImageStyleFlushTest', + 'name' => 'DateAPITestCase', 'type' => 'class', - 'filename' => 'modules/image/image.test', - 'module' => 'image', + 'filename' => 'sites/all/modules/date/tests/date_api.test', + 'module' => 'date', 'weight' => '0', )) ->values(array( - 'name' => 'ImageStylesPathAndUrlTestCase', + 'name' => 'DateFieldBasic', 'type' => 'class', - 'filename' => 'modules/image/image.test', - 'module' => 'image', + 'filename' => 'sites/all/modules/date/tests/date_field.test', + 'module' => 'date', 'weight' => '0', )) ->values(array( - 'name' => 'ImageThemeFunctionWebTestCase', + 'name' => 'DateFieldTestCase', 'type' => 'class', - 'filename' => 'modules/image/image.test', - 'module' => 'image', + 'filename' => 'sites/all/modules/date/tests/date_field.test', + 'module' => 'date', 'weight' => '0', )) ->values(array( - 'name' => 'ImageToolkitGdTestCase', + 'name' => 'DateFormatTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/image.test', - 'module' => 'simpletest', + 'filename' => 'modules/system/system.test', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'ImageToolkitTestCase', + 'name' => 'DateFormTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/image.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/date/tests/date_form.test', + 'module' => 'date', 'weight' => '0', )) ->values(array( - 'name' => 'ImageToolkitUnitTest', + 'name' => 'DateMigrateExampleUnitTest', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/image.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/date/tests/date_migrate.test', + 'module' => 'date', 'weight' => '0', )) ->values(array( - 'name' => 'ImportOPMLTestCase', + 'name' => 'DateMigrateFieldHandler', 'type' => 'class', - 'filename' => 'modules/aggregator/aggregator.test', - 'module' => 'aggregator', + 'filename' => 'sites/all/modules/date/date.migrate.inc', + 'module' => 'date', 'weight' => '0', )) ->values(array( - 'name' => 'InfoFileParserTestCase', + 'name' => 'DateObject', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'sites/all/modules/date/date_api/date_api.module', + 'module' => 'date_api', 'weight' => '0', )) ->values(array( - 'name' => 'InsertQuery', + 'name' => 'DateRepeatFormTestCase', 'type' => 'class', - 'filename' => 'includes/database/query.inc', - 'module' => '', + 'filename' => 'sites/all/modules/date/date_repeat/tests/date_repeat_form.test', + 'module' => 'date_repeat', 'weight' => '0', )) ->values(array( - 'name' => 'InsertQuery_mysql', + 'name' => 'DateRepeatTestCase', 'type' => 'class', - 'filename' => 'includes/database/mysql/query.inc', - 'module' => '', + 'filename' => 'sites/all/modules/date/date_repeat/tests/date_repeat.test', + 'module' => 'date_repeat', 'weight' => '0', )) ->values(array( - 'name' => 'InsertQuery_pgsql', + 'name' => 'DateTimeFunctionalTest', 'type' => 'class', - 'filename' => 'includes/database/pgsql/query.inc', - 'module' => '', + 'filename' => 'modules/system/system.test', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'InsertQuery_sqlite', + 'name' => 'DateTimezoneTestCase', 'type' => 'class', - 'filename' => 'includes/database/sqlite/query.inc', - 'module' => '', + 'filename' => 'sites/all/modules/date/tests/date_timezone.test', + 'module' => 'date', 'weight' => '0', )) ->values(array( - 'name' => 'InvalidMergeQueryException', + 'name' => 'DateToolsTestCase', 'type' => 'class', - 'filename' => 'includes/database/database.inc', - 'module' => '', + 'filename' => 'sites/all/modules/date/date_tools/tests/date_tools.test', + 'module' => 'date_tools', 'weight' => '0', )) ->values(array( - 'name' => 'IPAddressBlockingTestCase', + 'name' => 'DateUITestCase', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'sites/all/modules/date/tests/date.test', + 'module' => 'date', 'weight' => '0', )) ->values(array( - 'name' => 'ITPhoneNumberTestCase', + 'name' => 'DateValidationTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.it.test', - 'module' => 'phone', + 'filename' => 'sites/all/modules/date/tests/date_validation.test', + 'module' => 'date', 'weight' => '0', )) ->values(array( - 'name' => 'JavaScriptTestCase', + 'name' => 'DateViewsPopupTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/date/tests/date_views_popup.test', + 'module' => 'date', 'weight' => '0', )) ->values(array( - 'name' => 'JOPhoneNumberTestCase', + 'name' => 'date_sql_handler', 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.jo.test', - 'module' => 'phone', + 'filename' => 'sites/all/modules/date/date_api/date_api_sql.inc', + 'module' => 'date_api', 'weight' => '0', )) ->values(array( - 'name' => 'LinkAttributeCrudTest', + 'name' => 'DBLogTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/link/tests/link.attribute.test', - 'module' => 'link', + 'filename' => 'modules/dblog/dblog.test', + 'module' => 'dblog', 'weight' => '0', )) ->values(array( - 'name' => 'LinkBaseTestClass', + 'name' => 'DefaultMailSystem', 'type' => 'class', - 'filename' => 'sites/all/modules/link/tests/link.test', - 'module' => 'link', + 'filename' => 'modules/system/system.mail.inc', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'LinkContentCrudTest', + 'name' => 'DeleteQuery', 'type' => 'class', - 'filename' => 'sites/all/modules/link/tests/link.crud.test', - 'module' => 'link', + 'filename' => 'includes/database/query.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'LinkEntityTokenTest', + 'name' => 'DeleteQuery_sqlite', 'type' => 'class', - 'filename' => 'sites/all/modules/link/tests/link.entity_token.test', - 'module' => 'link', + 'filename' => 'includes/database/sqlite/query.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'LinkTokenTest', + 'name' => 'DisabledNodeTypeTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/link/tests/link.token.test', - 'module' => 'link', + 'filename' => 'modules/simpletest/tests/upgrade/upgrade.node.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'LinkUITest', + 'name' => 'DrupalAddFeedTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/link/tests/link.crud_browser.test', - 'module' => 'link', + 'filename' => 'modules/simpletest/tests/common.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'LinkValidateSpecificURL', + 'name' => 'DrupalAlterTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/link/tests/link.validate.test', - 'module' => 'link', + 'filename' => 'modules/simpletest/tests/common.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'LinkValidateTest', + 'name' => 'DrupalAttributesUnitTest', 'type' => 'class', - 'filename' => 'sites/all/modules/link/tests/link.validate.test', - 'module' => 'link', + 'filename' => 'modules/simpletest/tests/common.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'LinkValidateTestCase', + 'name' => 'DrupalCacheArray', 'type' => 'class', - 'filename' => 'sites/all/modules/link/tests/link.validate.test', - 'module' => 'link', + 'filename' => 'includes/bootstrap.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'LinkValidateTestNews', - 'type' => 'class', - 'filename' => 'sites/all/modules/link/tests/link.validate.test', - 'module' => 'link', + 'name' => 'DrupalCacheInterface', + 'type' => 'interface', + 'filename' => 'includes/cache.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'LinkValidateUrlLight', + 'name' => 'DrupalDataApiTest', 'type' => 'class', - 'filename' => 'sites/all/modules/link/tests/link.validate.test', - 'module' => 'link', + 'filename' => 'modules/simpletest/tests/common.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'link_views_handler_argument_target', + 'name' => 'DrupalDatabaseCache', 'type' => 'class', - 'filename' => 'sites/all/modules/link/views/link_views_handler_argument_target.inc', - 'module' => 'link', + 'filename' => 'includes/cache.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'link_views_handler_filter_protocol', + 'name' => 'DrupalDefaultEntityController', 'type' => 'class', - 'filename' => 'sites/all/modules/link/views/link_views_handler_filter_protocol.inc', - 'module' => 'link', + 'filename' => 'includes/entity.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'ListDynamicValuesTestCase', - 'type' => 'class', - 'filename' => 'modules/field/modules/list/tests/list.test', - 'module' => 'list', + 'name' => 'DrupalEntityControllerInterface', + 'type' => 'interface', + 'filename' => 'includes/entity.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'ListDynamicValuesValidationTestCase', + 'name' => 'DrupalErrorCollectionUnitTest', 'type' => 'class', - 'filename' => 'modules/field/modules/list/tests/list.test', - 'module' => 'list', + 'filename' => 'modules/simpletest/tests/common.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'ListFieldTestCase', + 'name' => 'DrupalErrorHandlerTestCase', 'type' => 'class', - 'filename' => 'modules/field/modules/list/tests/list.test', - 'module' => 'list', + 'filename' => 'modules/simpletest/tests/error.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'ListFieldUITestCase', + 'name' => 'DrupalFakeCache', 'type' => 'class', - 'filename' => 'modules/field/modules/list/tests/list.test', - 'module' => 'list', + 'filename' => 'includes/cache-install.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'LocaleBrowserDetectionTest', + 'name' => 'DrupalGetQueryArrayTestCase', 'type' => 'class', - 'filename' => 'modules/locale/locale.test', - 'module' => 'locale', + 'filename' => 'modules/simpletest/tests/common.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'LocaleCommentLanguageFunctionalTest', + 'name' => 'DrupalGetRdfNamespacesTestCase', 'type' => 'class', - 'filename' => 'modules/locale/locale.test', - 'module' => 'locale', + 'filename' => 'modules/simpletest/tests/common.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'LocaleConfigurationTest', + 'name' => 'DrupalGotoTest', 'type' => 'class', - 'filename' => 'modules/locale/locale.test', - 'module' => 'locale', + 'filename' => 'modules/simpletest/tests/common.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'LocaleContentFunctionalTest', + 'name' => 'DrupalHTMLIdentifierTestCase', 'type' => 'class', - 'filename' => 'modules/locale/locale.test', - 'module' => 'locale', + 'filename' => 'modules/simpletest/tests/common.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'LocaleCSSAlterTest', + 'name' => 'DrupalHtmlToTextTestCase', 'type' => 'class', - 'filename' => 'modules/locale/locale.test', - 'module' => 'locale', + 'filename' => 'modules/simpletest/tests/mail.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'LocaleDateFormatsFunctionalTest', + 'name' => 'DrupalHTTPRequestTestCase', 'type' => 'class', - 'filename' => 'modules/locale/locale.test', - 'module' => 'locale', + 'filename' => 'modules/simpletest/tests/common.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'LocaleExportFunctionalTest', + 'name' => 'DrupalHTTPResponseStatusLineTest', 'type' => 'class', - 'filename' => 'modules/locale/locale.test', - 'module' => 'locale', + 'filename' => 'modules/simpletest/tests/common.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'LocaleImportFunctionalTest', + 'name' => 'Drupali18nConfigTestCase', 'type' => 'class', - 'filename' => 'modules/locale/locale.test', - 'module' => 'locale', + 'filename' => 'sites/all/modules/i18n/i18n.test', + 'module' => 'i18n', 'weight' => '0', )) ->values(array( - 'name' => 'LocaleInstallTest', + 'name' => 'Drupali18nTestCase', 'type' => 'class', - 'filename' => 'modules/locale/locale.test', - 'module' => 'locale', + 'filename' => 'sites/all/modules/i18n/i18n.test', + 'module' => 'i18n', 'weight' => '0', )) ->values(array( - 'name' => 'LocaleJavascriptTranslationTest', + 'name' => 'DrupalJSONTest', 'type' => 'class', - 'filename' => 'modules/locale/locale.test', - 'module' => 'locale', + 'filename' => 'modules/simpletest/tests/common.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'LocaleLanguageNegotiationInfoFunctionalTest', + 'name' => 'DrupalLocalStreamWrapper', 'type' => 'class', - 'filename' => 'modules/locale/locale.test', - 'module' => 'locale', + 'filename' => 'includes/stream_wrappers.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'LocaleLanguageSwitchingFunctionalTest', + 'name' => 'DrupalMatchPathTestCase', 'type' => 'class', - 'filename' => 'modules/locale/locale.test', - 'module' => 'locale', + 'filename' => 'modules/simpletest/tests/path.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'LocaleLibraryInfoAlterTest', + 'name' => 'DrupalPrivateStreamWrapper', 'type' => 'class', - 'filename' => 'modules/locale/locale.test', - 'module' => 'locale', + 'filename' => 'includes/stream_wrappers.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'LocaleMultilingualFieldsFunctionalTest', + 'name' => 'DrupalPublicStreamWrapper', 'type' => 'class', - 'filename' => 'modules/locale/locale.test', - 'module' => 'locale', + 'filename' => 'includes/stream_wrappers.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'LocalePathFunctionalTest', + 'name' => 'DrupalQueue', 'type' => 'class', - 'filename' => 'modules/locale/locale.test', - 'module' => 'locale', + 'filename' => 'modules/system/system.queue.inc', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'LocalePluralFormatTest', - 'type' => 'class', - 'filename' => 'modules/locale/locale.test', - 'module' => 'locale', + 'name' => 'DrupalQueueInterface', + 'type' => 'interface', + 'filename' => 'modules/system/system.queue.inc', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'LocaleStringIsSafeTest', - 'type' => 'class', - 'filename' => 'modules/locale/locale.test', - 'module' => 'locale', + 'name' => 'DrupalReliableQueueInterface', + 'type' => 'interface', + 'filename' => 'modules/system/system.queue.inc', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'LocaleTranslationFunctionalTest', + 'name' => 'DrupalRenderTestCase', 'type' => 'class', - 'filename' => 'modules/locale/locale.test', - 'module' => 'locale', + 'filename' => 'modules/simpletest/tests/common.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'LocaleUILanguageNegotiationTest', + 'name' => 'DrupalSetContentTestCase', 'type' => 'class', - 'filename' => 'modules/locale/locale.test', - 'module' => 'locale', + 'filename' => 'modules/simpletest/tests/common.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'LocaleUninstallFrenchFunctionalTest', + 'name' => 'DrupalSetMessageTest', 'type' => 'class', - 'filename' => 'modules/locale/locale.test', - 'module' => 'locale', + 'filename' => 'modules/system/system.test', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'LocaleUninstallFunctionalTest', - 'type' => 'class', - 'filename' => 'modules/locale/locale.test', - 'module' => 'locale', + 'name' => 'DrupalStreamWrapperInterface', + 'type' => 'interface', + 'filename' => 'includes/stream_wrappers.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'LocaleUpgradePathTestCase', + 'name' => 'DrupalSystemListingTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/upgrade.locale.test', + 'filename' => 'modules/simpletest/tests/common.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'LocaleUrlRewritingTest', + 'name' => 'DrupalTagsHandlingTestCase', 'type' => 'class', - 'filename' => 'modules/locale/locale.test', - 'module' => 'locale', + 'filename' => 'modules/simpletest/tests/common.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'LocaleUserCreationTest', + 'name' => 'DrupalTemporaryStreamWrapper', 'type' => 'class', - 'filename' => 'modules/locale/locale.test', - 'module' => 'locale', + 'filename' => 'includes/stream_wrappers.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'LocaleUserLanguageFunctionalTest', + 'name' => 'DrupalTestCase', 'type' => 'class', - 'filename' => 'modules/locale/locale.test', - 'module' => 'locale', + 'filename' => 'modules/simpletest/drupal_web_test_case.php', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'LockFunctionalTest', + 'name' => 'DrupalUnitTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/lock.test', + 'filename' => 'modules/simpletest/drupal_web_test_case.php', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'MailSystemInterface', - 'type' => 'interface', - 'filename' => 'includes/mail.inc', + 'name' => 'DrupalUpdateException', + 'type' => 'class', + 'filename' => 'includes/update.inc', 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'MailTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/mail.test', - 'module' => 'simpletest', + 'name' => 'DrupalUpdaterInterface', + 'type' => 'interface', + 'filename' => 'includes/updater.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'MemoryQueue', + 'name' => 'DrupalWebTestCase', 'type' => 'class', - 'filename' => 'modules/system/system.queue.inc', - 'module' => 'system', + 'filename' => 'modules/simpletest/drupal_web_test_case.php', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'MenuBreadcrumbTestCase', + 'name' => 'EarlyBootstrapTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/menu.test', + 'filename' => 'modules/simpletest/tests/boot.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'MenuLinksUnitTestCase', + 'name' => 'EGPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/menu.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/phone/tests/phone.eg.test', + 'module' => 'phone', 'weight' => '0', )) ->values(array( - 'name' => 'MenuNodeTestCase', + 'name' => 'EnableDisableTestCase', 'type' => 'class', - 'filename' => 'modules/menu/menu.test', - 'module' => 'menu', + 'filename' => 'modules/system/system.test', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'MenuRebuildTestCase', + 'name' => 'Entity', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/menu.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/entity/includes/entity.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'MenuRouterTestCase', + 'name' => 'EntityAPICommentNodeAccessTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/menu.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/entity/entity.test', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'MenuTestCase', + 'name' => 'EntityAPIController', 'type' => 'class', - 'filename' => 'modules/menu/menu.test', - 'module' => 'menu', + 'filename' => 'sites/all/modules/entity/includes/entity.controller.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'MenuTrailTestCase', + 'name' => 'EntityAPIControllerExportable', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/menu.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/entity/includes/entity.controller.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'MenuTreeDataTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/menu.test', - 'module' => 'simpletest', + 'name' => 'EntityAPIControllerInterface', + 'type' => 'interface', + 'filename' => 'sites/all/modules/entity/includes/entity.controller.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'MenuTreeOutputTestCase', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/menu.test', - 'module' => 'simpletest', + 'name' => 'EntityAPIControllerRevisionableInterface', + 'type' => 'interface', + 'filename' => 'sites/all/modules/entity/includes/entity.controller.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'MenuUpgradePathTestCase', + 'name' => 'EntityAPIi18nItegrationTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/upgrade.menu.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/entity/entity.test', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'MenuWebTestCase', + 'name' => 'EntityAPIRulesIntegrationTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/menu.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/entity/entity.test', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'MergeQuery', + 'name' => 'EntityAPITestCase', 'type' => 'class', - 'filename' => 'includes/database/query.inc', - 'module' => '', + 'filename' => 'sites/all/modules/entity/entity.test', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'MigrateDestinationFieldCollection', + 'name' => 'EntityBundleableUIController', 'type' => 'class', - 'filename' => 'sites/all/modules/field_collection/field_collection.migrate.inc', - 'module' => 'field_collection', + 'filename' => 'sites/all/modules/entity/includes/entity.ui.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'MigrateDestinationParagraphsItem', + 'name' => 'EntityContentUIController', 'type' => 'class', - 'filename' => 'sites/all/modules/paragraphs/migrate/destinations/MigrateDestinationParagraphsItem.inc', - 'module' => 'paragraphs', + 'filename' => 'sites/all/modules/entity/includes/entity.ui.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'MigrateEmailFieldHandler', + 'name' => 'EntityCrudHookTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/email/email.migrate.inc', - 'module' => 'email', + 'filename' => 'modules/simpletest/tests/entity_crud_hook_test.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'MigrateEntityReferenceFieldHandler', + 'name' => 'EntityDB', 'type' => 'class', - 'filename' => 'sites/all/modules/entityreference/entityreference.migrate.inc', - 'module' => 'entityreference', + 'filename' => 'sites/all/modules/entity/includes/entity.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'MigrateLinkFieldHandler', + 'name' => 'EntityDBExtendable', 'type' => 'class', - 'filename' => 'sites/all/modules/link/link.migrate.inc', - 'module' => 'link', + 'filename' => 'sites/all/modules/entity/includes/entity.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'MigratePhoneFieldHandler', + 'name' => 'EntityDefaultExtraFieldsController', 'type' => 'class', - 'filename' => 'sites/all/modules/phone/phone.migrate.inc', - 'module' => 'phone', + 'filename' => 'sites/all/modules/entity/entity.info.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'MockTestConnection', + 'name' => 'EntityDefaultFeaturesController', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/filetransfer.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/entity/entity.features.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'ModuleDependencyTestCase', + 'name' => 'EntityDefaultI18nStringController', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'sites/all/modules/entity/entity.i18n.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'ModuleImplementsAlterTestCase', + 'name' => 'EntityDefaultMetadataController', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/module.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/entity/entity.info.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'ModuleInstallTestCase', + 'name' => 'EntityDefaultRulesController', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/module.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/entity/entity.rules.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'ModuleProvidedThemeEngineTestCase', + 'name' => 'EntityDefaultUIController', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/theme.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/entity/includes/entity.ui.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'ModuleRequiredTestCase', + 'name' => 'EntityDefaultViewsController', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'sites/all/modules/entity/views/entity.views.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'ModuleTestCase', + 'name' => 'EntityDrupalWrapper', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'ModuleUninstallTestCase', + 'name' => 'EntityExtendable', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/module.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/entity/includes/entity.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'ModuleUnitTest', - 'type' => 'class', - 'filename' => 'modules/simpletest/tests/module.test', - 'module' => 'simpletest', + 'name' => 'EntityExtraFieldsControllerInterface', + 'type' => 'interface', + 'filename' => 'sites/all/modules/entity/entity.info.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'ModuleUpdater', + 'name' => 'EntityFieldHandlerHelper', 'type' => 'class', - 'filename' => 'modules/system/system.updater.inc', - 'module' => 'system', + 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_field_handler_helper.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'ModuleVersionTestCase', + 'name' => 'EntityFieldQuery', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'includes/entity.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'MultiStepNodeFormBasicOptionsTest', + 'name' => 'EntityFieldQueryException', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'includes/entity.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'NewDefaultThemeBlocks', + 'name' => 'EntityFieldQueryTestCase', 'type' => 'class', - 'filename' => 'modules/block/block.test', - 'module' => 'block', - 'weight' => '-5', + 'filename' => 'modules/simpletest/tests/entity_query.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'NLPhoneNumberTestCase', - 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.nl.test', - 'module' => 'phone', + 'name' => 'EntityInterface', + 'type' => 'interface', + 'filename' => 'sites/all/modules/entity/includes/entity.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'NodeAccessBaseTableTestCase', + 'name' => 'EntityListWrapper', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'NodeAccessFieldTestCase', + 'name' => 'EntityLoadTestCase', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'modules/simpletest/tests/entity_crud.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'NodeAccessPagerTestCase', + 'name' => 'EntityMalformedException', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'includes/entity.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'NodeAccessRebuildTestCase', + 'name' => 'EntityMetadataArrayObject', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'NodeAccessRecordsTestCase', + 'name' => 'EntityMetadataIntegrationTestCase', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/entity/entity.test', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'NodeAccessTestCase', + 'name' => 'EntityMetadataNodeAccessTestCase', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/entity/entity.test', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'NodeAdminTestCase', + 'name' => 'EntityMetadataNodeCreateAccessTestCase', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/entity/entity.test', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'NodeBlockFunctionalTest', + 'name' => 'EntityMetadataNodeRevisionAccessTestCase', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/entity/entity.test', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'NodeBlockTestCase', + 'name' => 'EntityMetadataTaxonomyAccessTestCase', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/entity/entity.test', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'NodeBodyUpgradePathTestCase', + 'name' => 'EntityMetadataTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/upgrade.node.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/entity/entity.test', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'NodeBuildContent', + 'name' => 'EntityMetadataWrapper', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'NodeController', + 'name' => 'EntityMetadataWrapperException', 'type' => 'class', - 'filename' => 'modules/node/node.module', - 'module' => 'node', + 'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'NodeCreationTestCase', + 'name' => 'EntityMetadataWrapperIterator', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'NodeEntityFieldQueryAlter', + 'name' => 'EntityPropertiesTestCase', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'modules/field/tests/field.test', + 'module' => 'field', 'weight' => '0', )) ->values(array( - 'name' => 'NodeEntityViewModeAlterTest', + 'name' => 'EntityReferenceAdminTestCase', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/entityreference/tests/entityreference.admin.test', + 'module' => 'entityreference', 'weight' => '0', )) ->values(array( - 'name' => 'NodeFeedTestCase', + 'name' => 'EntityReferenceHandlersTestCase', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/entityreference/tests/entityreference.handlers.test', + 'module' => 'entityreference', 'weight' => '0', )) ->values(array( - 'name' => 'NodeLoadHooksTestCase', + 'name' => 'EntityReferenceTaxonomyTestCase', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/entityreference/tests/entityreference.taxonomy.test', + 'module' => 'entityreference', 'weight' => '0', )) ->values(array( - 'name' => 'NodeLoadMultipleTestCase', - 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'name' => 'EntityReference_BehaviorHandler', + 'type' => 'interface', + 'filename' => 'sites/all/modules/entityreference/plugins/behavior/abstract.inc', + 'module' => 'entityreference', 'weight' => '0', )) ->values(array( - 'name' => 'NodeMultiByteUtf8Test', + 'name' => 'EntityReference_BehaviorHandler_Abstract', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/entityreference/plugins/behavior/abstract.inc', + 'module' => 'entityreference', 'weight' => '0', )) ->values(array( - 'name' => 'NodePageCacheTest', + 'name' => 'EntityReference_BehaviorHandler_Broken', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/entityreference/plugins/behavior/abstract.inc', + 'module' => 'entityreference', 'weight' => '0', )) ->values(array( - 'name' => 'NodePostSettingsTestCase', + 'name' => 'entityreference_plugin_display', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/entityreference/views/entityreference_plugin_display.inc', + 'module' => 'entityreference', 'weight' => '0', )) ->values(array( - 'name' => 'NodeQueryAlter', + 'name' => 'entityreference_plugin_row_fields', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/entityreference/views/entityreference_plugin_row_fields.inc', + 'module' => 'entityreference', 'weight' => '0', )) ->values(array( - 'name' => 'NodeRevisionPermissionsTestCase', + 'name' => 'entityreference_plugin_style', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/entityreference/views/entityreference_plugin_style.inc', + 'module' => 'entityreference', 'weight' => '0', )) ->values(array( - 'name' => 'NodeRevisionsTestCase', - 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'name' => 'EntityReference_SelectionHandler', + 'type' => 'interface', + 'filename' => 'sites/all/modules/entityreference/plugins/selection/abstract.inc', + 'module' => 'entityreference', 'weight' => '0', )) ->values(array( - 'name' => 'NodeRSSContentTestCase', + 'name' => 'EntityReference_SelectionHandler_Broken', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/entityreference/plugins/selection/abstract.inc', + 'module' => 'entityreference', 'weight' => '0', )) ->values(array( - 'name' => 'NodeSaveTestCase', + 'name' => 'EntityStructureWrapper', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'NodeTitleTestCase', + 'name' => 'EntityTokenTestCase', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/entity/entity.test', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'NodeTitleXSSTestCase', + 'name' => 'EntityTranslationFieldCollectionItemHandler', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/field_collection/includes/translation.handler.field_collection_item.inc', + 'module' => 'field_collection', 'weight' => '0', )) ->values(array( - 'name' => 'NodeTokenReplaceTestCase', + 'name' => 'EntityValueWrapper', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/entity/includes/entity.wrapper.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'NodeTypePersistenceTestCase', + 'name' => 'EntityWebTestCase', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/entity/entity.test', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'NodeTypeTestCase', + 'name' => 'entity_views_handler_area_entity', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_area_entity.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'NodeWebTestCase', + 'name' => 'entity_views_handler_field_boolean', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_boolean.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'NoFieldsException', + 'name' => 'entity_views_handler_field_date', 'type' => 'class', - 'filename' => 'includes/database/database.inc', - 'module' => '', + 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_date.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'NoHelpTestCase', + 'name' => 'entity_views_handler_field_duration', 'type' => 'class', - 'filename' => 'modules/help/help.test', - 'module' => 'help', + 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_duration.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'NonDefaultBlockAdmin', + 'name' => 'entity_views_handler_field_entity', 'type' => 'class', - 'filename' => 'modules/block/block.test', - 'module' => 'block', - 'weight' => '-5', + 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_entity.inc', + 'module' => 'entity', + 'weight' => '0', )) ->values(array( - 'name' => 'NumberFieldTestCase', + 'name' => 'entity_views_handler_field_field', 'type' => 'class', - 'filename' => 'modules/field/modules/number/number.test', - 'module' => 'number', + 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_field.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'NZPhoneNumberTestCase', + 'name' => 'entity_views_handler_field_numeric', 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.nz.test', - 'module' => 'phone', + 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_numeric.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'OpenIDFunctionalTestCase', + 'name' => 'entity_views_handler_field_options', 'type' => 'class', - 'filename' => 'modules/openid/openid.test', - 'module' => 'openid', + 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_options.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'OpenIDInvalidIdentifierTransitionTestCase', + 'name' => 'entity_views_handler_field_text', 'type' => 'class', - 'filename' => 'modules/openid/openid.test', - 'module' => 'openid', + 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_text.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'OpenIDRegistrationTestCase', + 'name' => 'entity_views_handler_field_uri', 'type' => 'class', - 'filename' => 'modules/openid/openid.test', - 'module' => 'openid', + 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_field_uri.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'OpenIDTestCase', + 'name' => 'entity_views_handler_relationship', 'type' => 'class', - 'filename' => 'modules/openid/openid.test', - 'module' => 'openid', + 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_relationship.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'OpenIDWebTestCase', + 'name' => 'entity_views_handler_relationship_by_bundle', 'type' => 'class', - 'filename' => 'modules/openid/openid.test', - 'module' => 'openid', + 'filename' => 'sites/all/modules/entity/views/handlers/entity_views_handler_relationship_by_bundle.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'OptionsSelectDynamicValuesTestCase', + 'name' => 'entity_views_plugin_row_entity_view', 'type' => 'class', - 'filename' => 'modules/field/modules/options/options.test', - 'module' => 'options', + 'filename' => 'sites/all/modules/entity/views/plugins/entity_views_plugin_row_entity_view.inc', + 'module' => 'entity', 'weight' => '0', )) ->values(array( - 'name' => 'OptionsWidgetsTestCase', + 'name' => 'ESPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'modules/field/modules/options/options.test', - 'module' => 'options', + 'filename' => 'sites/all/modules/phone/tests/phone.es.test', + 'module' => 'phone', 'weight' => '0', )) ->values(array( - 'name' => 'PageEditTestCase', + 'name' => 'FakeRecord', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'modules/simpletest/tests/database_test.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'PageNotFoundTestCase', + 'name' => 'FeedIconTest', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'modules/simpletest/tests/common.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'PagePreviewTestCase', + 'name' => 'FeedParserTestCase', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'modules/aggregator/aggregator.test', + 'module' => 'aggregator', 'weight' => '0', )) ->values(array( - 'name' => 'PagerDefault', + 'name' => 'FeedsMapperFieldTestCase', 'type' => 'class', - 'filename' => 'includes/pager.inc', - 'module' => '', + 'filename' => 'sites/all/modules/entityreference/tests/entityreference.feeds.test', + 'module' => 'entityreference', 'weight' => '0', )) ->values(array( - 'name' => 'PagerFunctionalWebTestCase', + 'name' => 'FieldAttachOtherTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/pager.test', - 'module' => 'simpletest', + 'filename' => 'modules/field/tests/field.test', + 'module' => 'field', 'weight' => '0', )) ->values(array( - 'name' => 'PageTitleFiltering', + 'name' => 'FieldAttachStorageTestCase', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'modules/field/tests/field.test', + 'module' => 'field', 'weight' => '0', )) ->values(array( - 'name' => 'PageViewTestCase', + 'name' => 'FieldAttachTestCase', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'modules/field/tests/field.test', + 'module' => 'field', 'weight' => '0', )) ->values(array( - 'name' => 'ParagraphsItemEntity', + 'name' => 'FieldBulkDeleteTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/paragraphs/ParagraphsItemEntity.inc', - 'module' => 'paragraphs', + 'filename' => 'modules/field/tests/field.test', + 'module' => 'field', 'weight' => '0', )) ->values(array( - 'name' => 'ParagraphsItemMetadataController', + 'name' => 'FieldCollectionBasicTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/paragraphs/ParagraphsItemMetadataController.inc', - 'module' => 'paragraphs', + 'filename' => 'sites/all/modules/field_collection/field_collection.test', + 'module' => 'field_collection', 'weight' => '0', )) ->values(array( - 'name' => 'ParagraphsMigrateParagraphsFieldHandler', + 'name' => 'FieldCollectionContentTranslationTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/paragraphs/migrate/fields/ParagraphsMigrateParagraphsFieldHandler.inc', - 'module' => 'paragraphs', + 'filename' => 'sites/all/modules/field_collection/field_collection.test', + 'module' => 'field_collection', 'weight' => '0', )) ->values(array( - 'name' => 'ParagraphsWebTestCase', + 'name' => 'FieldCollectionEntityTranslationTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/paragraphs/tests/paragraphs.test', - 'module' => 'paragraphs', + 'filename' => 'sites/all/modules/field_collection/field_collection.test', + 'module' => 'field_collection', 'weight' => '0', )) ->values(array( - 'name' => 'paragraphs_handler_relationship', + 'name' => 'FieldCollectionItemEntity', 'type' => 'class', - 'filename' => 'sites/all/modules/paragraphs/views/paragraphs_handler_relationship.inc', - 'module' => 'paragraphs', + 'filename' => 'sites/all/modules/field_collection/field_collection.entity.inc', + 'module' => 'field_collection', 'weight' => '0', )) ->values(array( - 'name' => 'ParseInfoFilesTestCase', + 'name' => 'FieldCollectionItemMetadataController', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/field_collection/field_collection.info.inc', + 'module' => 'field_collection', 'weight' => '0', )) ->values(array( - 'name' => 'PasswordHashingTest', + 'name' => 'FieldCollectionRulesIntegrationTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/password.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/field_collection/field_collection.test', + 'module' => 'field_collection', 'weight' => '0', )) ->values(array( - 'name' => 'PathLanguageTestCase', + 'name' => 'FieldCrudTestCase', 'type' => 'class', - 'filename' => 'modules/path/path.test', - 'module' => 'path', + 'filename' => 'modules/field/tests/field.test', + 'module' => 'field', 'weight' => '0', )) ->values(array( - 'name' => 'PathLanguageUITestCase', + 'name' => 'FieldDisplayAPITestCase', 'type' => 'class', - 'filename' => 'modules/path/path.test', - 'module' => 'path', + 'filename' => 'modules/field/tests/field.test', + 'module' => 'field', 'weight' => '0', )) ->values(array( - 'name' => 'PathLookupTest', + 'name' => 'FieldException', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/path.test', - 'module' => 'simpletest', + 'filename' => 'modules/field/field.module', + 'module' => 'field', 'weight' => '0', )) ->values(array( - 'name' => 'PathMonolingualTestCase', + 'name' => 'FieldFormTestCase', 'type' => 'class', - 'filename' => 'modules/path/path.test', - 'module' => 'path', + 'filename' => 'modules/field/tests/field.test', + 'module' => 'field', 'weight' => '0', )) ->values(array( - 'name' => 'PathSaveTest', + 'name' => 'FieldInfo', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/path.test', - 'module' => 'simpletest', + 'filename' => 'modules/field/field.info.class.inc', + 'module' => 'field', 'weight' => '0', )) ->values(array( - 'name' => 'PathTaxonomyTermTestCase', + 'name' => 'FieldInfoTestCase', 'type' => 'class', - 'filename' => 'modules/path/path.test', - 'module' => 'path', + 'filename' => 'modules/field/tests/field.test', + 'module' => 'field', 'weight' => '0', )) ->values(array( - 'name' => 'PathTestCase', + 'name' => 'FieldInstanceCrudTestCase', 'type' => 'class', - 'filename' => 'modules/path/path.test', - 'module' => 'path', + 'filename' => 'modules/field/tests/field.test', + 'module' => 'field', 'weight' => '0', )) ->values(array( - 'name' => 'PhoneFrenchTest', + 'name' => 'FieldsOverlapException', 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.fr.test', - 'module' => 'phone', + 'filename' => 'includes/database/database.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'PhoneIntTest', + 'name' => 'FieldSqlStorageTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.int.test', - 'module' => 'phone', + 'filename' => 'modules/field/modules/field_sql_storage/field_sql_storage.test', + 'module' => 'field_sql_storage', 'weight' => '0', )) ->values(array( - 'name' => 'PhonePanamanianTest', + 'name' => 'FieldTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.pa.test', - 'module' => 'phone', + 'filename' => 'modules/field/tests/field.test', + 'module' => 'field', 'weight' => '0', )) ->values(array( - 'name' => 'PHPAccessTestCase', + 'name' => 'FieldTranslationsTestCase', 'type' => 'class', - 'filename' => 'modules/php/php.test', - 'module' => 'php', + 'filename' => 'modules/field/tests/field.test', + 'module' => 'field', 'weight' => '0', )) ->values(array( - 'name' => 'PHPFilterTestCase', + 'name' => 'FieldUIAlterTestCase', 'type' => 'class', - 'filename' => 'modules/php/php.test', - 'module' => 'php', + 'filename' => 'modules/field_ui/field_ui.test', + 'module' => 'field_ui', 'weight' => '0', )) ->values(array( - 'name' => 'PHPhoneNumberTestCase', + 'name' => 'FieldUIManageDisplayTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.ph.test', - 'module' => 'phone', + 'filename' => 'modules/field_ui/field_ui.test', + 'module' => 'field_ui', 'weight' => '0', )) ->values(array( - 'name' => 'PHPTestCase', + 'name' => 'FieldUIManageFieldsTestCase', 'type' => 'class', - 'filename' => 'modules/php/php.test', - 'module' => 'php', + 'filename' => 'modules/field_ui/field_ui.test', + 'module' => 'field_ui', 'weight' => '0', )) ->values(array( - 'name' => 'PKPhoneNumberTestCase', + 'name' => 'FieldUITestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.pk.test', - 'module' => 'phone', + 'filename' => 'modules/field_ui/field_ui.test', + 'module' => 'field_ui', 'weight' => '0', )) ->values(array( - 'name' => 'PLPhoneNumberTestCase', + 'name' => 'FieldUpdateForbiddenException', 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.pl.test', - 'module' => 'phone', + 'filename' => 'modules/field/field.module', + 'module' => 'field', 'weight' => '0', )) ->values(array( - 'name' => 'PollBlockTestCase', + 'name' => 'FieldUpdatePathTestCase', 'type' => 'class', - 'filename' => 'modules/poll/poll.test', - 'module' => 'poll', + 'filename' => 'modules/simpletest/tests/upgrade/update.field.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'PollCreateTestCase', + 'name' => 'FieldValidationException', 'type' => 'class', - 'filename' => 'modules/poll/poll.test', - 'module' => 'poll', + 'filename' => 'modules/field/field.attach.inc', + 'module' => 'field', 'weight' => '0', )) ->values(array( - 'name' => 'PollDeleteChoiceTestCase', + 'name' => 'field_collection_handler_relationship', 'type' => 'class', - 'filename' => 'modules/poll/poll.test', - 'module' => 'poll', + 'filename' => 'sites/all/modules/field_collection/views/field_collection_handler_relationship.inc', + 'module' => 'field_collection', 'weight' => '0', )) ->values(array( - 'name' => 'PollExpirationTestCase', + 'name' => 'FileCopyTest', 'type' => 'class', - 'filename' => 'modules/poll/poll.test', - 'module' => 'poll', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'PollJSAddChoice', + 'name' => 'FileDeleteTest', 'type' => 'class', - 'filename' => 'modules/poll/poll.test', - 'module' => 'poll', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'PollTestCase', + 'name' => 'FileDirectoryTest', 'type' => 'class', - 'filename' => 'modules/poll/poll.test', - 'module' => 'poll', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'PollTokenReplaceTestCase', + 'name' => 'FileDownloadTest', 'type' => 'class', - 'filename' => 'modules/poll/poll.test', - 'module' => 'poll', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'PollTranslateTestCase', + 'name' => 'FileFieldAnonymousSubmission', 'type' => 'class', - 'filename' => 'modules/poll/poll.test', - 'module' => 'poll', + 'filename' => 'modules/file/tests/file.test', + 'module' => 'file', 'weight' => '0', )) ->values(array( - 'name' => 'PollUpgradePathTestCase', + 'name' => 'FileFieldDisplayTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/upgrade.node.test', - 'module' => 'simpletest', + 'filename' => 'modules/file/tests/file.test', + 'module' => 'file', 'weight' => '0', )) ->values(array( - 'name' => 'PollVoteCheckHostname', + 'name' => 'FileFieldPathTestCase', 'type' => 'class', - 'filename' => 'modules/poll/poll.test', - 'module' => 'poll', + 'filename' => 'modules/file/tests/file.test', + 'module' => 'file', 'weight' => '0', )) ->values(array( - 'name' => 'PollVoteTestCase', + 'name' => 'FileFieldRevisionTestCase', 'type' => 'class', - 'filename' => 'modules/poll/poll.test', - 'module' => 'poll', + 'filename' => 'modules/file/tests/file.test', + 'module' => 'file', 'weight' => '0', )) ->values(array( - 'name' => 'ProfileBlockTestCase', + 'name' => 'FileFieldTestCase', 'type' => 'class', - 'filename' => 'modules/profile/profile.test', - 'module' => 'profile', + 'filename' => 'modules/file/tests/file.test', + 'module' => 'file', 'weight' => '0', )) ->values(array( - 'name' => 'ProfileCrudTestCase', + 'name' => 'FileFieldValidateTestCase', 'type' => 'class', - 'filename' => 'modules/profile/profile.test', - 'module' => 'profile', + 'filename' => 'modules/file/tests/file.test', + 'module' => 'file', 'weight' => '0', )) ->values(array( - 'name' => 'ProfileTestAutocomplete', + 'name' => 'FileFieldWidgetTestCase', 'type' => 'class', - 'filename' => 'modules/profile/profile.test', - 'module' => 'profile', + 'filename' => 'modules/file/tests/file.test', + 'module' => 'file', 'weight' => '0', )) ->values(array( - 'name' => 'ProfileTestBrowsing', + 'name' => 'FileHookTestCase', 'type' => 'class', - 'filename' => 'modules/profile/profile.test', - 'module' => 'profile', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'ProfileTestCase', + 'name' => 'FileLoadTest', 'type' => 'class', - 'filename' => 'modules/profile/profile.test', - 'module' => 'profile', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'ProfileTestDate', + 'name' => 'FileManagedFileElementTestCase', 'type' => 'class', - 'filename' => 'modules/profile/profile.test', - 'module' => 'profile', + 'filename' => 'modules/file/tests/file.test', + 'module' => 'file', 'weight' => '0', )) ->values(array( - 'name' => 'ProfileTestFields', + 'name' => 'FileMimeTypeTest', 'type' => 'class', - 'filename' => 'modules/profile/profile.test', - 'module' => 'profile', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'ProfileTestSelect', + 'name' => 'FileMoveTest', 'type' => 'class', - 'filename' => 'modules/profile/profile.test', - 'module' => 'profile', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'ProfileTestWeights', + 'name' => 'FileNameMungingTest', 'type' => 'class', - 'filename' => 'modules/profile/profile.test', - 'module' => 'profile', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'Query', + 'name' => 'FilePrivateTestCase', 'type' => 'class', - 'filename' => 'includes/database/query.inc', - 'module' => '', + 'filename' => 'modules/file/tests/file.test', + 'module' => 'file', 'weight' => '0', )) ->values(array( - 'name' => 'QueryAlterableInterface', - 'type' => 'interface', - 'filename' => 'includes/database/query.inc', - 'module' => '', + 'name' => 'FileSaveDataTest', + 'type' => 'class', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'QueryConditionInterface', - 'type' => 'interface', - 'filename' => 'includes/database/query.inc', - 'module' => '', + 'name' => 'FileSaveTest', + 'type' => 'class', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'QueryExtendableInterface', - 'type' => 'interface', - 'filename' => 'includes/database/select.inc', - 'module' => '', + 'name' => 'FileSaveUploadTest', + 'type' => 'class', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'QueryPlaceholderInterface', - 'type' => 'interface', - 'filename' => 'includes/database/query.inc', - 'module' => '', + 'name' => 'FileScanDirectoryTest', + 'type' => 'class', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'QueueTestCase', + 'name' => 'FileSpaceUsedTest', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'RdfCommentAttributesTestCase', + 'name' => 'FileTaxonomyTermTestCase', 'type' => 'class', - 'filename' => 'modules/rdf/rdf.test', - 'module' => 'rdf', + 'filename' => 'modules/file/tests/file.test', + 'module' => 'file', 'weight' => '0', )) ->values(array( - 'name' => 'RdfCrudTestCase', + 'name' => 'FileTestCase', 'type' => 'class', - 'filename' => 'modules/rdf/rdf.test', - 'module' => 'rdf', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'RdfGetRdfNamespacesTestCase', + 'name' => 'FileTokenReplaceTestCase', 'type' => 'class', - 'filename' => 'modules/rdf/rdf.test', - 'module' => 'rdf', + 'filename' => 'modules/file/tests/file.test', + 'module' => 'file', 'weight' => '0', )) ->values(array( - 'name' => 'RdfMappingDefinitionTestCase', + 'name' => 'FileTranferTest', 'type' => 'class', - 'filename' => 'modules/rdf/rdf.test', - 'module' => 'rdf', + 'filename' => 'modules/simpletest/tests/filetransfer.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'RdfMappingHookTestCase', + 'name' => 'FileTransfer', 'type' => 'class', - 'filename' => 'modules/rdf/rdf.test', - 'module' => 'rdf', + 'filename' => 'includes/filetransfer/filetransfer.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'RdfRdfaMarkupTestCase', - 'type' => 'class', - 'filename' => 'modules/rdf/rdf.test', - 'module' => 'rdf', + 'name' => 'FileTransferChmodInterface', + 'type' => 'interface', + 'filename' => 'includes/filetransfer/filetransfer.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'RdfTrackerAttributesTestCase', + 'name' => 'FileTransferException', 'type' => 'class', - 'filename' => 'modules/rdf/rdf.test', - 'module' => 'rdf', + 'filename' => 'includes/filetransfer/filetransfer.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'RegistryParseFilesTestCase', + 'name' => 'FileTransferFTP', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/registry.test', - 'module' => 'simpletest', + 'filename' => 'includes/filetransfer/ftp.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'RegistryParseFileTestCase', + 'name' => 'FileTransferFTPExtension', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/registry.test', - 'module' => 'simpletest', + 'filename' => 'includes/filetransfer/ftp.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'RemoteFileDirectoryTest', + 'name' => 'FileTransferLocal', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', - 'module' => 'simpletest', + 'filename' => 'includes/filetransfer/local.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'RemoteFileSaveUploadTest', + 'name' => 'FileTransferSSH', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', - 'module' => 'simpletest', + 'filename' => 'includes/filetransfer/ssh.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'RemoteFileScanDirectoryTest', + 'name' => 'FileUnmanagedCopyTest', 'type' => 'class', 'filename' => 'modules/simpletest/tests/file.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'RemoteFileUnmanagedCopyTest', + 'name' => 'FileUnmanagedDeleteRecursiveTest', 'type' => 'class', 'filename' => 'modules/simpletest/tests/file.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'RemoteFileUnmanagedDeleteRecursiveTest', + 'name' => 'FileUnmanagedDeleteTest', 'type' => 'class', 'filename' => 'modules/simpletest/tests/file.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'RemoteFileUnmanagedDeleteTest', + 'name' => 'FileUnmanagedMoveTest', 'type' => 'class', 'filename' => 'modules/simpletest/tests/file.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'RemoteFileUnmanagedMoveTest', + 'name' => 'FileUnmanagedSaveDataTest', 'type' => 'class', 'filename' => 'modules/simpletest/tests/file.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'RemoteFileUnmanagedSaveDataTest', + 'name' => 'FileURLRewritingTest', 'type' => 'class', 'filename' => 'modules/simpletest/tests/file.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'RemoveFeedItemTestCase', + 'name' => 'FileUsageTest', 'type' => 'class', - 'filename' => 'modules/aggregator/aggregator.test', - 'module' => 'aggregator', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'RemoveFeedTestCase', + 'name' => 'FileValidateTest', 'type' => 'class', - 'filename' => 'modules/aggregator/aggregator.test', - 'module' => 'aggregator', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'RenderElementTypesTestCase', + 'name' => 'FileValidatorTest', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/theme.test', + 'filename' => 'modules/simpletest/tests/file.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'RetrieveFileTestCase', + 'name' => 'FilledMinimalUpdatePath', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'modules/simpletest/tests/upgrade/upgrade.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'RUPhoneNumberTestCase', + 'name' => 'FilledStandardUpdatePath', 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.ru.test', - 'module' => 'phone', + 'filename' => 'modules/simpletest/tests/upgrade/upgrade.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SchemaCache', + 'name' => 'FilterAdminTestCase', 'type' => 'class', - 'filename' => 'includes/bootstrap.inc', - 'module' => '', + 'filename' => 'modules/filter/filter.test', + 'module' => 'filter', 'weight' => '0', )) ->values(array( - 'name' => 'SchemaTestCase', + 'name' => 'FilterCRUDTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/schema.test', - 'module' => 'simpletest', + 'filename' => 'modules/filter/filter.test', + 'module' => 'filter', 'weight' => '0', )) ->values(array( - 'name' => 'SearchAdvancedSearchForm', + 'name' => 'FilterDefaultFormatTestCase', 'type' => 'class', - 'filename' => 'modules/search/search.test', - 'module' => 'search', + 'filename' => 'modules/filter/filter.test', + 'module' => 'filter', 'weight' => '0', )) ->values(array( - 'name' => 'SearchBlockTestCase', + 'name' => 'FilterDOMSerializeTestCase', 'type' => 'class', - 'filename' => 'modules/search/search.test', - 'module' => 'search', + 'filename' => 'modules/filter/filter.test', + 'module' => 'filter', 'weight' => '0', )) ->values(array( - 'name' => 'SearchCommentCountToggleTestCase', + 'name' => 'FilterFormatAccessTestCase', 'type' => 'class', - 'filename' => 'modules/search/search.test', - 'module' => 'search', + 'filename' => 'modules/filter/filter.test', + 'module' => 'filter', 'weight' => '0', )) ->values(array( - 'name' => 'SearchCommentTestCase', + 'name' => 'FilterFormatUpgradePathTestCase', 'type' => 'class', - 'filename' => 'modules/search/search.test', - 'module' => 'search', + 'filename' => 'modules/simpletest/tests/upgrade/upgrade.filter.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SearchConfigSettingsForm', + 'name' => 'FilterHooksTestCase', 'type' => 'class', - 'filename' => 'modules/search/search.test', - 'module' => 'search', + 'filename' => 'modules/filter/filter.test', + 'module' => 'filter', 'weight' => '0', )) ->values(array( - 'name' => 'SearchEmbedForm', + 'name' => 'FilterNoFormatTestCase', 'type' => 'class', - 'filename' => 'modules/search/search.test', - 'module' => 'search', + 'filename' => 'modules/filter/filter.test', + 'module' => 'filter', 'weight' => '0', )) ->values(array( - 'name' => 'SearchExactTestCase', + 'name' => 'FilterSecurityTestCase', 'type' => 'class', - 'filename' => 'modules/search/search.test', - 'module' => 'search', + 'filename' => 'modules/filter/filter.test', + 'module' => 'filter', 'weight' => '0', )) ->values(array( - 'name' => 'SearchExcerptTestCase', + 'name' => 'FilterSettingsTestCase', 'type' => 'class', - 'filename' => 'modules/search/search.test', - 'module' => 'search', + 'filename' => 'modules/filter/filter.test', + 'module' => 'filter', 'weight' => '0', )) ->values(array( - 'name' => 'SearchExpressionInsertExtractTestCase', + 'name' => 'FilterUnitTestCase', 'type' => 'class', - 'filename' => 'modules/search/search.test', - 'module' => 'search', + 'filename' => 'modules/filter/filter.test', + 'module' => 'filter', 'weight' => '0', )) ->values(array( - 'name' => 'SearchKeywordsConditions', + 'name' => 'FloodFunctionalTest', 'type' => 'class', - 'filename' => 'modules/search/search.test', - 'module' => 'search', + 'filename' => 'modules/system/system.test', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'SearchLanguageTestCase', + 'name' => 'FormAlterTestCase', 'type' => 'class', - 'filename' => 'modules/search/search.test', - 'module' => 'search', + 'filename' => 'modules/simpletest/tests/form.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SearchMatchTestCase', + 'name' => 'FormatDateUnitTest', 'type' => 'class', - 'filename' => 'modules/search/search.test', - 'module' => 'search', + 'filename' => 'modules/simpletest/tests/common.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SearchNodeAccessTest', + 'name' => 'FormCheckboxTestCase', 'type' => 'class', - 'filename' => 'modules/search/search.test', - 'module' => 'search', + 'filename' => 'modules/simpletest/tests/form.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SearchNodeTagTest', + 'name' => 'FormElementTestCase', 'type' => 'class', - 'filename' => 'modules/search/search.test', - 'module' => 'search', + 'filename' => 'modules/simpletest/tests/form.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SearchNumberMatchingTestCase', + 'name' => 'FormsArbitraryRebuildTestCase', 'type' => 'class', - 'filename' => 'modules/search/search.test', - 'module' => 'search', + 'filename' => 'modules/simpletest/tests/form.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SearchNumbersTestCase', + 'name' => 'FormsElementsLabelsTestCase', 'type' => 'class', - 'filename' => 'modules/search/search.test', - 'module' => 'search', + 'filename' => 'modules/simpletest/tests/form.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SearchPageOverride', + 'name' => 'FormsElementsTableSelectFunctionalTest', 'type' => 'class', - 'filename' => 'modules/search/search.test', - 'module' => 'search', + 'filename' => 'modules/simpletest/tests/form.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SearchPageText', + 'name' => 'FormsElementsVerticalTabsFunctionalTest', 'type' => 'class', - 'filename' => 'modules/search/search.test', - 'module' => 'search', + 'filename' => 'modules/simpletest/tests/form.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SearchQuery', + 'name' => 'FormsFileInclusionTestCase', 'type' => 'class', - 'filename' => 'modules/search/search.extender.inc', - 'module' => 'search', + 'filename' => 'modules/simpletest/tests/form.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SearchRankingTestCase', + 'name' => 'FormsFormStoragePageCacheTestCase', 'type' => 'class', - 'filename' => 'modules/search/search.test', - 'module' => 'search', + 'filename' => 'modules/simpletest/tests/form.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SearchSetLocaleTest', + 'name' => 'FormsFormStorageTestCase', 'type' => 'class', - 'filename' => 'modules/search/search.test', - 'module' => 'search', + 'filename' => 'modules/simpletest/tests/form.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SearchSimplifyTestCase', + 'name' => 'FormsFormWrapperTestCase', 'type' => 'class', - 'filename' => 'modules/search/search.test', - 'module' => 'search', + 'filename' => 'modules/simpletest/tests/form.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SearchTokenizerTestCase', + 'name' => 'FormsProgrammaticTestCase', 'type' => 'class', - 'filename' => 'modules/search/search.test', - 'module' => 'search', + 'filename' => 'modules/simpletest/tests/form.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SelectQuery', + 'name' => 'FormsRebuildTestCase', 'type' => 'class', - 'filename' => 'includes/database/select.inc', - 'module' => '', + 'filename' => 'modules/simpletest/tests/form.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SelectQueryExtender', + 'name' => 'FormsRedirectTestCase', 'type' => 'class', - 'filename' => 'includes/database/select.inc', - 'module' => '', - 'weight' => '0', -)) -->values(array( - 'name' => 'SelectQueryInterface', - 'type' => 'interface', - 'filename' => 'includes/database/select.inc', - 'module' => '', + 'filename' => 'modules/simpletest/tests/form.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SelectQuery_pgsql', + 'name' => 'FormStateValuesCleanAdvancedTestCase', 'type' => 'class', - 'filename' => 'includes/database/pgsql/select.inc', - 'module' => '', + 'filename' => 'modules/simpletest/tests/form.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SelectQuery_sqlite', + 'name' => 'FormStateValuesCleanTestCase', 'type' => 'class', - 'filename' => 'includes/database/sqlite/select.inc', - 'module' => '', + 'filename' => 'modules/simpletest/tests/form.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SEPhoneNumberTestCase', + 'name' => 'FormsTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.se.test', - 'module' => 'phone', + 'filename' => 'modules/simpletest/tests/form.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SessionHttpsTestCase', + 'name' => 'FormsTriggeringElementTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/session.test', + 'filename' => 'modules/simpletest/tests/form.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SessionTestCase', + 'name' => 'FormTextareaTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/session.test', + 'filename' => 'modules/simpletest/tests/form.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SGPhoneNumberTestCase', + 'name' => 'FormValidationTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.sg.test', - 'module' => 'phone', + 'filename' => 'modules/simpletest/tests/form.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'ShortcutLinksTestCase', + 'name' => 'ForumIndexTestCase', 'type' => 'class', - 'filename' => 'modules/shortcut/shortcut.test', - 'module' => 'shortcut', + 'filename' => 'modules/forum/forum.test', + 'module' => 'forum', 'weight' => '0', )) ->values(array( - 'name' => 'ShortcutSetsTestCase', + 'name' => 'ForumTestCase', 'type' => 'class', - 'filename' => 'modules/shortcut/shortcut.test', - 'module' => 'shortcut', + 'filename' => 'modules/forum/forum.test', + 'module' => 'forum', 'weight' => '0', )) ->values(array( - 'name' => 'ShortcutTestCase', + 'name' => 'ForumUpgradePathTestCase', 'type' => 'class', - 'filename' => 'modules/shortcut/shortcut.test', - 'module' => 'shortcut', + 'filename' => 'modules/simpletest/tests/upgrade/upgrade.forum.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'ShutdownFunctionsTest', + 'name' => 'FrontPageTestCase', 'type' => 'class', 'filename' => 'modules/system/system.test', 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'SimpleTestBrokenSetUp', + 'name' => 'GraphUnitTest', 'type' => 'class', - 'filename' => 'modules/simpletest/simpletest.test', + 'filename' => 'modules/simpletest/tests/graph.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SimpleTestBrowserTestCase', + 'name' => 'HelpTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/simpletest.test', - 'module' => 'simpletest', + 'filename' => 'modules/help/help.test', + 'module' => 'help', 'weight' => '0', )) ->values(array( - 'name' => 'SimpleTestDiscoveryTestCase', + 'name' => 'HookBootExitTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/simpletest.test', + 'filename' => 'modules/simpletest/tests/bootstrap.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SimpleTestFolderTestCase', + 'name' => 'HookRequirementsTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/simpletest.test', - 'module' => 'simpletest', + 'filename' => 'modules/system/system.test', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'SimpleTestFunctionalTest', + 'name' => 'HTMLIdTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/simpletest.test', + 'filename' => 'modules/simpletest/tests/form.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'SimpleTestInstallationProfileModuleTestsTestCase', + 'name' => 'HUPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/simpletest.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/phone/tests/phone.hu.test', + 'module' => 'phone', 'weight' => '0', )) ->values(array( - 'name' => 'SimpleTestMailCaptureTestCase', + 'name' => 'i18nBlocksTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/simpletest.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/i18n/i18n_block/i18n_block.test', + 'module' => 'i18n_block', 'weight' => '0', )) ->values(array( - 'name' => 'SimpleTestMissingDependentModuleUnitTest', + 'name' => 'i18nFieldTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/simpletest.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/i18n/i18n_field/i18n_field.test', + 'module' => 'i18n_field', 'weight' => '0', )) ->values(array( - 'name' => 'SimpleTestOtherInstallationProfileModuleTestsTestCase', + 'name' => 'i18nForumTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/simpletest.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/i18n/i18n_forum/i18n_forum.test', + 'module' => 'i18n_forum', 'weight' => '0', )) ->values(array( - 'name' => 'SiteMaintenanceTestCase', + 'name' => 'i18nMenuTestCase', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'sites/all/modules/i18n/i18n_menu/i18n_menu.test', + 'module' => 'i18n_menu', 'weight' => '0', )) ->values(array( - 'name' => 'SkipDotsRecursiveDirectoryIterator', + 'name' => 'I18nNodeTestCase', 'type' => 'class', - 'filename' => 'includes/filetransfer/filetransfer.inc', - 'module' => '', + 'filename' => 'sites/all/modules/i18n/i18n_node/i18n_node.test', + 'module' => 'i18n_node', 'weight' => '0', )) ->values(array( - 'name' => 'StatisticsAdminTestCase', + 'name' => 'i18nPathTestCase', 'type' => 'class', - 'filename' => 'modules/statistics/statistics.test', - 'module' => 'statistics', + 'filename' => 'sites/all/modules/i18n/i18n_path/i18n_path.test', + 'module' => 'i18n_path', 'weight' => '0', )) ->values(array( - 'name' => 'StatisticsBlockVisitorsTestCase', + 'name' => 'I18NSelectAdminViewsAjax', 'type' => 'class', - 'filename' => 'modules/statistics/statistics.test', - 'module' => 'statistics', + 'filename' => 'sites/all/modules/i18n/i18n_select/i18n_select.test', + 'module' => 'i18n_select', 'weight' => '0', )) ->values(array( - 'name' => 'StatisticsLoggingTestCase', + 'name' => 'i18nSelectTestCase', 'type' => 'class', - 'filename' => 'modules/statistics/statistics.test', - 'module' => 'statistics', + 'filename' => 'sites/all/modules/i18n/i18n_select/i18n_select.test', + 'module' => 'i18n_select', 'weight' => '0', )) ->values(array( - 'name' => 'StatisticsReportsTestCase', + 'name' => 'i18nStringTestCase', 'type' => 'class', - 'filename' => 'modules/statistics/statistics.test', - 'module' => 'statistics', + 'filename' => 'sites/all/modules/i18n/i18n_string/i18n_string.test', + 'module' => 'i18n_string', 'weight' => '0', )) ->values(array( - 'name' => 'StatisticsTestCase', + 'name' => 'i18nSyncTestCase', 'type' => 'class', - 'filename' => 'modules/statistics/statistics.test', - 'module' => 'statistics', + 'filename' => 'sites/all/modules/i18n/i18n_sync/i18n_sync.test', + 'module' => 'i18n_sync', 'weight' => '0', )) ->values(array( - 'name' => 'StatisticsTokenReplaceTestCase', + 'name' => 'i18nTaxonomyTestCase', 'type' => 'class', - 'filename' => 'modules/statistics/statistics.test', - 'module' => 'statistics', - 'weight' => '0', -)) -->values(array( - 'name' => 'StreamWrapperInterface', - 'type' => 'interface', - 'filename' => 'includes/stream_wrappers.inc', - 'module' => '', + 'filename' => 'sites/all/modules/i18n/i18n_taxonomy/i18n_taxonomy.test', + 'module' => 'i18n_taxonomy', 'weight' => '0', )) ->values(array( - 'name' => 'StreamWrapperTest', + 'name' => 'i18nVariableTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/file.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/i18n/i18n_variable/i18n_variable.test', + 'module' => 'i18n_variable', 'weight' => '0', )) ->values(array( - 'name' => 'SummaryLengthTestCase', + 'name' => 'ILPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'modules/node/node.test', - 'module' => 'node', + 'filename' => 'sites/all/modules/phone/tests/phone.il.test', + 'module' => 'phone', 'weight' => '0', )) ->values(array( - 'name' => 'SyslogTestCase', + 'name' => 'ImageAdminStylesUnitTest', 'type' => 'class', - 'filename' => 'modules/syslog/syslog.test', - 'module' => 'syslog', + 'filename' => 'modules/image/image.test', + 'module' => 'image', 'weight' => '0', )) ->values(array( - 'name' => 'SystemAdminTestCase', + 'name' => 'ImageAdminUiTestCase', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'modules/image/image.test', + 'module' => 'image', 'weight' => '0', )) ->values(array( - 'name' => 'SystemAuthorizeCase', + 'name' => 'ImageDimensionsScaleTestCase', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'modules/image/image.test', + 'module' => 'image', 'weight' => '0', )) ->values(array( - 'name' => 'SystemBlockTestCase', + 'name' => 'ImageDimensionsTestCase', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'modules/image/image.test', + 'module' => 'image', 'weight' => '0', )) ->values(array( - 'name' => 'SystemIndexPhpTest', + 'name' => 'ImageEffectsUnitTest', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'modules/image/image.test', + 'module' => 'image', 'weight' => '0', )) ->values(array( - 'name' => 'SystemInfoAlterTestCase', + 'name' => 'ImageFieldDefaultImagesTestCase', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'modules/image/image.test', + 'module' => 'image', 'weight' => '0', )) ->values(array( - 'name' => 'SystemMainContentFallback', + 'name' => 'ImageFieldDisplayTestCase', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'modules/image/image.test', + 'module' => 'image', 'weight' => '0', )) ->values(array( - 'name' => 'SystemQueue', + 'name' => 'ImageFieldTestCase', 'type' => 'class', - 'filename' => 'modules/system/system.queue.inc', - 'module' => 'system', + 'filename' => 'modules/image/image.test', + 'module' => 'image', 'weight' => '0', )) ->values(array( - 'name' => 'SystemThemeFunctionalTest', + 'name' => 'ImageFieldValidateTestCase', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'modules/image/image.test', + 'module' => 'image', 'weight' => '0', )) ->values(array( - 'name' => 'SystemValidTokenTest', + 'name' => 'ImageFileMoveTest', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'modules/simpletest/tests/image.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'TableSort', + 'name' => 'ImageStyleFlushTest', 'type' => 'class', - 'filename' => 'includes/tablesort.inc', - 'module' => '', + 'filename' => 'modules/image/image.test', + 'module' => 'image', 'weight' => '0', )) ->values(array( - 'name' => 'TableSortTest', + 'name' => 'ImageStylesPathAndUrlTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/tablesort.test', - 'module' => 'simpletest', + 'filename' => 'modules/image/image.test', + 'module' => 'image', 'weight' => '0', )) ->values(array( - 'name' => 'TaxonomyEFQTestCase', + 'name' => 'ImageThemeFunctionWebTestCase', 'type' => 'class', - 'filename' => 'modules/taxonomy/taxonomy.test', - 'module' => 'taxonomy', + 'filename' => 'modules/image/image.test', + 'module' => 'image', 'weight' => '0', )) ->values(array( - 'name' => 'TaxonomyHooksTestCase', + 'name' => 'ImageToolkitGdTestCase', 'type' => 'class', - 'filename' => 'modules/taxonomy/taxonomy.test', - 'module' => 'taxonomy', + 'filename' => 'modules/simpletest/tests/image.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'TaxonomyLegacyTestCase', + 'name' => 'ImageToolkitTestCase', 'type' => 'class', - 'filename' => 'modules/taxonomy/taxonomy.test', - 'module' => 'taxonomy', + 'filename' => 'modules/simpletest/tests/image.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'TaxonomyLoadMultipleTestCase', + 'name' => 'ImageToolkitUnitTest', 'type' => 'class', - 'filename' => 'modules/taxonomy/taxonomy.test', - 'module' => 'taxonomy', + 'filename' => 'modules/simpletest/tests/image.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'TaxonomyQueryAlterTestCase', + 'name' => 'ImportOPMLTestCase', 'type' => 'class', - 'filename' => 'modules/taxonomy/taxonomy.test', - 'module' => 'taxonomy', + 'filename' => 'modules/aggregator/aggregator.test', + 'module' => 'aggregator', 'weight' => '0', )) ->values(array( - 'name' => 'TaxonomyRSSTestCase', + 'name' => 'InfoFileParserTestCase', 'type' => 'class', - 'filename' => 'modules/taxonomy/taxonomy.test', - 'module' => 'taxonomy', + 'filename' => 'modules/system/system.test', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'TaxonomyTermController', + 'name' => 'InsertQuery', 'type' => 'class', - 'filename' => 'modules/taxonomy/taxonomy.module', - 'module' => 'taxonomy', + 'filename' => 'includes/database/query.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'TaxonomyTermFieldMultipleVocabularyTestCase', + 'name' => 'InsertQuery_mysql', 'type' => 'class', - 'filename' => 'modules/taxonomy/taxonomy.test', - 'module' => 'taxonomy', + 'filename' => 'includes/database/mysql/query.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'TaxonomyTermFieldTestCase', + 'name' => 'InsertQuery_pgsql', 'type' => 'class', - 'filename' => 'modules/taxonomy/taxonomy.test', - 'module' => 'taxonomy', + 'filename' => 'includes/database/pgsql/query.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'TaxonomyTermFunctionTestCase', + 'name' => 'InsertQuery_sqlite', 'type' => 'class', - 'filename' => 'modules/taxonomy/taxonomy.test', - 'module' => 'taxonomy', + 'filename' => 'includes/database/sqlite/query.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'TaxonomyTermIndexTestCase', + 'name' => 'InvalidMergeQueryException', 'type' => 'class', - 'filename' => 'modules/taxonomy/taxonomy.test', - 'module' => 'taxonomy', + 'filename' => 'includes/database/database.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'TaxonomyTermTestCase', + 'name' => 'IPAddressBlockingTestCase', 'type' => 'class', - 'filename' => 'modules/taxonomy/taxonomy.test', - 'module' => 'taxonomy', + 'filename' => 'modules/system/system.test', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'TaxonomyThemeTestCase', + 'name' => 'ITPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'modules/taxonomy/taxonomy.test', - 'module' => 'taxonomy', + 'filename' => 'sites/all/modules/phone/tests/phone.it.test', + 'module' => 'phone', 'weight' => '0', )) ->values(array( - 'name' => 'TaxonomyTokenReplaceTestCase', + 'name' => 'JavaScriptTestCase', 'type' => 'class', - 'filename' => 'modules/taxonomy/taxonomy.test', - 'module' => 'taxonomy', + 'filename' => 'modules/simpletest/tests/common.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'TaxonomyVocabularyController', + 'name' => 'JOPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'modules/taxonomy/taxonomy.module', - 'module' => 'taxonomy', + 'filename' => 'sites/all/modules/phone/tests/phone.jo.test', + 'module' => 'phone', 'weight' => '0', )) ->values(array( - 'name' => 'TaxonomyVocabularyFunctionalTest', + 'name' => 'LinkAttributeCrudTest', 'type' => 'class', - 'filename' => 'modules/taxonomy/taxonomy.test', - 'module' => 'taxonomy', + 'filename' => 'sites/all/modules/link/tests/link.attribute.test', + 'module' => 'link', 'weight' => '0', )) ->values(array( - 'name' => 'TaxonomyVocabularyTestCase', + 'name' => 'LinkBaseTestClass', 'type' => 'class', - 'filename' => 'modules/taxonomy/taxonomy.test', - 'module' => 'taxonomy', + 'filename' => 'sites/all/modules/link/tests/link.test', + 'module' => 'link', 'weight' => '0', )) ->values(array( - 'name' => 'TaxonomyWebTestCase', + 'name' => 'LinkContentCrudTest', 'type' => 'class', - 'filename' => 'modules/taxonomy/taxonomy.test', - 'module' => 'taxonomy', + 'filename' => 'sites/all/modules/link/tests/link.crud.test', + 'module' => 'link', 'weight' => '0', )) ->values(array( - 'name' => 'TestFileTransfer', + 'name' => 'LinkEntityTokenTest', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/filetransfer.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/link/tests/link.entity_token.test', + 'module' => 'link', 'weight' => '0', )) ->values(array( - 'name' => 'TestingMailSystem', + 'name' => 'LinkTokenTest', 'type' => 'class', - 'filename' => 'modules/system/system.mail.inc', - 'module' => 'system', + 'filename' => 'sites/all/modules/link/tests/link.token.test', + 'module' => 'link', 'weight' => '0', )) ->values(array( - 'name' => 'TextFieldTestCase', + 'name' => 'LinkUITest', 'type' => 'class', - 'filename' => 'modules/field/modules/text/text.test', - 'module' => 'text', + 'filename' => 'sites/all/modules/link/tests/link.crud_browser.test', + 'module' => 'link', 'weight' => '0', )) ->values(array( - 'name' => 'TextSummaryTestCase', + 'name' => 'LinkValidateSpecificURL', 'type' => 'class', - 'filename' => 'modules/field/modules/text/text.test', - 'module' => 'text', + 'filename' => 'sites/all/modules/link/tests/link.validate.test', + 'module' => 'link', 'weight' => '0', )) ->values(array( - 'name' => 'TextTranslationTestCase', + 'name' => 'LinkValidateTest', 'type' => 'class', - 'filename' => 'modules/field/modules/text/text.test', - 'module' => 'text', + 'filename' => 'sites/all/modules/link/tests/link.validate.test', + 'module' => 'link', 'weight' => '0', )) ->values(array( - 'name' => 'ThemeDebugMarkupTestCase', + 'name' => 'LinkValidateTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/theme.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/link/tests/link.validate.test', + 'module' => 'link', 'weight' => '0', )) ->values(array( - 'name' => 'ThemeFastTestCase', + 'name' => 'LinkValidateTestNews', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/theme.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/link/tests/link.validate.test', + 'module' => 'link', 'weight' => '0', )) ->values(array( - 'name' => 'ThemeHookInitTestCase', + 'name' => 'LinkValidateUrlLight', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/theme.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/link/tests/link.validate.test', + 'module' => 'link', 'weight' => '0', )) ->values(array( - 'name' => 'ThemeItemListUnitTest', + 'name' => 'link_views_handler_argument_target', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/theme.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/link/views/link_views_handler_argument_target.inc', + 'module' => 'link', 'weight' => '0', )) ->values(array( - 'name' => 'ThemeLinksTest', + 'name' => 'link_views_handler_filter_protocol', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/theme.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/link/views/link_views_handler_filter_protocol.inc', + 'module' => 'link', 'weight' => '0', )) ->values(array( - 'name' => 'ThemeRegistry', + 'name' => 'ListDynamicValuesTestCase', 'type' => 'class', - 'filename' => 'includes/theme.inc', - 'module' => '', + 'filename' => 'modules/field/modules/list/tests/list.test', + 'module' => 'list', 'weight' => '0', )) ->values(array( - 'name' => 'ThemeRegistryTestCase', + 'name' => 'ListDynamicValuesValidationTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/theme.test', - 'module' => 'simpletest', + 'filename' => 'modules/field/modules/list/tests/list.test', + 'module' => 'list', 'weight' => '0', )) ->values(array( - 'name' => 'ThemeTableTestCase', + 'name' => 'ListFieldTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/theme.test', - 'module' => 'simpletest', + 'filename' => 'modules/field/modules/list/tests/list.test', + 'module' => 'list', 'weight' => '0', )) ->values(array( - 'name' => 'ThemeTestCase', + 'name' => 'ListFieldUITestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/theme.test', - 'module' => 'simpletest', + 'filename' => 'modules/field/modules/list/tests/list.test', + 'module' => 'list', 'weight' => '0', )) ->values(array( - 'name' => 'ThemeUpdater', + 'name' => 'LocaleBrowserDetectionTest', 'type' => 'class', - 'filename' => 'modules/system/system.updater.inc', - 'module' => 'system', + 'filename' => 'modules/locale/locale.test', + 'module' => 'locale', 'weight' => '0', )) ->values(array( - 'name' => 'TokenReplaceTestCase', + 'name' => 'LocaleCommentLanguageFunctionalTest', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'modules/locale/locale.test', + 'module' => 'locale', 'weight' => '0', )) ->values(array( - 'name' => 'TokenScanTest', + 'name' => 'LocaleConfigurationTest', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'modules/locale/locale.test', + 'module' => 'locale', 'weight' => '0', )) ->values(array( - 'name' => 'TrackerTest', + 'name' => 'LocaleContentFunctionalTest', 'type' => 'class', - 'filename' => 'modules/tracker/tracker.test', - 'module' => 'tracker', + 'filename' => 'modules/locale/locale.test', + 'module' => 'locale', 'weight' => '0', )) ->values(array( - 'name' => 'TranslatableUpgradePathTestCase', + 'name' => 'LocaleCSSAlterTest', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/upgrade.translatable.test', - 'module' => 'simpletest', + 'filename' => 'modules/locale/locale.test', + 'module' => 'locale', 'weight' => '0', )) ->values(array( - 'name' => 'TranslationTestCase', + 'name' => 'LocaleDateFormatsFunctionalTest', 'type' => 'class', - 'filename' => 'modules/translation/translation.test', - 'module' => 'translation', + 'filename' => 'modules/locale/locale.test', + 'module' => 'locale', 'weight' => '0', )) ->values(array( - 'name' => 'TriggerActionTestCase', + 'name' => 'LocaleExportFunctionalTest', 'type' => 'class', - 'filename' => 'modules/trigger/trigger.test', - 'module' => 'trigger', + 'filename' => 'modules/locale/locale.test', + 'module' => 'locale', 'weight' => '0', )) ->values(array( - 'name' => 'TriggerContentTestCase', + 'name' => 'LocaleImportFunctionalTest', 'type' => 'class', - 'filename' => 'modules/trigger/trigger.test', - 'module' => 'trigger', + 'filename' => 'modules/locale/locale.test', + 'module' => 'locale', 'weight' => '0', )) ->values(array( - 'name' => 'TriggerCronTestCase', + 'name' => 'LocaleInstallTest', 'type' => 'class', - 'filename' => 'modules/trigger/trigger.test', - 'module' => 'trigger', + 'filename' => 'modules/locale/locale.test', + 'module' => 'locale', 'weight' => '0', )) ->values(array( - 'name' => 'TriggerOrphanedActionsTestCase', + 'name' => 'LocaleJavascriptTranslationTest', 'type' => 'class', - 'filename' => 'modules/trigger/trigger.test', - 'module' => 'trigger', + 'filename' => 'modules/locale/locale.test', + 'module' => 'locale', 'weight' => '0', )) ->values(array( - 'name' => 'TriggerOtherTestCase', + 'name' => 'LocaleLanguageNegotiationInfoFunctionalTest', 'type' => 'class', - 'filename' => 'modules/trigger/trigger.test', - 'module' => 'trigger', + 'filename' => 'modules/locale/locale.test', + 'module' => 'locale', 'weight' => '0', )) ->values(array( - 'name' => 'TriggerUnassignTestCase', + 'name' => 'LocaleLanguageSwitchingFunctionalTest', 'type' => 'class', - 'filename' => 'modules/trigger/trigger.test', - 'module' => 'trigger', + 'filename' => 'modules/locale/locale.test', + 'module' => 'locale', 'weight' => '0', )) ->values(array( - 'name' => 'TriggerUpdatePathTestCase', + 'name' => 'LocaleLibraryInfoAlterTest', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/update.trigger.test', - 'module' => 'simpletest', + 'filename' => 'modules/locale/locale.test', + 'module' => 'locale', 'weight' => '0', )) ->values(array( - 'name' => 'TriggerUserActionTestCase', + 'name' => 'LocaleMultilingualFieldsFunctionalTest', 'type' => 'class', - 'filename' => 'modules/trigger/trigger.test', - 'module' => 'trigger', + 'filename' => 'modules/locale/locale.test', + 'module' => 'locale', 'weight' => '0', )) ->values(array( - 'name' => 'TriggerUserTokenTestCase', + 'name' => 'LocalePathFunctionalTest', 'type' => 'class', - 'filename' => 'modules/trigger/trigger.test', - 'module' => 'trigger', + 'filename' => 'modules/locale/locale.test', + 'module' => 'locale', 'weight' => '0', )) ->values(array( - 'name' => 'TriggerWebTestCase', + 'name' => 'LocalePluralFormatTest', 'type' => 'class', - 'filename' => 'modules/trigger/trigger.test', - 'module' => 'trigger', + 'filename' => 'modules/locale/locale.test', + 'module' => 'locale', 'weight' => '0', )) ->values(array( - 'name' => 'TruncateQuery', + 'name' => 'LocaleStringIsSafeTest', 'type' => 'class', - 'filename' => 'includes/database/query.inc', - 'module' => '', + 'filename' => 'modules/locale/locale.test', + 'module' => 'locale', 'weight' => '0', )) ->values(array( - 'name' => 'TruncateQuery_mysql', + 'name' => 'LocaleTranslationFunctionalTest', 'type' => 'class', - 'filename' => 'includes/database/mysql/query.inc', - 'module' => '', + 'filename' => 'modules/locale/locale.test', + 'module' => 'locale', 'weight' => '0', )) ->values(array( - 'name' => 'TruncateQuery_sqlite', + 'name' => 'LocaleUILanguageNegotiationTest', 'type' => 'class', - 'filename' => 'includes/database/sqlite/query.inc', - 'module' => '', + 'filename' => 'modules/locale/locale.test', + 'module' => 'locale', 'weight' => '0', )) ->values(array( - 'name' => 'UAPhoneNumberTestCase', + 'name' => 'LocaleUninstallFrenchFunctionalTest', 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.ua.test', - 'module' => 'phone', + 'filename' => 'modules/locale/locale.test', + 'module' => 'locale', 'weight' => '0', )) ->values(array( - 'name' => 'UKPhoneNumberTestCase', + 'name' => 'LocaleUninstallFunctionalTest', 'type' => 'class', - 'filename' => 'sites/all/modules/phone/tests/phone.uk.test', - 'module' => 'phone', + 'filename' => 'modules/locale/locale.test', + 'module' => 'locale', 'weight' => '0', )) ->values(array( - 'name' => 'UnicodeUnitTest', + 'name' => 'LocaleUpgradePathTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/unicode.test', + 'filename' => 'modules/simpletest/tests/upgrade/upgrade.locale.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'UpdateCoreTestCase', + 'name' => 'LocaleUrlRewritingTest', 'type' => 'class', - 'filename' => 'modules/update/update.test', - 'module' => 'update', + 'filename' => 'modules/locale/locale.test', + 'module' => 'locale', 'weight' => '0', )) ->values(array( - 'name' => 'UpdateCoreUnitTestCase', + 'name' => 'LocaleUserCreationTest', 'type' => 'class', - 'filename' => 'modules/update/update.test', - 'module' => 'update', + 'filename' => 'modules/locale/locale.test', + 'module' => 'locale', 'weight' => '0', )) ->values(array( - 'name' => 'UpdateDependencyHookInvocationTestCase', + 'name' => 'LocaleUserLanguageFunctionalTest', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/update.test', - 'module' => 'simpletest', + 'filename' => 'modules/locale/locale.test', + 'module' => 'locale', 'weight' => '0', )) ->values(array( - 'name' => 'UpdateDependencyMissingTestCase', + 'name' => 'LockFunctionalTest', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/update.test', + 'filename' => 'modules/simpletest/tests/lock.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'UpdateDependencyOrderingTestCase', + 'name' => 'MailSystemInterface', + 'type' => 'interface', + 'filename' => 'includes/mail.inc', + 'module' => '', + 'weight' => '0', +)) +->values(array( + 'name' => 'MailTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/update.test', + 'filename' => 'modules/simpletest/tests/mail.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'UpdateFeedItemTestCase', + 'name' => 'MemoryQueue', 'type' => 'class', - 'filename' => 'modules/aggregator/aggregator.test', - 'module' => 'aggregator', + 'filename' => 'modules/system/system.queue.inc', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'UpdateFeedTestCase', + 'name' => 'MenuBreadcrumbTestCase', 'type' => 'class', - 'filename' => 'modules/aggregator/aggregator.test', - 'module' => 'aggregator', + 'filename' => 'modules/simpletest/tests/menu.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'UpdatePathTestCase', + 'name' => 'MenuLinksUnitTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/upgrade.test', + 'filename' => 'modules/simpletest/tests/menu.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'UpdateQuery', + 'name' => 'MenuNodeTestCase', 'type' => 'class', - 'filename' => 'includes/database/query.inc', - 'module' => '', + 'filename' => 'modules/menu/menu.test', + 'module' => 'menu', 'weight' => '0', )) ->values(array( - 'name' => 'UpdateQuery_pgsql', + 'name' => 'MenuRebuildTestCase', 'type' => 'class', - 'filename' => 'includes/database/pgsql/query.inc', - 'module' => '', + 'filename' => 'modules/simpletest/tests/menu.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'UpdateQuery_sqlite', + 'name' => 'MenuRouterTestCase', 'type' => 'class', - 'filename' => 'includes/database/sqlite/query.inc', - 'module' => '', + 'filename' => 'modules/simpletest/tests/menu.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'Updater', + 'name' => 'MenuTestCase', 'type' => 'class', - 'filename' => 'includes/updater.inc', - 'module' => '', + 'filename' => 'modules/menu/menu.test', + 'module' => 'menu', 'weight' => '0', )) ->values(array( - 'name' => 'UpdaterException', + 'name' => 'MenuTrailTestCase', 'type' => 'class', - 'filename' => 'includes/updater.inc', - 'module' => '', + 'filename' => 'modules/simpletest/tests/menu.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'UpdaterFileTransferException', + 'name' => 'MenuTreeDataTestCase', 'type' => 'class', - 'filename' => 'includes/updater.inc', - 'module' => '', + 'filename' => 'modules/simpletest/tests/menu.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'UpdateScriptFunctionalTest', + 'name' => 'MenuTreeOutputTestCase', 'type' => 'class', - 'filename' => 'modules/system/system.test', - 'module' => 'system', + 'filename' => 'modules/simpletest/tests/menu.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'UpdateTestContribCase', + 'name' => 'MenuUpgradePathTestCase', 'type' => 'class', - 'filename' => 'modules/update/update.test', - 'module' => 'update', + 'filename' => 'modules/simpletest/tests/upgrade/upgrade.menu.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'UpdateTestHelper', + 'name' => 'MenuWebTestCase', 'type' => 'class', - 'filename' => 'modules/update/update.test', - 'module' => 'update', + 'filename' => 'modules/simpletest/tests/menu.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'UpdateTestUploadCase', + 'name' => 'MergeQuery', 'type' => 'class', - 'filename' => 'modules/update/update.test', - 'module' => 'update', + 'filename' => 'includes/database/query.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'UpgradePathTaxonomyTestCase', + 'name' => 'MigrateDestinationFieldCollection', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/upgrade.taxonomy.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/field_collection/field_collection.migrate.inc', + 'module' => 'field_collection', 'weight' => '0', )) ->values(array( - 'name' => 'UpgradePathTestCase', + 'name' => 'MigrateDestinationParagraphsItem', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/upgrade.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/paragraphs/migrate/destinations/MigrateDestinationParagraphsItem.inc', + 'module' => 'paragraphs', 'weight' => '0', )) ->values(array( - 'name' => 'UpgradePathTriggerTestCase', + 'name' => 'MigrateEmailFieldHandler', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/upgrade.trigger.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/email/email.migrate.inc', + 'module' => 'email', 'weight' => '0', )) ->values(array( - 'name' => 'UploadUpgradePathTestCase', + 'name' => 'MigrateEntityReferenceFieldHandler', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/upgrade.upload.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/entityreference/entityreference.migrate.inc', + 'module' => 'entityreference', 'weight' => '0', )) ->values(array( - 'name' => 'UrlAlterFunctionalTest', + 'name' => 'MigrateLinkFieldHandler', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/path.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/link/link.migrate.inc', + 'module' => 'link', 'weight' => '0', )) ->values(array( - 'name' => 'UrlIsExternalUnitTest', + 'name' => 'MigratePhoneFieldHandler', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', + 'filename' => 'sites/all/modules/phone/phone.migrate.inc', + 'module' => 'phone', 'weight' => '0', )) ->values(array( - 'name' => 'UserAccountLinksUnitTests', + 'name' => 'MockTestConnection', 'type' => 'class', - 'filename' => 'modules/user/user.test', - 'module' => 'user', + 'filename' => 'modules/simpletest/tests/filetransfer.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'UserAdminTestCase', + 'name' => 'ModuleDependencyTestCase', 'type' => 'class', - 'filename' => 'modules/user/user.test', - 'module' => 'user', + 'filename' => 'modules/system/system.test', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'UserAuthmapAssignmentTestCase', + 'name' => 'ModuleImplementsAlterTestCase', 'type' => 'class', - 'filename' => 'modules/user/user.test', - 'module' => 'user', + 'filename' => 'modules/simpletest/tests/module.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'UserAutocompleteTestCase', + 'name' => 'ModuleInstallTestCase', 'type' => 'class', - 'filename' => 'modules/user/user.test', - 'module' => 'user', + 'filename' => 'modules/simpletest/tests/module.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'UserBlocksUnitTests', + 'name' => 'ModuleProvidedThemeEngineTestCase', 'type' => 'class', - 'filename' => 'modules/user/user.test', - 'module' => 'user', + 'filename' => 'modules/simpletest/tests/theme.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'UserCancelTestCase', + 'name' => 'ModuleRequiredTestCase', 'type' => 'class', - 'filename' => 'modules/user/user.test', - 'module' => 'user', + 'filename' => 'modules/system/system.test', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'UserController', + 'name' => 'ModuleTestCase', 'type' => 'class', - 'filename' => 'modules/user/user.module', - 'module' => 'user', + 'filename' => 'modules/system/system.test', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'UserCreateTestCase', + 'name' => 'ModuleUninstallTestCase', 'type' => 'class', - 'filename' => 'modules/user/user.test', - 'module' => 'user', + 'filename' => 'modules/simpletest/tests/module.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'UserEditedOwnAccountTestCase', + 'name' => 'ModuleUnitTest', 'type' => 'class', - 'filename' => 'modules/user/user.test', - 'module' => 'user', + 'filename' => 'modules/simpletest/tests/module.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'UserEditRebuildTestCase', + 'name' => 'ModuleUpdater', 'type' => 'class', - 'filename' => 'modules/user/user.test', - 'module' => 'user', + 'filename' => 'modules/system/system.updater.inc', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'UserEditTestCase', + 'name' => 'ModuleVersionTestCase', 'type' => 'class', - 'filename' => 'modules/user/user.test', - 'module' => 'user', + 'filename' => 'modules/system/system.test', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'UserLoginTestCase', + 'name' => 'MultiStepNodeFormBasicOptionsTest', 'type' => 'class', - 'filename' => 'modules/user/user.test', - 'module' => 'user', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'UserPasswordResetTestCase', + 'name' => 'NewDefaultThemeBlocks', 'type' => 'class', - 'filename' => 'modules/user/user.test', - 'module' => 'user', - 'weight' => '0', + 'filename' => 'modules/block/block.test', + 'module' => 'block', + 'weight' => '-5', )) ->values(array( - 'name' => 'UserPermissionsTestCase', + 'name' => 'NLPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'modules/user/user.test', - 'module' => 'user', + 'filename' => 'sites/all/modules/phone/tests/phone.nl.test', + 'module' => 'phone', 'weight' => '0', )) ->values(array( - 'name' => 'UserPictureTestCase', + 'name' => 'NodeAccessBaseTableTestCase', 'type' => 'class', - 'filename' => 'modules/user/user.test', - 'module' => 'user', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'UserRegistrationTestCase', + 'name' => 'NodeAccessFieldTestCase', 'type' => 'class', - 'filename' => 'modules/user/user.test', - 'module' => 'user', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'UserRoleAdminTestCase', + 'name' => 'NodeAccessPagerTestCase', 'type' => 'class', - 'filename' => 'modules/user/user.test', - 'module' => 'user', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'UserRolesAssignmentTestCase', + 'name' => 'NodeAccessRebuildTestCase', 'type' => 'class', - 'filename' => 'modules/user/user.test', - 'module' => 'user', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'UserSaveTestCase', + 'name' => 'NodeAccessRecordsTestCase', 'type' => 'class', - 'filename' => 'modules/user/user.test', - 'module' => 'user', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'UserSignatureTestCase', + 'name' => 'NodeAccessTestCase', 'type' => 'class', - 'filename' => 'modules/user/user.test', - 'module' => 'user', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'UserTimeZoneFunctionalTest', + 'name' => 'NodeAdminTestCase', 'type' => 'class', - 'filename' => 'modules/user/user.test', - 'module' => 'user', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'UserTokenReplaceTestCase', + 'name' => 'NodeBlockFunctionalTest', 'type' => 'class', - 'filename' => 'modules/user/user.test', - 'module' => 'user', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'UserUpdatePathTestCase', + 'name' => 'NodeBlockTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/update.user.test', - 'module' => 'simpletest', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'UserUpgradePathDuplicatedPermissionTestCase', + 'name' => 'NodeBodyUpgradePathTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/upgrade.user.test', + 'filename' => 'modules/simpletest/tests/upgrade/upgrade.node.test', 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'UserUpgradePathNoPasswordTokenTestCase', + 'name' => 'NodeBuildContent', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/upgrade.user.test', - 'module' => 'simpletest', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'UserUpgradePathPasswordTokenTestCase', + 'name' => 'NodeController', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/upgrade/upgrade.user.test', - 'module' => 'simpletest', + 'filename' => 'modules/node/node.module', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'UserUserSearchTestCase', + 'name' => 'NodeCreationTestCase', 'type' => 'class', - 'filename' => 'modules/user/user.test', - 'module' => 'user', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'UserValidateCurrentPassCustomForm', + 'name' => 'NodeEntityFieldQueryAlter', 'type' => 'class', - 'filename' => 'modules/user/user.test', - 'module' => 'user', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'UserValidationTestCase', + 'name' => 'NodeEntityViewModeAlterTest', 'type' => 'class', - 'filename' => 'modules/user/user.test', - 'module' => 'user', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'ValidUrlTestCase', + 'name' => 'NodeFeedTestCase', 'type' => 'class', - 'filename' => 'modules/simpletest/tests/common.test', - 'module' => 'simpletest', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'VariableStoreTestCase', + 'name' => 'NodeLoadHooksTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/variable/variable_store/variable_store.test', - 'module' => 'variable_store', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'VariableTestCase', + 'name' => 'NodeLoadMultipleTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/variable/variable.test', - 'module' => 'variable', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'view', + 'name' => 'NodeMultiByteUtf8Test', 'type' => 'class', - 'filename' => 'sites/all/modules/views/includes/view.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/node/node.test', + 'module' => 'node', + 'weight' => '0', )) ->values(array( - 'name' => 'ViewsAccessTest', + 'name' => 'NodePageCacheTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_access.test', - 'module' => 'views', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsAjaxTest', + 'name' => 'NodePostSettingsTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_ajax.test', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/node/node.test', + 'module' => 'node', + 'weight' => '0', )) ->values(array( - 'name' => 'ViewsAnalyzeTest', + 'name' => 'NodeQueryAlter', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_analyze.test', - 'module' => 'views', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsArgumentDefaultTest', + 'name' => 'NodeRevisionPermissionsTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_argument_default.test', - 'module' => 'views', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsArgumentValidatorTest', + 'name' => 'NodeRevisionsTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_argument_validator.test', - 'module' => 'views', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsBasicTest', + 'name' => 'NodeRSSContentTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_basic.test', - 'module' => 'views', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsCacheTest', + 'name' => 'NodeSaveTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_cache.test', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/node/node.test', + 'module' => 'node', + 'weight' => '0', )) ->values(array( - 'name' => 'ViewsExposedFormTest', + 'name' => 'NodeTitleTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_exposed_form.test', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/node/node.test', + 'module' => 'node', + 'weight' => '0', )) ->values(array( - 'name' => 'viewsFieldApiDataTest', + 'name' => 'NodeTitleXSSTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/field/views_fieldapi.test', - 'module' => 'views', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsFieldApiTestHelper', + 'name' => 'NodeTokenReplaceTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/field/views_fieldapi.test', - 'module' => 'views', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsGlossaryTestCase', + 'name' => 'NodeTypePersistenceTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_glossary.test', - 'module' => 'views', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsHandlerAreaTextTest', + 'name' => 'NodeTypeTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_area_text.test', - 'module' => 'views', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'viewsHandlerArgumentCommentUserUidTest', + 'name' => 'NodeWebTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/comment/views_handler_argument_comment_user_uid.test', - 'module' => 'views', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsHandlerArgumentNullTest', + 'name' => 'NoFieldsException', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_argument_null.test', - 'module' => 'views', + 'filename' => 'includes/database/database.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsHandlerArgumentStringTest', + 'name' => 'NoHelpTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_argument_string.test', - 'module' => 'views', + 'filename' => 'modules/help/help.test', + 'module' => 'help', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsHandlerFieldBooleanTest', + 'name' => 'NonDefaultBlockAdmin', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_boolean.test', - 'module' => 'views', - 'weight' => '0', + 'filename' => 'modules/block/block.test', + 'module' => 'block', + 'weight' => '-5', )) ->values(array( - 'name' => 'ViewsHandlerFieldCustomTest', + 'name' => 'NumberFieldTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_custom.test', - 'module' => 'views', + 'filename' => 'modules/field/modules/number/number.test', + 'module' => 'number', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsHandlerFieldDateTest', + 'name' => 'NZPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_date.test', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'sites/all/modules/phone/tests/phone.nz.test', + 'module' => 'phone', + 'weight' => '0', )) ->values(array( - 'name' => 'viewsHandlerFieldFieldTest', + 'name' => 'OpenIDFunctionalTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/field/views_fieldapi.test', - 'module' => 'views', + 'filename' => 'modules/openid/openid.test', + 'module' => 'openid', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsHandlerFieldMath', + 'name' => 'OpenIDInvalidIdentifierTransitionTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_math.test', - 'module' => 'views', + 'filename' => 'modules/openid/openid.test', + 'module' => 'openid', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsHandlerFieldTest', + 'name' => 'OpenIDRegistrationTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field.test', - 'module' => 'views', + 'filename' => 'modules/openid/openid.test', + 'module' => 'openid', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsHandlerFieldUrlTest', + 'name' => 'OpenIDTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_url.test', - 'module' => 'views', + 'filename' => 'modules/openid/openid.test', + 'module' => 'openid', 'weight' => '0', )) ->values(array( - 'name' => 'viewsHandlerFieldUserNameTest', + 'name' => 'OpenIDWebTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/user/views_handler_field_user_name.test', - 'module' => 'views', + 'filename' => 'modules/openid/openid.test', + 'module' => 'openid', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsHandlerFileExtensionTest', + 'name' => 'OptionsSelectDynamicValuesTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_file_extension.test', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/field/modules/options/options.test', + 'module' => 'options', + 'weight' => '0', )) ->values(array( - 'name' => 'ViewsHandlerFilterCombineTest', + 'name' => 'OptionsWidgetsTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_combine.test', - 'module' => 'views', + 'filename' => 'modules/field/modules/options/options.test', + 'module' => 'options', 'weight' => '0', )) ->values(array( - 'name' => 'viewsHandlerFilterCommentUserUidTest', + 'name' => 'PageEditTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/comment/views_handler_filter_comment_user_uid.test', - 'module' => 'views', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsHandlerFilterCounterTest', + 'name' => 'PageNotFoundTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_counter.test', - 'module' => 'views', + 'filename' => 'modules/system/system.test', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsHandlerFilterDateTest', + 'name' => 'PagePreviewTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_date.test', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/node/node.test', + 'module' => 'node', + 'weight' => '0', )) ->values(array( - 'name' => 'ViewsHandlerFilterEqualityTest', + 'name' => 'PagerDefault', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_equality.test', - 'module' => 'views', + 'filename' => 'includes/pager.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsHandlerFilterInOperator', + 'name' => 'PagerFunctionalWebTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_in_operator.test', - 'module' => 'views', + 'filename' => 'modules/simpletest/tests/pager.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsHandlerFilterNumericTest', + 'name' => 'PageTitleFiltering', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_numeric.test', - 'module' => 'views', + 'filename' => 'modules/system/system.test', + 'module' => 'system', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsHandlerFilterStringTest', + 'name' => 'PageViewTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_string.test', - 'module' => 'views', + 'filename' => 'modules/node/node.test', + 'module' => 'node', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsHandlerRelationshipNodeTermDataTest', + 'name' => 'ParagraphsItemEntity', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/taxonomy/views_handler_relationship_node_term_data.test', - 'module' => 'views', + 'filename' => 'sites/all/modules/paragraphs/ParagraphsItemEntity.inc', + 'module' => 'paragraphs', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsHandlerSortDateTest', + 'name' => 'ParagraphsItemMetadataController', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_sort_date.test', - 'module' => 'views', + 'filename' => 'sites/all/modules/paragraphs/ParagraphsItemMetadataController.inc', + 'module' => 'paragraphs', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsHandlerSortRandomTest', + 'name' => 'ParagraphsMigrateParagraphsFieldHandler', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_sort_random.test', - 'module' => 'views', + 'filename' => 'sites/all/modules/paragraphs/migrate/fields/ParagraphsMigrateParagraphsFieldHandler.inc', + 'module' => 'paragraphs', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsHandlerSortTest', + 'name' => 'ParagraphsWebTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_sort.test', - 'module' => 'views', + 'filename' => 'sites/all/modules/paragraphs/tests/paragraphs.test', + 'module' => 'paragraphs', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsHandlersTest', + 'name' => 'paragraphs_handler_relationship', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_handlers.test', - 'module' => 'views', + 'filename' => 'sites/all/modules/paragraphs/views/paragraphs_handler_relationship.inc', + 'module' => 'paragraphs', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsHandlerTest', + 'name' => 'ParseInfoFilesTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/handlers/views_handlers.test', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/common.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'ViewsHandlerTestFileSize', + 'name' => 'PasswordHashingTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_file_size.test', - 'module' => 'views', + 'filename' => 'modules/simpletest/tests/password.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsHandlerTestXss', + 'name' => 'PathLanguageTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_xss.test', - 'module' => 'views', + 'filename' => 'modules/path/path.test', + 'module' => 'path', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsModuleTest', + 'name' => 'PathLanguageUITestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_module.test', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/path/path.test', + 'module' => 'path', + 'weight' => '0', )) ->values(array( - 'name' => 'ViewsNodeRevisionRelationsTestCase', + 'name' => 'PathLookupTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/node/views_node_revision_relations.test', - 'module' => 'views', + 'filename' => 'modules/simpletest/tests/path.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsPagerTest', + 'name' => 'PathMonolingualTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_pager.test', - 'module' => 'views', + 'filename' => 'modules/path/path.test', + 'module' => 'path', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsPagerTestCase', + 'name' => 'PathSaveTest', 'type' => 'class', - 'filename' => 'sites/all/modules/date/tests/date_views_pager.test', - 'module' => 'date', + 'filename' => 'modules/simpletest/tests/path.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsPluginDisplayTestCase', + 'name' => 'PathTaxonomyTermTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/plugins/views_plugin_display.test', - 'module' => 'views', + 'filename' => 'modules/path/path.test', + 'module' => 'path', 'weight' => '0', )) ->values(array( - 'name' => 'viewsPluginStyleJumpMenuTest', + 'name' => 'PathTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style_jump_menu.test', - 'module' => 'views', + 'filename' => 'modules/path/path.test', + 'module' => 'path', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsPluginStyleMappingTest', + 'name' => 'PhoneFrenchTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style_mapping.test', - 'module' => 'views', + 'filename' => 'sites/all/modules/phone/tests/phone.fr.test', + 'module' => 'phone', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsPluginStyleTestBase', + 'name' => 'PhoneIntTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style_base.test', - 'module' => 'views', + 'filename' => 'sites/all/modules/phone/tests/phone.int.test', + 'module' => 'phone', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsPluginStyleTestCase', + 'name' => 'PhonePanamanianTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style.test', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'sites/all/modules/phone/tests/phone.pa.test', + 'module' => 'phone', + 'weight' => '0', )) ->values(array( - 'name' => 'ViewsPluginStyleUnformattedTestCase', + 'name' => 'PHPAccessTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style_unformatted.test', - 'module' => 'views', + 'filename' => 'modules/php/php.test', + 'module' => 'php', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsQueryGroupByTest', + 'name' => 'PHPFilterTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_groupby.test', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/php/php.test', + 'module' => 'php', + 'weight' => '0', )) ->values(array( - 'name' => 'viewsSearchQuery', + 'name' => 'PHPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/search/views_handler_filter_search.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'sites/all/modules/phone/tests/phone.ph.test', + 'module' => 'phone', + 'weight' => '0', )) ->values(array( - 'name' => 'ViewsSqlTest', + 'name' => 'PHPTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_query.test', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/php/php.test', + 'module' => 'php', + 'weight' => '0', )) ->values(array( - 'name' => 'ViewsTestCase', + 'name' => 'PKPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_query.test', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'sites/all/modules/phone/tests/phone.pk.test', + 'module' => 'phone', + 'weight' => '0', )) ->values(array( - 'name' => 'ViewsTranslatableTest', + 'name' => 'PLPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_translatable.test', - 'module' => 'views', + 'filename' => 'sites/all/modules/phone/tests/phone.pl.test', + 'module' => 'phone', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsUiBaseViewsWizard', + 'name' => 'PollBlockTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_wizard/views_ui_base_views_wizard.class.php', - 'module' => 'views_ui', + 'filename' => 'modules/poll/poll.test', + 'module' => 'poll', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsUiCommentViewsWizard', + 'name' => 'PollCreateTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_wizard/views_ui_comment_views_wizard.class.php', - 'module' => 'views_ui', + 'filename' => 'modules/poll/poll.test', + 'module' => 'poll', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsUiFileManagedViewsWizard', + 'name' => 'PollDeleteChoiceTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_wizard/views_ui_file_managed_views_wizard.class.php', - 'module' => 'views_ui', + 'filename' => 'modules/poll/poll.test', + 'module' => 'poll', 'weight' => '0', )) ->values(array( - 'name' => 'viewsUiGroupbyTestCase', + 'name' => 'PollExpirationTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_groupby.test', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/poll/poll.test', + 'module' => 'poll', + 'weight' => '0', )) ->values(array( - 'name' => 'ViewsUiNodeRevisionViewsWizard', + 'name' => 'PollJSAddChoice', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_wizard/views_ui_node_revision_views_wizard.class.php', - 'module' => 'views_ui', + 'filename' => 'modules/poll/poll.test', + 'module' => 'poll', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsUiNodeViewsWizard', + 'name' => 'PollTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_wizard/views_ui_node_views_wizard.class.php', - 'module' => 'views_ui', + 'filename' => 'modules/poll/poll.test', + 'module' => 'poll', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsUiTaxonomyTermViewsWizard', + 'name' => 'PollTokenReplaceTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_wizard/views_ui_taxonomy_term_views_wizard.class.php', - 'module' => 'views_ui', + 'filename' => 'modules/poll/poll.test', + 'module' => 'poll', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsUiUsersViewsWizard', + 'name' => 'PollTranslateTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_wizard/views_ui_users_views_wizard.class.php', - 'module' => 'views_ui', + 'filename' => 'modules/poll/poll.test', + 'module' => 'poll', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsUIWizardBasicTestCase', + 'name' => 'PollUpgradePathTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_ui.test', - 'module' => 'views', + 'filename' => 'modules/simpletest/tests/upgrade/upgrade.node.test', + 'module' => 'simpletest', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsUIWizardDefaultViewsTestCase', + 'name' => 'PollVoteCheckHostname', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_ui.test', - 'module' => 'views', + 'filename' => 'modules/poll/poll.test', + 'module' => 'poll', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsUIWizardHelper', + 'name' => 'PollVoteTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_ui.test', - 'module' => 'views', + 'filename' => 'modules/poll/poll.test', + 'module' => 'poll', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsUIWizardItemsPerPageTestCase', + 'name' => 'ProfileBlockTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_ui.test', - 'module' => 'views', + 'filename' => 'modules/profile/profile.test', + 'module' => 'profile', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsUIWizardJumpMenuTestCase', + 'name' => 'ProfileCrudTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_ui.test', - 'module' => 'views', + 'filename' => 'modules/profile/profile.test', + 'module' => 'profile', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsUIWizardMenuTestCase', + 'name' => 'ProfileTestAutocomplete', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_ui.test', - 'module' => 'views', + 'filename' => 'modules/profile/profile.test', + 'module' => 'profile', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsUIWizardOverrideDisplaysTestCase', + 'name' => 'ProfileTestBrowsing', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_ui.test', - 'module' => 'views', + 'filename' => 'modules/profile/profile.test', + 'module' => 'profile', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsUIWizardSortingTestCase', + 'name' => 'ProfileTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_ui.test', - 'module' => 'views', + 'filename' => 'modules/profile/profile.test', + 'module' => 'profile', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsUIWizardTaggedWithTestCase', + 'name' => 'ProfileTestDate', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_ui.test', - 'module' => 'views', + 'filename' => 'modules/profile/profile.test', + 'module' => 'profile', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsUpgradeTestCase', + 'name' => 'ProfileTestFields', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_upgrade.test', - 'module' => 'views', + 'filename' => 'modules/profile/profile.test', + 'module' => 'profile', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsUserArgumentDefault', + 'name' => 'ProfileTestSelect', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/user/views_user_argument_default.test', - 'module' => 'views', + 'filename' => 'modules/profile/profile.test', + 'module' => 'profile', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsUserArgumentValidate', + 'name' => 'ProfileTestWeights', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/user/views_user_argument_validate.test', - 'module' => 'views', + 'filename' => 'modules/profile/profile.test', + 'module' => 'profile', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsUserTestCase', + 'name' => 'Query', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/user/views_user.test', - 'module' => 'views', + 'filename' => 'includes/database/query.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsViewTest', - 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_view.test', - 'module' => 'views', - 'weight' => '10', + 'name' => 'QueryAlterableInterface', + 'type' => 'interface', + 'filename' => 'includes/database/query.inc', + 'module' => '', + 'weight' => '0', )) ->values(array( - 'name' => 'ViewsWizardException', - 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_wizard/views_ui_base_views_wizard.class.php', - 'module' => 'views_ui', + 'name' => 'QueryConditionInterface', + 'type' => 'interface', + 'filename' => 'includes/database/query.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'ViewsWizardInterface', + 'name' => 'QueryExtendableInterface', 'type' => 'interface', - 'filename' => 'sites/all/modules/views/plugins/views_wizard/views_ui_base_views_wizard.class.php', - 'module' => 'views_ui', + 'filename' => 'includes/database/select.inc', + 'module' => '', 'weight' => '0', )) ->values(array( - 'name' => 'views_db_object', - 'type' => 'class', - 'filename' => 'sites/all/modules/views/includes/view.inc', - 'module' => 'views', - 'weight' => '10', + 'name' => 'QueryPlaceholderInterface', + 'type' => 'interface', + 'filename' => 'includes/database/query.inc', + 'module' => '', + 'weight' => '0', )) ->values(array( - 'name' => 'views_display', + 'name' => 'QueueTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/includes/view.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/system/system.test', + 'module' => 'system', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler', + 'name' => 'RdfCommentAttributesTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/includes/handlers.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/rdf/rdf.test', + 'module' => 'rdf', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_area', + 'name' => 'RdfCrudTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_area.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/rdf/rdf.test', + 'module' => 'rdf', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_area_broken', + 'name' => 'RdfGetRdfNamespacesTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_area.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/rdf/rdf.test', + 'module' => 'rdf', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_area_messages', + 'name' => 'RdfMappingDefinitionTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_area_messages.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/rdf/rdf.test', + 'module' => 'rdf', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_area_result', + 'name' => 'RdfMappingHookTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_area_result.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/rdf/rdf.test', + 'module' => 'rdf', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_area_text', + 'name' => 'RdfRdfaMarkupTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_area_text.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/rdf/rdf.test', + 'module' => 'rdf', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_area_text_custom', + 'name' => 'RdfTrackerAttributesTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_area_text_custom.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/rdf/rdf.test', + 'module' => 'rdf', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_area_view', + 'name' => 'RegistryParseFilesTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_area_view.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/registry.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument', + 'name' => 'RegistryParseFileTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_argument.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/registry.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_aggregator_category_cid', + 'name' => 'RemoteFileDirectoryTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/aggregator/views_handler_argument_aggregator_category_cid.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_aggregator_fid', + 'name' => 'RemoteFileSaveUploadTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/aggregator/views_handler_argument_aggregator_fid.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_aggregator_iid', + 'name' => 'RemoteFileScanDirectoryTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/aggregator/views_handler_argument_aggregator_iid.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_broken', + 'name' => 'RemoteFileUnmanagedCopyTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_argument.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_comment_user_uid', + 'name' => 'RemoteFileUnmanagedDeleteRecursiveTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_argument_comment_user_uid.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_date', + 'name' => 'RemoteFileUnmanagedDeleteTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_argument_date.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_field_list', + 'name' => 'RemoteFileUnmanagedMoveTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/field/views_handler_argument_field_list.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_field_list_string', + 'name' => 'RemoteFileUnmanagedSaveDataTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/field/views_handler_argument_field_list_string.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_file_fid', + 'name' => 'RemoveFeedItemTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/system/views_handler_argument_file_fid.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/aggregator/aggregator.test', + 'module' => 'aggregator', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_formula', + 'name' => 'RemoveFeedTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_argument_formula.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/aggregator/aggregator.test', + 'module' => 'aggregator', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_group_by_numeric', + 'name' => 'RenderElementTypesTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_argument_group_by_numeric.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/theme.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_locale_group', + 'name' => 'RetrieveFileTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/locale/views_handler_argument_locale_group.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/system/system.test', + 'module' => 'system', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_locale_language', + 'name' => 'RUPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/locale/views_handler_argument_locale_language.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'sites/all/modules/phone/tests/phone.ru.test', + 'module' => 'phone', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_many_to_one', + 'name' => 'SchemaCache', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_argument_many_to_one.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'includes/bootstrap.inc', + 'module' => '', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_node_created_day', + 'name' => 'SchemaTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_argument_dates_various.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/schema.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_node_created_fulldate', + 'name' => 'SearchAdvancedSearchForm', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_argument_dates_various.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/search/search.test', + 'module' => 'search', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_node_created_month', + 'name' => 'SearchBlockTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_argument_dates_various.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/search/search.test', + 'module' => 'search', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_node_created_week', + 'name' => 'SearchCommentCountToggleTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_argument_dates_various.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/search/search.test', + 'module' => 'search', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_node_created_year', + 'name' => 'SearchCommentTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_argument_dates_various.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/search/search.test', + 'module' => 'search', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_node_created_year_month', + 'name' => 'SearchConfigSettingsForm', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_argument_dates_various.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/search/search.test', + 'module' => 'search', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_node_language', + 'name' => 'SearchEmbedForm', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_argument_node_language.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/search/search.test', + 'module' => 'search', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_node_nid', + 'name' => 'SearchExactTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_argument_node_nid.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/search/search.test', + 'module' => 'search', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_node_tnid', + 'name' => 'SearchExcerptTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/translation/views_handler_argument_node_tnid.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/search/search.test', + 'module' => 'search', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_node_type', + 'name' => 'SearchExpressionInsertExtractTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_argument_node_type.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/search/search.test', + 'module' => 'search', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_node_uid_revision', + 'name' => 'SearchKeywordsConditions', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_argument_node_uid_revision.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/search/search.test', + 'module' => 'search', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_node_vid', + 'name' => 'SearchLanguageTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_argument_node_vid.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/search/search.test', + 'module' => 'search', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_null', + 'name' => 'SearchMatchTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_argument_null.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/search/search.test', + 'module' => 'search', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_numeric', + 'name' => 'SearchNodeAccessTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_argument_numeric.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/search/search.test', + 'module' => 'search', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_search', + 'name' => 'SearchNodeTagTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/search/views_handler_argument_search.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/search/search.test', + 'module' => 'search', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_string', + 'name' => 'SearchNumberMatchingTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_argument_string.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/search/search.test', + 'module' => 'search', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_taxonomy', + 'name' => 'SearchNumbersTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_argument_taxonomy.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/search/search.test', + 'module' => 'search', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_term_node_tid', + 'name' => 'SearchPageOverride', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_argument_term_node_tid.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/search/search.test', + 'module' => 'search', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_term_node_tid_depth', + 'name' => 'SearchPageText', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_argument_term_node_tid_depth.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/search/search.test', + 'module' => 'search', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_term_node_tid_depth_join', + 'name' => 'SearchQuery', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_argument_term_node_tid_depth_join.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/search/search.extender.inc', + 'module' => 'search', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_term_node_tid_depth_modifier', + 'name' => 'SearchRankingTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_argument_term_node_tid_depth_modifier.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/search/search.test', + 'module' => 'search', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_tracker_comment_user_uid', + 'name' => 'SearchSetLocaleTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/tracker/views_handler_argument_tracker_comment_user_uid.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/search/search.test', + 'module' => 'search', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_users_roles_rid', + 'name' => 'SearchSimplifyTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/user/views_handler_argument_users_roles_rid.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/search/search.test', + 'module' => 'search', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_user_uid', + 'name' => 'SearchTokenizerTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/user/views_handler_argument_user_uid.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/search/search.test', + 'module' => 'search', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_vocabulary_machine_name', + 'name' => 'SelectQuery', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_argument_vocabulary_machine_name.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'includes/database/select.inc', + 'module' => '', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_argument_vocabulary_vid', + 'name' => 'SelectQueryExtender', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_argument_vocabulary_vid.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'includes/database/select.inc', + 'module' => '', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field', - 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_field.inc', - 'module' => 'views', - 'weight' => '10', + 'name' => 'SelectQueryInterface', + 'type' => 'interface', + 'filename' => 'includes/database/select.inc', + 'module' => '', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_accesslog_path', + 'name' => 'SelectQuery_pgsql', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/statistics/views_handler_field_accesslog_path.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'includes/database/pgsql/select.inc', + 'module' => '', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_aggregator_category', + 'name' => 'SelectQuery_sqlite', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/aggregator/views_handler_field_aggregator_category.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'includes/database/sqlite/select.inc', + 'module' => '', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_aggregator_title_link', + 'name' => 'SEPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/aggregator/views_handler_field_aggregator_title_link.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'sites/all/modules/phone/tests/phone.se.test', + 'module' => 'phone', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_aggregator_xss', + 'name' => 'SessionHttpsTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/aggregator/views_handler_field_aggregator_xss.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/session.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_boolean', + 'name' => 'SessionTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_boolean.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/session.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_broken', + 'name' => 'SGPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_field.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'sites/all/modules/phone/tests/phone.sg.test', + 'module' => 'phone', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_comment', + 'name' => 'ShortcutLinksTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_comment.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/shortcut/shortcut.test', + 'module' => 'shortcut', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_comment_depth', + 'name' => 'ShortcutSetsTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_comment_depth.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/shortcut/shortcut.test', + 'module' => 'shortcut', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_comment_link', + 'name' => 'ShortcutTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_comment_link.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/shortcut/shortcut.test', + 'module' => 'shortcut', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_comment_link_approve', + 'name' => 'ShutdownFunctionsTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_comment_link_approve.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/system/system.test', + 'module' => 'system', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_comment_link_delete', + 'name' => 'SimpleTestBrokenSetUp', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_comment_link_delete.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/simpletest.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_comment_link_edit', + 'name' => 'SimpleTestBrowserTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_comment_link_edit.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/simpletest.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_comment_link_reply', + 'name' => 'SimpleTestDiscoveryTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_comment_link_reply.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/simpletest.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_comment_node_link', + 'name' => 'SimpleTestFolderTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_comment_node_link.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/simpletest.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_comment_username', + 'name' => 'SimpleTestFunctionalTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_comment_username.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/simpletest.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_contact_link', + 'name' => 'SimpleTestInstallationProfileModuleTestsTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/contact/views_handler_field_contact_link.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/simpletest.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_contextual_links', + 'name' => 'SimpleTestMailCaptureTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_contextual_links.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/simpletest.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_counter', + 'name' => 'SimpleTestMissingDependentModuleUnitTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_counter.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/simpletest.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_ctools_dropdown', + 'name' => 'SimpleTestOtherInstallationProfileModuleTestsTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_ctools_dropdown.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/simpletest.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_custom', + 'name' => 'SiteMaintenanceTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_custom.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/system/system.test', + 'module' => 'system', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_date', + 'name' => 'SkipDotsRecursiveDirectoryIterator', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_date.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'includes/filetransfer/filetransfer.inc', + 'module' => '', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_entity', + 'name' => 'StatisticsAdminTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_entity.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/statistics/statistics.test', + 'module' => 'statistics', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_field', + 'name' => 'StatisticsBlockVisitorsTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/field/views_handler_field_field.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/statistics/statistics.test', + 'module' => 'statistics', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_file', + 'name' => 'StatisticsLoggingTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/system/views_handler_field_file.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/statistics/statistics.test', + 'module' => 'statistics', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_file_extension', + 'name' => 'StatisticsReportsTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/system/views_handler_field_file_extension.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/statistics/statistics.test', + 'module' => 'statistics', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_file_filemime', + 'name' => 'StatisticsTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/system/views_handler_field_file_filemime.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/statistics/statistics.test', + 'module' => 'statistics', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_file_size', + 'name' => 'StatisticsTokenReplaceTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_field.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/statistics/statistics.test', + 'module' => 'statistics', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_file_status', - 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/system/views_handler_field_file_status.inc', - 'module' => 'views', - 'weight' => '10', + 'name' => 'StreamWrapperInterface', + 'type' => 'interface', + 'filename' => 'includes/stream_wrappers.inc', + 'module' => '', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_file_uri', + 'name' => 'StreamWrapperTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/system/views_handler_field_file_uri.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/file.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_filter_format_name', + 'name' => 'SummaryLengthTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/filter/views_handler_field_filter_format_name.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/node/node.test', + 'module' => 'node', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_history_user_timestamp', + 'name' => 'SyslogTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_field_history_user_timestamp.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/syslog/syslog.test', + 'module' => 'syslog', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_last_comment_timestamp', + 'name' => 'SystemAdminTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_last_comment_timestamp.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/system/system.test', + 'module' => 'system', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_links', + 'name' => 'SystemAuthorizeCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_links.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/system/system.test', + 'module' => 'system', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_locale_group', + 'name' => 'SystemBlockTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/locale/views_handler_field_locale_group.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/system/system.test', + 'module' => 'system', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_locale_language', + 'name' => 'SystemIndexPhpTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/locale/views_handler_field_locale_language.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/system/system.test', + 'module' => 'system', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_locale_link_edit', + 'name' => 'SystemInfoAlterTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/locale/views_handler_field_locale_link_edit.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/system/system.test', + 'module' => 'system', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_machine_name', + 'name' => 'SystemMainContentFallback', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_machine_name.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/system/system.test', + 'module' => 'system', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_markup', + 'name' => 'SystemQueue', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_markup.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/system/system.queue.inc', + 'module' => 'system', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_math', + 'name' => 'SystemThemeFunctionalTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_math.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/system/system.test', + 'module' => 'system', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_ncs_last_comment_name', + 'name' => 'SystemValidTokenTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_ncs_last_comment_name.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/system/system.test', + 'module' => 'system', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_ncs_last_updated', + 'name' => 'TableSort', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_ncs_last_updated.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'includes/tablesort.inc', + 'module' => '', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_node', + 'name' => 'TableSortTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_field_node.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/tablesort.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_node_comment', + 'name' => 'TaxonomyEFQTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_node_comment.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/taxonomy/taxonomy.test', + 'module' => 'taxonomy', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_node_counter_timestamp', + 'name' => 'TaxonomyHooksTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/statistics/views_handler_field_node_counter_timestamp.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/taxonomy/taxonomy.test', + 'module' => 'taxonomy', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_node_language', + 'name' => 'TaxonomyLegacyTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/locale/views_handler_field_node_language.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/taxonomy/taxonomy.test', + 'module' => 'taxonomy', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_node_link', + 'name' => 'TaxonomyLoadMultipleTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_field_node_link.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/taxonomy/taxonomy.test', + 'module' => 'taxonomy', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_node_link_delete', + 'name' => 'TaxonomyQueryAlterTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_field_node_link_delete.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/taxonomy/taxonomy.test', + 'module' => 'taxonomy', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_node_link_edit', + 'name' => 'TaxonomyRSSTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_field_node_link_edit.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/taxonomy/taxonomy.test', + 'module' => 'taxonomy', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_node_link_translate', + 'name' => 'TaxonomyTermController', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/translation/views_handler_field_node_link_translate.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/taxonomy/taxonomy.module', + 'module' => 'taxonomy', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_node_new_comments', + 'name' => 'TaxonomyTermFieldMultipleVocabularyTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_node_new_comments.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/taxonomy/taxonomy.test', + 'module' => 'taxonomy', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_node_path', + 'name' => 'TaxonomyTermFieldTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_field_node_path.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/taxonomy/taxonomy.test', + 'module' => 'taxonomy', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_node_revision', + 'name' => 'TaxonomyTermFunctionTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_field_node_revision.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/taxonomy/taxonomy.test', + 'module' => 'taxonomy', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_node_revision_link', + 'name' => 'TaxonomyTermIndexTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_field_node_revision_link.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/taxonomy/taxonomy.test', + 'module' => 'taxonomy', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_node_revision_link_delete', + 'name' => 'TaxonomyTermTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_field_node_revision_link_delete.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/taxonomy/taxonomy.test', + 'module' => 'taxonomy', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_node_revision_link_revert', + 'name' => 'TaxonomyThemeTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_field_node_revision_link_revert.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/taxonomy/taxonomy.test', + 'module' => 'taxonomy', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_node_translation_link', + 'name' => 'TaxonomyTokenReplaceTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/translation/views_handler_field_node_translation_link.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/taxonomy/taxonomy.test', + 'module' => 'taxonomy', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_node_type', + 'name' => 'TaxonomyVocabularyController', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_field_node_type.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/taxonomy/taxonomy.module', + 'module' => 'taxonomy', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_node_version_count', + 'name' => 'TaxonomyVocabularyFunctionalTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_field_node_version_count.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/taxonomy/taxonomy.test', + 'module' => 'taxonomy', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_numeric', + 'name' => 'TaxonomyVocabularyTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_numeric.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/taxonomy/taxonomy.test', + 'module' => 'taxonomy', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_prerender_list', + 'name' => 'TaxonomyWebTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_prerender_list.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/taxonomy/taxonomy.test', + 'module' => 'taxonomy', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_profile_date', + 'name' => 'TestFileTransfer', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/profile/views_handler_field_profile_date.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/filetransfer.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_profile_list', + 'name' => 'TestingMailSystem', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/profile/views_handler_field_profile_list.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/system/system.mail.inc', + 'module' => 'system', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_search_score', + 'name' => 'TextFieldTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/search/views_handler_field_search_score.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/field/modules/text/text.test', + 'module' => 'text', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_serialized', + 'name' => 'TextSummaryTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_serialized.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/field/modules/text/text.test', + 'module' => 'text', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_statistics_numeric', + 'name' => 'TextTranslationTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/statistics/views_handler_field_statistics_numeric.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/field/modules/text/text.test', + 'module' => 'text', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_taxonomy', + 'name' => 'ThemeDebugMarkupTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_field_taxonomy.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/theme.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_term_link_edit', + 'name' => 'ThemeFastTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_field_term_link_edit.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/theme.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_term_node_tid', + 'name' => 'ThemeHookInitTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_field_term_node_tid.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/theme.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_time_interval', + 'name' => 'ThemeItemListUnitTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_time_interval.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/theme.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_url', + 'name' => 'ThemeLinksTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_url.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/theme.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_user', + 'name' => 'ThemeRegistry', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/user/views_handler_field_user.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'includes/theme.inc', + 'module' => '', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_user_language', + 'name' => 'ThemeRegistryTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/user/views_handler_field_user_language.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/theme.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_user_link', + 'name' => 'ThemeTableTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/user/views_handler_field_user_link.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/theme.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_user_link_cancel', + 'name' => 'ThemeTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/user/views_handler_field_user_link_cancel.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/theme.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_user_link_edit', + 'name' => 'ThemeUpdater', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/user/views_handler_field_user_link_edit.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/system/system.updater.inc', + 'module' => 'system', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_user_mail', + 'name' => 'TokenReplaceTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/user/views_handler_field_user_mail.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/system/system.test', + 'module' => 'system', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_user_name', + 'name' => 'TokenScanTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/user/views_handler_field_user_name.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/system/system.test', + 'module' => 'system', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_user_permissions', + 'name' => 'TrackerTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/user/views_handler_field_user_permissions.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/tracker/tracker.test', + 'module' => 'tracker', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_user_picture', + 'name' => 'TranslatableUpgradePathTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/user/views_handler_field_user_picture.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/upgrade/upgrade.translatable.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_user_roles', + 'name' => 'TranslationTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/user/views_handler_field_user_roles.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/translation/translation.test', + 'module' => 'translation', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_field_xss', + 'name' => 'TriggerActionTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_field.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/trigger/trigger.test', + 'module' => 'trigger', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter', + 'name' => 'TriggerContentTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/trigger/trigger.test', + 'module' => 'trigger', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_aggregator_category_cid', + 'name' => 'TriggerCronTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/aggregator/views_handler_filter_aggregator_category_cid.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/trigger/trigger.test', + 'module' => 'trigger', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_boolean_operator', + 'name' => 'TriggerOrphanedActionsTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter_boolean_operator.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/trigger/trigger.test', + 'module' => 'trigger', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_boolean_operator_string', + 'name' => 'TriggerOtherTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter_boolean_operator_string.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/trigger/trigger.test', + 'module' => 'trigger', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_broken', + 'name' => 'TriggerUnassignTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/trigger/trigger.test', + 'module' => 'trigger', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_combine', + 'name' => 'TriggerUpdatePathTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter_combine.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/upgrade/update.trigger.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_comment_user_uid', + 'name' => 'TriggerUserActionTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_filter_comment_user_uid.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/trigger/trigger.test', + 'module' => 'trigger', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_date', + 'name' => 'TriggerUserTokenTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter_date.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/trigger/trigger.test', + 'module' => 'trigger', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_entity_bundle', + 'name' => 'TriggerWebTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter_entity_bundle.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/trigger/trigger.test', + 'module' => 'trigger', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_equality', + 'name' => 'TruncateQuery', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter_equality.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'includes/database/query.inc', + 'module' => '', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_fields_compare', + 'name' => 'TruncateQuery_mysql', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter_fields_compare.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'includes/database/mysql/query.inc', + 'module' => '', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_field_list', + 'name' => 'TruncateQuery_sqlite', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/field/views_handler_filter_field_list.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'includes/database/sqlite/query.inc', + 'module' => '', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_field_list_boolean', + 'name' => 'UAPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/field/views_handler_filter_field_list_boolean.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'sites/all/modules/phone/tests/phone.ua.test', + 'module' => 'phone', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_file_status', + 'name' => 'UKPhoneNumberTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/system/views_handler_filter_file_status.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'sites/all/modules/phone/tests/phone.uk.test', + 'module' => 'phone', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_group_by_numeric', + 'name' => 'UnicodeUnitTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter_group_by_numeric.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/unicode.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_history_user_timestamp', + 'name' => 'UpdateCoreTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_filter_history_user_timestamp.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/update/update.test', + 'module' => 'update', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_in_operator', + 'name' => 'UpdateCoreUnitTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter_in_operator.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/update/update.test', + 'module' => 'update', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_locale_group', + 'name' => 'UpdateDependencyHookInvocationTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/locale/views_handler_filter_locale_group.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/update.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_locale_language', + 'name' => 'UpdateDependencyMissingTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/locale/views_handler_filter_locale_language.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/update.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_locale_version', + 'name' => 'UpdateDependencyOrderingTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/locale/views_handler_filter_locale_version.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/update.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_many_to_one', + 'name' => 'UpdateFeedItemTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter_many_to_one.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/aggregator/aggregator.test', + 'module' => 'aggregator', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_ncs_last_updated', + 'name' => 'UpdateFeedTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_filter_ncs_last_updated.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/aggregator/aggregator.test', + 'module' => 'aggregator', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_node_access', + 'name' => 'UpdatePathTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_filter_node_access.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/upgrade/upgrade.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_node_comment', + 'name' => 'UpdateQuery', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_filter_node_comment.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'includes/database/query.inc', + 'module' => '', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_node_language', + 'name' => 'UpdateQuery_pgsql', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/locale/views_handler_filter_node_language.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'includes/database/pgsql/query.inc', + 'module' => '', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_node_status', + 'name' => 'UpdateQuery_sqlite', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_filter_node_status.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'includes/database/sqlite/query.inc', + 'module' => '', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_node_tnid', + 'name' => 'Updater', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/translation/views_handler_filter_node_tnid.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'includes/updater.inc', + 'module' => '', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_node_tnid_child', + 'name' => 'UpdaterException', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/translation/views_handler_filter_node_tnid_child.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'includes/updater.inc', + 'module' => '', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_node_type', + 'name' => 'UpdaterFileTransferException', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_filter_node_type.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'includes/updater.inc', + 'module' => '', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_node_uid_revision', + 'name' => 'UpdateScriptFunctionalTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_filter_node_uid_revision.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/system/system.test', + 'module' => 'system', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_node_version_count', + 'name' => 'UpdateTestContribCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_filter_node_version_count.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/update/update.test', + 'module' => 'update', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_numeric', + 'name' => 'UpdateTestHelper', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter_numeric.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/update/update.test', + 'module' => 'update', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_profile_selection', + 'name' => 'UpdateTestUploadCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/profile/views_handler_filter_profile_selection.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/update/update.test', + 'module' => 'update', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_search', + 'name' => 'UpgradePathTaxonomyTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/search/views_handler_filter_search.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/upgrade/upgrade.taxonomy.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_string', + 'name' => 'UpgradePathTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter_string.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/upgrade/upgrade.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_system_type', + 'name' => 'UpgradePathTriggerTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/system/views_handler_filter_system_type.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/upgrade/upgrade.trigger.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_term_node_tid', + 'name' => 'UploadUpgradePathTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_filter_term_node_tid.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/upgrade/upgrade.upload.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_term_node_tid_depth', + 'name' => 'UrlAlterFunctionalTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_filter_term_node_tid_depth.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/path.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_term_node_tid_depth_join', + 'name' => 'UrlIsExternalUnitTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_filter_term_node_tid_depth_join.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/common.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_tracker_boolean_operator', + 'name' => 'UserAccountLinksUnitTests', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/tracker/views_handler_filter_tracker_boolean_operator.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.test', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_tracker_comment_user_uid', + 'name' => 'UserAdminTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/tracker/views_handler_filter_tracker_comment_user_uid.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.test', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_user_current', + 'name' => 'UserAuthmapAssignmentTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/user/views_handler_filter_user_current.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.test', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_user_name', + 'name' => 'UserAutocompleteTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/user/views_handler_filter_user_name.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.test', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_user_permissions', + 'name' => 'UserBlocksUnitTests', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/user/views_handler_filter_user_permissions.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.test', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_user_roles', + 'name' => 'UserCancelTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/user/views_handler_filter_user_roles.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.test', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_vocabulary_machine_name', + 'name' => 'UserController', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_filter_vocabulary_machine_name.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.module', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_filter_vocabulary_vid', + 'name' => 'UserCreateTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_filter_vocabulary_vid.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.test', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_relationship', + 'name' => 'UserEditedOwnAccountTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_relationship.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.test', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_relationship_broken', + 'name' => 'UserEditRebuildTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_relationship.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.test', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_relationship_entity_reverse', + 'name' => 'UserEditTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/field/views_handler_relationship_entity_reverse.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.test', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_relationship_groupwise_max', + 'name' => 'UserLoginTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_relationship_groupwise_max.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.test', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_relationship_node_term_data', + 'name' => 'UserPasswordResetTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_relationship_node_term_data.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.test', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_relationship_translation', + 'name' => 'UserPermissionsTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/translation/views_handler_relationship_translation.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.test', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_sort', + 'name' => 'UserPictureTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_sort.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.test', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_sort_broken', + 'name' => 'UserRegistrationTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_sort.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.test', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_sort_comment_thread', + 'name' => 'UserRoleAdminTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_sort_comment_thread.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.test', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_sort_date', + 'name' => 'UserRolesAssignmentTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_sort_date.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.test', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_sort_group_by_numeric', + 'name' => 'UserSaveTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_sort_group_by_numeric.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.test', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_sort_menu_hierarchy', + 'name' => 'UserSignatureTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_sort_menu_hierarchy.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.test', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_sort_ncs_last_comment_name', + 'name' => 'UserTimeZoneFunctionalTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_sort_ncs_last_comment_name.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.test', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_sort_ncs_last_updated', + 'name' => 'UserTokenReplaceTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_sort_ncs_last_updated.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.test', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_sort_node_language', + 'name' => 'UserUpdatePathTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/locale/views_handler_sort_node_language.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/upgrade/update.user.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_sort_node_version_count', + 'name' => 'UserUpgradePathDuplicatedPermissionTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_handler_sort_node_version_count.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/upgrade/upgrade.user.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_sort_random', + 'name' => 'UserUpgradePathNoPasswordTokenTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/handlers/views_handler_sort_random.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/upgrade/upgrade.user.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_handler_sort_search_score', + 'name' => 'UserUpgradePathPasswordTokenTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/search/views_handler_sort_search_score.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/upgrade/upgrade.user.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_join', + 'name' => 'UserUserSearchTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/includes/handlers.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.test', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_join_subquery', + 'name' => 'UserValidateCurrentPassCustomForm', 'type' => 'class', - 'filename' => 'sites/all/modules/views/includes/handlers.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.test', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_many_to_one_helper', + 'name' => 'UserValidationTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/includes/handlers.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/user/user.test', + 'module' => 'user', + 'weight' => '0', )) ->values(array( - 'name' => 'views_object', + 'name' => 'ValidUrlTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/includes/base.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'modules/simpletest/tests/common.test', + 'module' => 'simpletest', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin', + 'name' => 'VariableStoreTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/includes/plugins.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'sites/all/modules/variable/variable_store/variable_store.test', + 'module' => 'variable_store', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_access', + 'name' => 'VariableTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_access.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'sites/all/modules/variable/variable.test', + 'module' => 'variable', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_access_none', + 'name' => 'ViewsAccessTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_access_none.inc', + 'filename' => 'sites/all/modules/views/tests/views_access.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_access_perm', + 'name' => 'ViewsAjaxTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_access_perm.inc', + 'filename' => 'sites/all/modules/views/tests/views_ajax.test', 'module' => 'views', 'weight' => '10', )) ->values(array( - 'name' => 'views_plugin_access_role', + 'name' => 'ViewsAnalyzeTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_access_role.inc', + 'filename' => 'sites/all/modules/views/tests/views_analyze.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_argument_default', + 'name' => 'ViewsArgumentDefaultTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_argument_default.inc', + 'filename' => 'sites/all/modules/views/tests/views_argument_default.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_argument_default_book_root', + 'name' => 'ViewsArgumentValidatorTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/book/views_plugin_argument_default_book_root.inc', + 'filename' => 'sites/all/modules/views/tests/views_argument_validator.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_argument_default_current_user', + 'name' => 'ViewsBasicTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/user/views_plugin_argument_default_current_user.inc', + 'filename' => 'sites/all/modules/views/tests/views_basic.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_argument_default_fixed', + 'name' => 'ViewsCacheTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_argument_default_fixed.inc', + 'filename' => 'sites/all/modules/views/tests/views_cache.test', 'module' => 'views', 'weight' => '10', )) ->values(array( - 'name' => 'views_plugin_argument_default_node', + 'name' => 'ViewsExposedFormTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_plugin_argument_default_node.inc', + 'filename' => 'sites/all/modules/views/tests/views_exposed_form.test', 'module' => 'views', 'weight' => '10', )) ->values(array( - 'name' => 'views_plugin_argument_default_php', + 'name' => 'viewsFieldApiDataTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_argument_default_php.inc', + 'filename' => 'sites/all/modules/views/tests/field/views_fieldapi.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_argument_default_raw', + 'name' => 'ViewsFieldApiTestHelper', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_argument_default_raw.inc', + 'filename' => 'sites/all/modules/views/tests/field/views_fieldapi.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_argument_default_taxonomy_tid', + 'name' => 'ViewsGlossaryTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_plugin_argument_default_taxonomy_tid.inc', + 'filename' => 'sites/all/modules/views/tests/views_glossary.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_argument_default_user', + 'name' => 'ViewsHandlerAreaTextTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/user/views_plugin_argument_default_user.inc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_area_text.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_argument_validate', + 'name' => 'viewsHandlerArgumentCommentUserUidTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_argument_validate.inc', + 'filename' => 'sites/all/modules/views/tests/comment/views_handler_argument_comment_user_uid.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_argument_validate_node', + 'name' => 'ViewsHandlerArgumentNullTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_plugin_argument_validate_node.inc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_argument_null.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_argument_validate_numeric', + 'name' => 'ViewsHandlerArgumentStringTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_argument_validate_numeric.inc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_argument_string.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_argument_validate_php', + 'name' => 'ViewsHandlerFieldBooleanTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_argument_validate_php.inc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_boolean.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_argument_validate_taxonomy_term', + 'name' => 'ViewsHandlerFieldCustomTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_plugin_argument_validate_taxonomy_term.inc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_custom.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_argument_validate_user', + 'name' => 'ViewsHandlerFieldDateTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/user/views_plugin_argument_validate_user.inc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_date.test', 'module' => 'views', 'weight' => '10', )) ->values(array( - 'name' => 'views_plugin_cache', + 'name' => 'viewsHandlerFieldFieldTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_cache.inc', + 'filename' => 'sites/all/modules/views/tests/field/views_fieldapi.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_cache_none', + 'name' => 'ViewsHandlerFieldMath', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_cache_none.inc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_math.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_cache_time', + 'name' => 'ViewsHandlerFieldTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_cache_time.inc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_display', + 'name' => 'ViewsHandlerFieldUrlTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_display.inc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_url.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_display_attachment', + 'name' => 'viewsHandlerFieldUserNameTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_display_attachment.inc', + 'filename' => 'sites/all/modules/views/tests/user/views_handler_field_user_name.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_display_block', + 'name' => 'ViewsHandlerFileExtensionTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_display_block.inc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_file_extension.test', 'module' => 'views', 'weight' => '10', )) ->values(array( - 'name' => 'views_plugin_display_default', + 'name' => 'ViewsHandlerFilterCombineTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_display_default.inc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_combine.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_display_embed', + 'name' => 'viewsHandlerFilterCommentUserUidTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_display_embed.inc', + 'filename' => 'sites/all/modules/views/tests/comment/views_handler_filter_comment_user_uid.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_display_extender', + 'name' => 'ViewsHandlerFilterCounterTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_display_extender.inc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_counter.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_display_feed', + 'name' => 'ViewsHandlerFilterDateTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_display_feed.inc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_date.test', 'module' => 'views', 'weight' => '10', )) ->values(array( - 'name' => 'views_plugin_display_page', + 'name' => 'ViewsHandlerFilterEqualityTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_display_page.inc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_equality.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_exposed_form', + 'name' => 'ViewsHandlerFilterInOperator', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_exposed_form.inc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_in_operator.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_exposed_form_basic', + 'name' => 'ViewsHandlerFilterNumericTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_exposed_form_basic.inc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_numeric.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_exposed_form_input_required', + 'name' => 'ViewsHandlerFilterStringTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_exposed_form_input_required.inc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_string.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_localization', + 'name' => 'ViewsHandlerRelationshipNodeTermDataTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_localization.inc', + 'filename' => 'sites/all/modules/views/tests/taxonomy/views_handler_relationship_node_term_data.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_localization_core', + 'name' => 'ViewsHandlerSortDateTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_localization_core.inc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_sort_date.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_localization_none', + 'name' => 'ViewsHandlerSortRandomTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_localization_none.inc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_sort_random.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_localization_test', + 'name' => 'ViewsHandlerSortTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/views_plugin_localization_test.inc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_sort.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_pager', + 'name' => 'ViewsHandlersTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_pager.inc', + 'filename' => 'sites/all/modules/views/tests/views_handlers.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_pager_full', + 'name' => 'ViewsHandlerTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_pager_full.inc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handlers.test', 'module' => 'views', 'weight' => '10', )) ->values(array( - 'name' => 'views_plugin_pager_mini', + 'name' => 'ViewsHandlerTestFileSize', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_pager_mini.inc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_file_size.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_pager_none', + 'name' => 'ViewsHandlerTestXss', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_pager_none.inc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_xss.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_pager_some', + 'name' => 'ViewsModuleTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_pager_some.inc', + 'filename' => 'sites/all/modules/views/tests/views_module.test', 'module' => 'views', 'weight' => '10', )) ->values(array( - 'name' => 'views_plugin_query', + 'name' => 'ViewsNodeRevisionRelationsTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_query.inc', + 'filename' => 'sites/all/modules/views/tests/node/views_node_revision_relations.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_query_default', + 'name' => 'ViewsPagerTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_query_default.inc', + 'filename' => 'sites/all/modules/views/tests/views_pager.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_row', + 'name' => 'ViewsPagerTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_row.inc', - 'module' => 'views', - 'weight' => '10', + 'filename' => 'sites/all/modules/date/tests/date_views_pager.test', + 'module' => 'date', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_row_aggregator_rss', + 'name' => 'ViewsPluginDisplayTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/aggregator/views_plugin_row_aggregator_rss.inc', + 'filename' => 'sites/all/modules/views/tests/plugins/views_plugin_display.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_row_comment_rss', + 'name' => 'viewsPluginStyleJumpMenuTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/comment/views_plugin_row_comment_rss.inc', + 'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style_jump_menu.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_row_comment_view', + 'name' => 'ViewsPluginStyleMappingTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/comment/views_plugin_row_comment_view.inc', + 'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style_mapping.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_row_fields', + 'name' => 'ViewsPluginStyleTestBase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_row_fields.inc', + 'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style_base.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_row_node_rss', + 'name' => 'ViewsPluginStyleTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_plugin_row_node_rss.inc', + 'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style.test', 'module' => 'views', 'weight' => '10', )) ->values(array( - 'name' => 'views_plugin_row_node_view', + 'name' => 'ViewsPluginStyleUnformattedTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/node/views_plugin_row_node_view.inc', + 'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style_unformatted.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_row_rss_fields', + 'name' => 'ViewsQueryGroupByTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_row_rss_fields.inc', + 'filename' => 'sites/all/modules/views/tests/views_groupby.test', 'module' => 'views', 'weight' => '10', )) ->values(array( - 'name' => 'views_plugin_row_search_view', + 'name' => 'ViewsSqlTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/search/views_plugin_row_search_view.inc', + 'filename' => 'sites/all/modules/views/tests/views_query.test', 'module' => 'views', 'weight' => '10', )) ->values(array( - 'name' => 'views_plugin_row_user_view', + 'name' => 'ViewsTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/modules/user/views_plugin_row_user_view.inc', + 'filename' => 'sites/all/modules/views/tests/views_query.test', 'module' => 'views', 'weight' => '10', )) ->values(array( - 'name' => 'views_plugin_style', + 'name' => 'ViewsTranslatableTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_style.inc', + 'filename' => 'sites/all/modules/views/tests/views_translatable.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_style_default', + 'name' => 'viewsUiGroupbyTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_style_default.inc', + 'filename' => 'sites/all/modules/views/tests/views_groupby.test', 'module' => 'views', 'weight' => '10', )) ->values(array( - 'name' => 'views_plugin_style_grid', + 'name' => 'ViewsUIWizardBasicTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_style_grid.inc', + 'filename' => 'sites/all/modules/views/tests/views_ui.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_style_jump_menu', + 'name' => 'ViewsUIWizardDefaultViewsTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_style_jump_menu.inc', + 'filename' => 'sites/all/modules/views/tests/views_ui.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_style_list', + 'name' => 'ViewsUIWizardHelper', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_style_list.inc', + 'filename' => 'sites/all/modules/views/tests/views_ui.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_style_mapping', + 'name' => 'ViewsUIWizardItemsPerPageTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_style_mapping.inc', + 'filename' => 'sites/all/modules/views/tests/views_ui.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_style_rss', + 'name' => 'ViewsUIWizardJumpMenuTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_style_rss.inc', + 'filename' => 'sites/all/modules/views/tests/views_ui.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_style_summary', + 'name' => 'ViewsUIWizardMenuTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_style_summary.inc', + 'filename' => 'sites/all/modules/views/tests/views_ui.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_style_summary_jump_menu', + 'name' => 'ViewsUIWizardOverrideDisplaysTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_style_summary_jump_menu.inc', + 'filename' => 'sites/all/modules/views/tests/views_ui.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_style_summary_unformatted', + 'name' => 'ViewsUIWizardSortingTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_style_summary_unformatted.inc', + 'filename' => 'sites/all/modules/views/tests/views_ui.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_plugin_style_table', + 'name' => 'ViewsUIWizardTaggedWithTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/views_plugin_style_table.inc', + 'filename' => 'sites/all/modules/views/tests/views_ui.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_test_area_access', + 'name' => 'ViewsUpgradeTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/test_handlers/views_test_area_access.inc', + 'filename' => 'sites/all/modules/views/tests/views_upgrade.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_test_plugin_access_test_dynamic', + 'name' => 'ViewsUserArgumentDefault', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/test_plugins/views_test_plugin_access_test_dynamic.inc', + 'filename' => 'sites/all/modules/views/tests/user/views_user_argument_default.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_test_plugin_access_test_static', + 'name' => 'ViewsUserArgumentValidate', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/test_plugins/views_test_plugin_access_test_static.inc', + 'filename' => 'sites/all/modules/views/tests/user/views_user_argument_validate.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_test_plugin_style_test_mapping', + 'name' => 'ViewsUserTestCase', 'type' => 'class', - 'filename' => 'sites/all/modules/views/tests/test_plugins/views_test_plugin_style_test_mapping.inc', + 'filename' => 'sites/all/modules/views/tests/user/views_user.test', 'module' => 'views', - 'weight' => '10', + 'weight' => '0', )) ->values(array( - 'name' => 'views_ui', + 'name' => 'ViewsViewTest', 'type' => 'class', - 'filename' => 'sites/all/modules/views/plugins/export_ui/views_ui.class.php', - 'module' => 'views_ui', - 'weight' => '0', + 'filename' => 'sites/all/modules/views/tests/views_view.test', + 'module' => 'views', + 'weight' => '10', )) ->values(array( 'name' => 'XMLRPCBasicTestCase', @@ -68132,26 +49585,6 @@ $connection->insert('registry_file') 'filename' => 'modules/user/user.test', 'hash' => '0b55048c0de2dee5ab1c25a38c01b3bd13f476b43e4172bb0c06cb6188d2edc9', )) -->values(array( - 'filename' => 'sites/all/modules/ctools/includes/context.inc', - 'hash' => '867c8a65b99131be8226700d51a5fb3d51896bf95279beedac55f51a27fd714b', -)) -->values(array( - 'filename' => 'sites/all/modules/ctools/includes/css-cache.inc', - 'hash' => 'db90ff67669d9fa445e91074ac67fb97cdb191a19e68d42744f0fd4158649cfa', -)) -->values(array( - 'filename' => 'sites/all/modules/ctools/includes/math-expr.inc', - 'hash' => '3c60674360d5caa754895f32d87cde6a122f61800d4b762e7e09d49501fd47b8', -)) -->values(array( - 'filename' => 'sites/all/modules/ctools/includes/stylizer.inc', - 'hash' => '3f91f5ed42fb6ee1b65ddef7ac22577b07a5d75ca1eb2df60041243ced5c7079', -)) -->values(array( - 'filename' => 'sites/all/modules/ctools/plugins/export_ui/ctools_export_ui.class.php', - 'hash' => '2fd87a7d80689e4d44673b31c07b762144eb8ac57324fd0b9cd9ede5f4ea34b5', -)) ->values(array( 'filename' => 'sites/all/modules/ctools/tests/context.test', 'hash' => '05145aae34016fd1d8c776ad4cca92b2f514570a8cd26b30dfb563a07540afd2', @@ -68352,26 +49785,10 @@ $connection->insert('registry_file') 'filename' => 'sites/all/modules/entityreference/plugins/behavior/abstract.inc', 'hash' => 'a7959ddece2ce3490f92d916162e07aed313e28ca299ca0375bad633b42d93e3', )) -->values(array( - 'filename' => 'sites/all/modules/entityreference/plugins/behavior/EntityReferenceBehavior_TaxonomyIndex.class.php', - 'hash' => '29e0f80ac52c1c313455a531404a3040c9160ecd173afd2e200ff99ffbab491c', -)) -->values(array( - 'filename' => 'sites/all/modules/entityreference/plugins/behavior/EntityReferenceBehavior_ViewsFilterSelect.class.php', - 'hash' => 'f6805f62bbd376d98676706602aeb1c4d16e645acb429d31032bc3fb37d850d3', -)) ->values(array( 'filename' => 'sites/all/modules/entityreference/plugins/selection/abstract.inc', 'hash' => '9c8cdf704c8e42cc2a63d4c8271d28c7b0aa7e0b1ec081ed7bd84712631e3e72', )) -->values(array( - 'filename' => 'sites/all/modules/entityreference/plugins/selection/EntityReference_SelectionHandler_Generic.class.php', - 'hash' => '3516c65d6048e182dcd1b7209ccf6838e17b1d342617d06e7a07ffed8bd549c6', -)) -->values(array( - 'filename' => 'sites/all/modules/entityreference/plugins/selection/EntityReference_SelectionHandler_Views.class.php', - 'hash' => '5b2fd228aec8548b2c7b32dd966017bcedbce1c3ca211bd69b114b95a37927f4', -)) ->values(array( 'filename' => 'sites/all/modules/entityreference/plugins/selection/views.inc', 'hash' => '7bbe8900b6b71c2d41e370deaccca869884d0fe9ca81772d7d5bca5f58ec1cd8', @@ -68436,10 +49853,6 @@ $connection->insert('registry_file') 'filename' => 'sites/all/modules/i18n/i18n_block/i18n_block.test', 'hash' => 'b2608274dae333577514565b54b14f2ad8f84c3928fb0ea0ed848aa8db7375e6', )) -->values(array( - 'filename' => 'sites/all/modules/i18n/i18n_field/i18n_field.inc', - 'hash' => 'b8c9b97f9dbc510e0e3b478e8fe21e86278a19ac5b8ddcf2da15c37d14afcc03', -)) ->values(array( 'filename' => 'sites/all/modules/i18n/i18n_field/i18n_field.test', 'hash' => '933758375305519b97501c2479834620d258881088cdbabb4a493f4e0054d068', @@ -68456,14 +49869,6 @@ $connection->insert('registry_file') 'filename' => 'sites/all/modules/i18n/i18n_node/i18n_node.test', 'hash' => '0009235387b1fb0a15ae46cea8e00539128f8a807c4e5f6c8abf27929ec28ff6', )) -->values(array( - 'filename' => 'sites/all/modules/i18n/i18n_node/i18n_node.variable.inc', - 'hash' => '8f0a93b4d12a331373dac6025b9cb2cc1c8d41e8769db06d346fab011859a0e9', -)) -->values(array( - 'filename' => 'sites/all/modules/i18n/i18n_object.inc', - 'hash' => '13118a2525f7ef27040f1c4824fcd05258154fcba128bdb5802c0aac471293c8', -)) ->values(array( 'filename' => 'sites/all/modules/i18n/i18n_path/i18n_path.test', 'hash' => 'd625f7e36e653d8d55cf68e4366a647f5efc20689d3905d6fc77657752ac7584', @@ -68472,14 +49877,6 @@ $connection->insert('registry_file') 'filename' => 'sites/all/modules/i18n/i18n_select/i18n_select.test', 'hash' => 'bfb4267be987278f079382f218433a191973f13f4f8c06077e719ca90fd744ed', )) -->values(array( - 'filename' => 'sites/all/modules/i18n/i18n_string/i18n_string.admin.inc', - 'hash' => 'ace6c13b12cbb5379c803def1f4c4ba073457aa7fe84d1f87a4a4693e28b216c', -)) -->values(array( - 'filename' => 'sites/all/modules/i18n/i18n_string/i18n_string.inc', - 'hash' => '8413df5e4840f03eb9291fa4805c1cbbeeeefd2617c0f883c1c242a74c9eeb5c', -)) ->values(array( 'filename' => 'sites/all/modules/i18n/i18n_string/i18n_string.test', 'hash' => '9d8f64d589d8a6a4ad443591e09956686d4ccf73892887a74179549af7911d2c', @@ -68521,2680 +49918,2640 @@ $connection->insert('registry_file') 'hash' => 'e3c414eb7bdc1a27b8408446ded03b77c52b3419f38f6a3d3ada68effda4b616', )) ->values(array( - 'filename' => 'sites/all/modules/link/tests/link.test', - 'hash' => 'fe5d8cd577fbfc07929e7216e115530a28777ace9b7135fbc853a3a78d550456', -)) -->values(array( - 'filename' => 'sites/all/modules/link/tests/link.token.test', - 'hash' => '74d2a9888005d08fba8c6d3720592a4d9dffa5d30a25fee1714ce89fa0688041', -)) -->values(array( - 'filename' => 'sites/all/modules/link/tests/link.validate.test', - 'hash' => 'ff8a018f4ecf621e8f5f0fdec7c8d505305778c615ef17a84c7542bee0e29c47', -)) -->values(array( - 'filename' => 'sites/all/modules/link/views/link_views_handler_argument_target.inc', - 'hash' => 'd77c23c6b085382c63e7dbce3d95afc9756517edcdc4cd455892d8333520d4c9', -)) -->values(array( - 'filename' => 'sites/all/modules/link/views/link_views_handler_filter_protocol.inc', - 'hash' => 'e10a0d2de73bfa9a56fadbac023c6ac16022ced40c0444ab6ffed1b5d7ea7358', -)) -->values(array( - 'filename' => 'sites/all/modules/paragraphs/migrate/destinations/MigrateDestinationParagraphsItem.inc', - 'hash' => '2f1b8a7459fad365ca78a74e1c5fb64f9127a1877d015b01ab690edee661a351', -)) -->values(array( - 'filename' => 'sites/all/modules/paragraphs/migrate/fields/ParagraphsMigrateParagraphsFieldHandler.inc', - 'hash' => '6888f3b438dcf7058d4509d3ae597b1b98500816810e6365d8b6db6fb1628545', -)) -->values(array( - 'filename' => 'sites/all/modules/paragraphs/ParagraphsItemEntity.inc', - 'hash' => 'f3372b5a65706e7bd37db1ca46a497576e1a2e149a19a4da8ef450c234977ee7', -)) -->values(array( - 'filename' => 'sites/all/modules/paragraphs/ParagraphsItemMetadataController.inc', - 'hash' => 'bcd66f4c19bb15f48a7621034c7fa4f59fa1388eb6be534b7f0ef5c828f75293', -)) -->values(array( - 'filename' => 'sites/all/modules/paragraphs/tests/paragraphs.test', - 'hash' => 'c7563dd19ec8cedd5a0d77d2b14ce09b937059cc8feed26aec0e6ab818c95681', -)) -->values(array( - 'filename' => 'sites/all/modules/paragraphs/views/paragraphs_handler_relationship.inc', - 'hash' => '83e5b2b2deb9f05c13cf9837837039f920ee42533e263a41773a717af50c6d3a', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/phone.migrate.inc', - 'hash' => 'd7422e56ab02e4b55b2fdb9ea185a876fd6164446b0c4f66b5c0e70071d7e708', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.au.test', - 'hash' => '0b920ca34f5255c6d49b0138b9bd58fa9e430fa11e33e93ab3cd248c2b4ad0fe', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.be.test', - 'hash' => '311af0608d86bb10a02e393a2d9e541a409b081088f353eacee6ceb864130a98', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.br.test', - 'hash' => '93bad68cd3e4560cc05914aeaee8bb9056591b46917d7295f9a3d4feca89e739', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.ca.test', - 'hash' => '6f425a856adb70fb250fc8823bc010afab781839695c9ecb5f7be38bf7710348', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.ch.test', - 'hash' => 'ab8fa50c459d6e11d773c597320859d07bfdbf5ab7715bd505cff025980b7070', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.cl.test', - 'hash' => '2cc581962d4367c476b2010f10de7acb3bc9ab52177bb52694e28a88d54d48a1', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.cn.test', - 'hash' => 'e36269835b0d5673684887cf33831a254e7b2110b98dc35a60102246901c244d', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.cr.test', - 'hash' => '04c3aab79d2c75104d0ce9a9a84f84443303289bafce79b43f06d90cbc4c78b0', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.cs.test', - 'hash' => '3e90d66bedebd4c66b46526fb4877340b6b0c2d4bcd7557e477b5b9c52727d9a', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.eg.test', - 'hash' => 'f0568e235c65fc625cc2eca359c0062771df5755460cb6003ae8c5197aca67f9', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.es.test', - 'hash' => '8a8bfa8827e42a79d89720cec22c9246ff463cc8bae89f78394b61fbd676614e', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.fr.test', - 'hash' => '76dc4de9eb4547e3a27298a93fb9949f5d354b3464ec268df9da496783093115', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.hu.test', - 'hash' => '57aee8805078b0281c4722e80d721fbcc6dec739b7258bc9843139fd2652471f', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.il.test', - 'hash' => '5dba7aa580c087df4d0d9e8a9d8a00a0203a3217cce2e14a26fc18371964f5d5', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.int.test', - 'hash' => '99b33e5ec1d232106ce3be0adf8fb7a9e57ee2bb82536408ec60978561ac0a5f', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.it.test', - 'hash' => 'dc80b84ed335e2989a36b3ffc7d670ff4106daa665e26df550c0dcf96915c056', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.jo.test', - 'hash' => '0c30dc4baccba8ddb4f2c55cfc2b79ceb736769bdc664e6189d1b5e7cd348e00', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.nl.test', - 'hash' => '33431240ce625582f22a5ae98066efd7ac57176a1d3e18a2a0f702ea43418637', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.nz.test', - 'hash' => '3a4cbb625f3c8de015b99ed1bc712f4cd41a3819ac9aea75170ad202297e46bc', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.pa.test', - 'hash' => 'd8fb12e636cd5028ab15e35f61d01d2d15e9e22f40724bf57f5958d6261720b7', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.ph.test', - 'hash' => '56727122712ea07bdded9df15449ffe1e605c5e64cebf599876a49e3b0bbb616', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.pk.test', - 'hash' => 'd061a6aa870b6a2607cfdb074d5d9ed5719e02fa298f69d38349b742335d8bb8', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.pl.test', - 'hash' => 'b9a2079d3d93909513d1c7b10054fddcea114529ac3f0d0cbbc674c547476180', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.ru.test', - 'hash' => 'f2f8c62e441ca34552754337f63ac7db81dceff3ebb984bfad3ad0ad19ca2072', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.se.test', - 'hash' => '7cb5c273d1f5d19533130da5417a4208c31f7ef8fd4d336972af202e64f05fd9', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.sg.test', - 'hash' => 'f76557ba04ad21f81b010f1cd6e649b7fa9eaf1df6acbcd7ac1c7fa60945f29e', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.ua.test', - 'hash' => '7441058b561f294da5dca24a367c5cb37bd043c4cb4a55606240d1843a244e56', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.uk.test', - 'hash' => 'a42cde9cb4ffbdab1974f56bbdf1f6fe9987f1a5d5713d11c0d3cdc6e0cb34c3', -)) -->values(array( - 'filename' => 'sites/all/modules/phone/tests/phone.za.test', - 'hash' => 'c5491ab663972aa23ae2f917a0fc605a6136f02e1b207d3fc650ed1f251359ee', -)) -->values(array( - 'filename' => 'sites/all/modules/variable/includes/forum.variable.inc', - 'hash' => '84ab5992d648c704b2ae6d680cf8e02d3150cccd8939170f7e8fd82ac054b516', -)) -->values(array( - 'filename' => 'sites/all/modules/variable/includes/locale.variable.inc', - 'hash' => '27173d9c9e526a8ba88c5f48bf516aaac59ad932b64ef654621bc11f1ccd9f7a', -)) -->values(array( - 'filename' => 'sites/all/modules/variable/includes/menu.variable.inc', - 'hash' => 'bc776840ee32060a9fda616ca154d3fd315461fbe07ce822d7969b79fccd8160', -)) -->values(array( - 'filename' => 'sites/all/modules/variable/includes/node.variable.inc', - 'hash' => '596064101f8fbd3affdb61ca1240354ce0b51778601a8b02c021a1150bbf4e06', -)) -->values(array( - 'filename' => 'sites/all/modules/variable/includes/system.variable.inc', - 'hash' => '909bae0f1e3a4d85c32c385a92a58c559576fb60fd13a0e4f71127eee27afd3e', -)) -->values(array( - 'filename' => 'sites/all/modules/variable/includes/taxonomy.variable.inc', - 'hash' => '7792f07f8ea088cd8c3350e16f4cacef262c319c2e605dd911f17999a872f09e', -)) -->values(array( - 'filename' => 'sites/all/modules/variable/includes/translation.variable.inc', - 'hash' => '3e4e82f779986bfb32987d6b27bdab9f907ba5e18841847f138a20c42cf725d4', -)) -->values(array( - 'filename' => 'sites/all/modules/variable/includes/user.variable.inc', - 'hash' => 'b80094c1db0037f396f197bdd70c19e87afe76f4378c5c6089c4199af3bcb03a', -)) -->values(array( - 'filename' => 'sites/all/modules/variable/variable.test', - 'hash' => 'a6614814c24aee5ae1d2f2f8c23c08138466c41a82e57ee670e070d7cdd6e4b2', -)) -->values(array( - 'filename' => 'sites/all/modules/variable/variable_store/variable_store.test', - 'hash' => '1546243a6be757de0fd7f9fe1428152fb0e53a91453c53c72aebb06f6cef4311', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_area.inc', - 'hash' => '95d4374c805c057c9855304ded14ce316cdee8aca0744120a74400e2a8173fae', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_area_messages.inc', - 'hash' => 'de94f83a65b47d55bbb4949fcf93dd4ad628a4a105cea2b47cdc22593f3e5925', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_area_result.inc', - 'hash' => 'f406d7e4409545ffea2e56c9a10f87f20adef2276c6d6bbc8003885cccc8ca3b', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_area_text.inc', - 'hash' => '531d0ac3b64206970593762df0abac60524f607253c3af876dd66ba747786dce', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_area_text_custom.inc', - 'hash' => '35b702060c192b0adf6601ed437d0a02effd3accb71c07d6156013c8be9d5a15', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_area_view.inc', - 'hash' => 'e604b5716d9ea202ab0b8e51d2bd0a4a8eeab461db0a74bf37745d6cbba25c41', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_argument.inc', - 'hash' => '1f0498d1878e331f59b9f0cc87b67df330437c736e565a05fe1a14ab65ec3f26', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_argument_date.inc', - 'hash' => '1b423d5a437bbd8ed97d0bfb69c635d36f15114699a7bc0056568cc87937477d', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_argument_formula.inc', - 'hash' => '5a29748494a7e1c37606224de0c3cac45566efe057e4748b6676a898ac224a61', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_argument_group_by_numeric.inc', - 'hash' => 'b8d29f27592448b63f15138510128203d726590daef56cf153a09407c90ec481', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_argument_many_to_one.inc', - 'hash' => 'b2de259c2d00fe7ed04eb5d45eb5107ce60535dd0275823883cc29b04d1a3974', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_argument_null.inc', - 'hash' => '26699660fd0915ec078d7eb35a93ef39fd53e3a2a4841c0ac5dbf0bb02207bee', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_argument_numeric.inc', - 'hash' => 'ae23d847fa0f1e92baec32665a8894e26660999e338bebffb49ee42daac5a063', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_argument_string.inc', - 'hash' => 'f8fe4daf0a636cc93d520a0d5ff212840d8bdaa704ddc3c59a24667f341ed3a1', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_field.inc', - 'hash' => '3d059d737e738436a15651f9ac8374f460a71eb569619ba0a8a14a55a3efc87e', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_boolean.inc', - 'hash' => 'dc00b916a223935e05f51d94a2dffbaf430b162517072f7c2122332af41e8fc2', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_contextual_links.inc', - 'hash' => '2f54701c9f71a4a525e724a6787b5e0089a3c38e426d1925bf8344d017d571bf', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_counter.inc', - 'hash' => '865a5ad7df830dae9e167709446e66cebf3e32e91ec05b5c2b887c96d0d6b0d8', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_ctools_dropdown.inc', - 'hash' => 'a78c424ef884ae9878c0b140d532bdf3b116fdc0e8a7cd519848c675d5b1a5a6', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_custom.inc', - 'hash' => 'a3d25fc20401ae0a1af4b7d6e83376a5b7dc18ab0aed17a3c6d81e2314cf19f8', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_date.inc', - 'hash' => '79cb6583981104d70d20393fe62281c749680f375cb67355635ef00688258934', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_entity.inc', - 'hash' => '909ab36aff896ad8fa4306d95a052172ec27e471ab385a035fcadef8d019e0f9', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_links.inc', - 'hash' => '331a7c8e68a9a94a41a0d7e3e2b6a5c8436792cf244b409ffd732f9cbbab3642', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_machine_name.inc', - 'hash' => 'df2fe47cf9c6d2e7de8627c08da809fb60883c38697340966f303c223e22aee4', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_markup.inc', - 'hash' => 'a0c652fdf47f7efe35bbf2371f00e230409fe90ea0038eb101bf0c93ae0718e9', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_math.inc', - 'hash' => '08c9fb88b20ca346ee3dc29773b2341ea294ba85b659dbd8c1cc92a9ddf900e8', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_numeric.inc', - 'hash' => '1e36f9d55b4cfeb268068e5c9bd6f326999c04191485d3db4610e94e6f57fad9', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_prerender_list.inc', - 'hash' => '0fe605bf457886fbca5f041a422fc51c6a1927654dcd06cbfc619496fe57de0e', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_serialized.inc', - 'hash' => 'ad3d82a9f37ae4c71a875526c353839da2ff529351efc7861f8b7c9d4b5a47db', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_time_interval.inc', - 'hash' => '280d569784312d19dabfb7aeb94639442ae37e16cba02659a8251de08a4f1de2', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_field_url.inc', - 'hash' => '7ca57a8dcc42a3d1e7e7ec5defa64a689cb678073e15153ff6a7cafe54c90249', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter.inc', - 'hash' => '4c8937c5b6399c42bb6659169f5c8563ca415fd7effab1ddeeebf2bb6b9a8011', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter_boolean_operator.inc', - 'hash' => 'f4ca59e4e1f91f219a1b33690a4ad412269946804fe7cacf24f2574b2c6d8599', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter_boolean_operator_string.inc', - 'hash' => '0ddd32cda535112c187de1c062797849ff90d9b312a8659056e76d2d209f694a', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter_combine.inc', - 'hash' => '802f033bba6a9965896b02e3c3e0ea4493e4be282f2c5444ebbeec7e8a478072', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter_date.inc', - 'hash' => 'fb63877ecfa64f2be8557a21dcf34e28b59c4a9c5f561f55738162d2301c4aa1', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter_entity_bundle.inc', - 'hash' => '02db977a67a09f70bdc8e2bbc46a05fff8a6d8bd6423308c95418476e84714a3', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter_equality.inc', - 'hash' => '2100cdd7f5232348adae494c5122ba41ff051eee0a8cc14aeaf6a66202cb7ed1', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter_fields_compare.inc', - 'hash' => 'e116c3796f1bd409b150f5ab896b9bab956d6e71a82e5770ed6fde44605751b2', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter_group_by_numeric.inc', - 'hash' => '9401c4c0fe0d678898e5288ef8152784a12e0743df21dec15457353eb2cdb01d', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter_in_operator.inc', - 'hash' => '8fd7f075468bddde5c4208b1c3a6105f8fea0ac0c214452a37c00fc2f3453a7d', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter_many_to_one.inc', - 'hash' => 'b4a415c2824195d3d7d0e37ada9d69ebec0b9cd833ebcac2439efc20aac15595', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter_numeric.inc', - 'hash' => '8a999227d17674a70381ab8b45fbdc91269a83a45e5f7514607ed8b4a5bf6a9f', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_filter_string.inc', - 'hash' => '140006335ac5b19b6253b431afde624db70385b9d22390b8c275296ae469cc7b', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_relationship.inc', - 'hash' => '4fefdb6c9c48b72dcfe86484123b97eb5f5b90b6a440d8026d71f74dccbd1cd6', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_relationship_groupwise_max.inc', - 'hash' => '47dcfe351159b10153697c17b3a92607edb34a258ba3b44087c947b9cc88e86f', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_sort.inc', - 'hash' => '06aab8d75f3dce81eb032128b8f755bfff752dcefc2e5d494b137bca161fdefa', -)) -->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_sort_date.inc', - 'hash' => 'd7e771abf74585bd09cc8e666747a093f40848b451de8ba67c8158317946f1b2', + 'filename' => 'sites/all/modules/link/tests/link.test', + 'hash' => 'fe5d8cd577fbfc07929e7216e115530a28777ace9b7135fbc853a3a78d550456', )) ->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_sort_group_by_numeric.inc', - 'hash' => '4ba1c38c9af32789a951b8f9377e13631ae26bf1dac3371b31a37ead25b32eb8', + 'filename' => 'sites/all/modules/link/tests/link.token.test', + 'hash' => '74d2a9888005d08fba8c6d3720592a4d9dffa5d30a25fee1714ce89fa0688041', )) ->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_sort_menu_hierarchy.inc', - 'hash' => 'ccd65ea3b3270366b7175e2cd7cc9167a09c27e1486949e4a05495ff5c7be5c1', + 'filename' => 'sites/all/modules/link/tests/link.validate.test', + 'hash' => 'ff8a018f4ecf621e8f5f0fdec7c8d505305778c615ef17a84c7542bee0e29c47', )) ->values(array( - 'filename' => 'sites/all/modules/views/handlers/views_handler_sort_random.inc', - 'hash' => '05a00c3bf76c3278ae0ce39a206a6224089faf5ac4a00dd5b8a558f06fab8e46', + 'filename' => 'sites/all/modules/link/views/link_views_handler_argument_target.inc', + 'hash' => 'd77c23c6b085382c63e7dbce3d95afc9756517edcdc4cd455892d8333520d4c9', )) ->values(array( - 'filename' => 'sites/all/modules/views/includes/base.inc', - 'hash' => '5ad8155dbc31cc4460b65747d99b70a64a83f6fefa00231c8d965293a7a183ee', + 'filename' => 'sites/all/modules/link/views/link_views_handler_filter_protocol.inc', + 'hash' => 'e10a0d2de73bfa9a56fadbac023c6ac16022ced40c0444ab6ffed1b5d7ea7358', )) ->values(array( - 'filename' => 'sites/all/modules/views/includes/handlers.inc', - 'hash' => '19f44ee61fcdbf5495feb6be676e7ee8cd51ff374c66528a76cc11509f3974ae', + 'filename' => 'sites/all/modules/paragraphs/migrate/destinations/MigrateDestinationParagraphsItem.inc', + 'hash' => '2f1b8a7459fad365ca78a74e1c5fb64f9127a1877d015b01ab690edee661a351', )) ->values(array( - 'filename' => 'sites/all/modules/views/includes/plugins.inc', - 'hash' => '11c03b1c69be7e9969ec0665b07ddfe170c9505f8d4e862cb27f1232a2a4240e', + 'filename' => 'sites/all/modules/paragraphs/migrate/fields/ParagraphsMigrateParagraphsFieldHandler.inc', + 'hash' => '6888f3b438dcf7058d4509d3ae597b1b98500816810e6365d8b6db6fb1628545', )) ->values(array( - 'filename' => 'sites/all/modules/views/includes/view.inc', - 'hash' => '99e60c217d6dc781ec48ae8fc841e636eee31d977936e1980a34eca28734ad2e', + 'filename' => 'sites/all/modules/paragraphs/ParagraphsItemEntity.inc', + 'hash' => 'f3372b5a65706e7bd37db1ca46a497576e1a2e149a19a4da8ef450c234977ee7', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/aggregator/views_handler_argument_aggregator_category_cid.inc', - 'hash' => '97acf41d6694fd4451909c18b118f482db9f39aa4b8c5cfa75d044d410c46012', + 'filename' => 'sites/all/modules/paragraphs/ParagraphsItemMetadataController.inc', + 'hash' => 'bcd66f4c19bb15f48a7621034c7fa4f59fa1388eb6be534b7f0ef5c828f75293', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/aggregator/views_handler_argument_aggregator_fid.inc', - 'hash' => 'c37def91d635b01db36809141d147d263cc910895e11c05e73d703e86b39fd43', + 'filename' => 'sites/all/modules/paragraphs/tests/paragraphs.test', + 'hash' => 'c7563dd19ec8cedd5a0d77d2b14ce09b937059cc8feed26aec0e6ab818c95681', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/aggregator/views_handler_argument_aggregator_iid.inc', - 'hash' => '344f2806344d9c6356f2e19d297522f53bab7a4cebdf23c76d04c85c9e0a0d8e', + 'filename' => 'sites/all/modules/paragraphs/views/paragraphs_handler_relationship.inc', + 'hash' => '83e5b2b2deb9f05c13cf9837837039f920ee42533e263a41773a717af50c6d3a', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/aggregator/views_handler_field_aggregator_category.inc', - 'hash' => '252b30b832d8c0097d6878f5d56beecfc8cc1fc7cc8b5a4670d8d95a80b4f17d', + 'filename' => 'sites/all/modules/phone/phone.migrate.inc', + 'hash' => 'd7422e56ab02e4b55b2fdb9ea185a876fd6164446b0c4f66b5c0e70071d7e708', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/aggregator/views_handler_field_aggregator_title_link.inc', - 'hash' => '1bb18967b11f2f4de62075d27e483f175b5e3431622c2e5e8292afcd000beadf', + 'filename' => 'sites/all/modules/phone/tests/phone.au.test', + 'hash' => '0b920ca34f5255c6d49b0138b9bd58fa9e430fa11e33e93ab3cd248c2b4ad0fe', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/aggregator/views_handler_field_aggregator_xss.inc', - 'hash' => '2db2e1f0500e0a252c7367e6a92906870b3247f9d424f999c381368ee2c76597', + 'filename' => 'sites/all/modules/phone/tests/phone.be.test', + 'hash' => '311af0608d86bb10a02e393a2d9e541a409b081088f353eacee6ceb864130a98', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/aggregator/views_handler_filter_aggregator_category_cid.inc', - 'hash' => '7c7c0690c836ac1b75bca3433aca587b79aec3e7d072ce97dc9b33a35780ad4f', + 'filename' => 'sites/all/modules/phone/tests/phone.br.test', + 'hash' => '93bad68cd3e4560cc05914aeaee8bb9056591b46917d7295f9a3d4feca89e739', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/aggregator/views_plugin_row_aggregator_rss.inc', - 'hash' => '591e5bb7272e389fe5fc2b563f8887dbc3674811ffbb41333d36a7a9a1859e56', + 'filename' => 'sites/all/modules/phone/tests/phone.ca.test', + 'hash' => '6f425a856adb70fb250fc8823bc010afab781839695c9ecb5f7be38bf7710348', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/book/views_plugin_argument_default_book_root.inc', - 'hash' => 'bd3bd9496bf519b1688cf39396f3afa495a29c8190a3e173c0740f4d20606a53', + 'filename' => 'sites/all/modules/phone/tests/phone.ch.test', + 'hash' => 'ab8fa50c459d6e11d773c597320859d07bfdbf5ab7715bd505cff025980b7070', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_argument_comment_user_uid.inc', - 'hash' => '5e29f7523010a074bda7c619b24c5d31e0c060cdbe47136b8b16b2f198ed4b4a', + 'filename' => 'sites/all/modules/phone/tests/phone.cl.test', + 'hash' => '2cc581962d4367c476b2010f10de7acb3bc9ab52177bb52694e28a88d54d48a1', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_comment.inc', - 'hash' => 'a126d690cc5bf8491cb4bee4cc8237b90e86768bebbbecb8a9409a3c1e00fa9e', + 'filename' => 'sites/all/modules/phone/tests/phone.cn.test', + 'hash' => 'e36269835b0d5673684887cf33831a254e7b2110b98dc35a60102246901c244d', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_comment_depth.inc', - 'hash' => '1dc353a31d3c71c67d0b3e6854d9e767e421010fbbf6a8b04a14035e5f7c097f', + 'filename' => 'sites/all/modules/phone/tests/phone.cr.test', + 'hash' => '04c3aab79d2c75104d0ce9a9a84f84443303289bafce79b43f06d90cbc4c78b0', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_comment_link.inc', - 'hash' => '1f7382f7cb05c65a7cba44e4cd58022bbc6ce5597b96228d1891d7720510bf0e', + 'filename' => 'sites/all/modules/phone/tests/phone.cs.test', + 'hash' => '3e90d66bedebd4c66b46526fb4877340b6b0c2d4bcd7557e477b5b9c52727d9a', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_comment_link_approve.inc', - 'hash' => 'f6db8a0b4dd9fffba9d8ecb7b7363ba99d3b2dc7176436a0a6dd7a93195a5789', + 'filename' => 'sites/all/modules/phone/tests/phone.eg.test', + 'hash' => 'f0568e235c65fc625cc2eca359c0062771df5755460cb6003ae8c5197aca67f9', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_comment_link_delete.inc', - 'hash' => '905a4cb1f91a4b40ee1ca1d1ded9958ae18e82286589fec100adb676769b1fe9', + 'filename' => 'sites/all/modules/phone/tests/phone.es.test', + 'hash' => '8a8bfa8827e42a79d89720cec22c9246ff463cc8bae89f78394b61fbd676614e', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_comment_link_edit.inc', - 'hash' => '8139c932cde20f366a3019111c054b1ed00dbc0c40634b91239b400243b7723a', + 'filename' => 'sites/all/modules/phone/tests/phone.fr.test', + 'hash' => '76dc4de9eb4547e3a27298a93fb9949f5d354b3464ec268df9da496783093115', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_comment_link_reply.inc', - 'hash' => '8807884efb840407696c909b9d5d07f60bde9d7f385a59eca214178ce5369558', + 'filename' => 'sites/all/modules/phone/tests/phone.hu.test', + 'hash' => '57aee8805078b0281c4722e80d721fbcc6dec739b7258bc9843139fd2652471f', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_comment_node_link.inc', - 'hash' => '64746ff2b80a5f8e83b996a325c3d5c8393934c331510b93d5815ea11c1db162', + 'filename' => 'sites/all/modules/phone/tests/phone.il.test', + 'hash' => '5dba7aa580c087df4d0d9e8a9d8a00a0203a3217cce2e14a26fc18371964f5d5', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_comment_username.inc', - 'hash' => '1ce3fa61b3933a3e15466760e4c5d4a85407ba4c8753422b766fc04395fa4d02', + 'filename' => 'sites/all/modules/phone/tests/phone.int.test', + 'hash' => '99b33e5ec1d232106ce3be0adf8fb7a9e57ee2bb82536408ec60978561ac0a5f', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_last_comment_timestamp.inc', - 'hash' => '30c55ec6d55bf4928b757f2a236aab56d34a8e6955944a1471e9d7b7aed057c0', + 'filename' => 'sites/all/modules/phone/tests/phone.it.test', + 'hash' => 'dc80b84ed335e2989a36b3ffc7d670ff4106daa665e26df550c0dcf96915c056', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_ncs_last_comment_name.inc', - 'hash' => '82025f3ad22b63abc57172d358b3f975006109802f4a5ecac93ce3785c505cae', + 'filename' => 'sites/all/modules/phone/tests/phone.jo.test', + 'hash' => '0c30dc4baccba8ddb4f2c55cfc2b79ceb736769bdc664e6189d1b5e7cd348e00', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_ncs_last_updated.inc', - 'hash' => 'facfbc5defd843f4dfb60e645f09a784234d87876628c8de98d2dfa6bb98a895', + 'filename' => 'sites/all/modules/phone/tests/phone.nl.test', + 'hash' => '33431240ce625582f22a5ae98066efd7ac57176a1d3e18a2a0f702ea43418637', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_node_comment.inc', - 'hash' => '0cf9e8fb416dca35c3b9df3125eb3a8585f798c6a8f8d0e1034b1fccb5cec38b', + 'filename' => 'sites/all/modules/phone/tests/phone.nz.test', + 'hash' => '3a4cbb625f3c8de015b99ed1bc712f4cd41a3819ac9aea75170ad202297e46bc', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_field_node_new_comments.inc', - 'hash' => 'e0830d1f70dea473e46ab2b86e380ef741b2907f033777889f812f46989f2ff7', + 'filename' => 'sites/all/modules/phone/tests/phone.pa.test', + 'hash' => 'd8fb12e636cd5028ab15e35f61d01d2d15e9e22f40724bf57f5958d6261720b7', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_filter_comment_user_uid.inc', - 'hash' => 'f526c2c4153b28d7b144054828261ba7b26566169350477cd4fb3f5b5f280719', + 'filename' => 'sites/all/modules/phone/tests/phone.ph.test', + 'hash' => '56727122712ea07bdded9df15449ffe1e605c5e64cebf599876a49e3b0bbb616', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_filter_ncs_last_updated.inc', - 'hash' => '9369675dfee24891fe19bddf85a847c275b8127949c55112ae5cb4d422977d24', + 'filename' => 'sites/all/modules/phone/tests/phone.pk.test', + 'hash' => 'd061a6aa870b6a2607cfdb074d5d9ed5719e02fa298f69d38349b742335d8bb8', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_filter_node_comment.inc', - 'hash' => '70706c47bad9180c2426005da6c178ed8d27b75b28cb797ca2a1925a96dcef09', + 'filename' => 'sites/all/modules/phone/tests/phone.pl.test', + 'hash' => 'b9a2079d3d93909513d1c7b10054fddcea114529ac3f0d0cbbc674c547476180', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_sort_comment_thread.inc', - 'hash' => 'a64bc780cba372bd408f08a5ea9289cdf3d40562bdf2f7320657be9a9f6c7882', + 'filename' => 'sites/all/modules/phone/tests/phone.ru.test', + 'hash' => 'f2f8c62e441ca34552754337f63ac7db81dceff3ebb984bfad3ad0ad19ca2072', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_sort_ncs_last_comment_name.inc', - 'hash' => '9f039e8b8a046c058fda620804e3503be7b3e7e3e4119f0b015ccbae0922635b', + 'filename' => 'sites/all/modules/phone/tests/phone.se.test', + 'hash' => '7cb5c273d1f5d19533130da5417a4208c31f7ef8fd4d336972af202e64f05fd9', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/comment/views_handler_sort_ncs_last_updated.inc', - 'hash' => 'fa8b9c3614ad5838aa40194940d9dc6935175a16e141ac919f40e74a7428c4e3', + 'filename' => 'sites/all/modules/phone/tests/phone.sg.test', + 'hash' => 'f76557ba04ad21f81b010f1cd6e649b7fa9eaf1df6acbcd7ac1c7fa60945f29e', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/comment/views_plugin_row_comment_rss.inc', - 'hash' => '96f651234e30a3aff805ae9a524c99813a286bf75b5a9fd8da2d7d4fbec50810', + 'filename' => 'sites/all/modules/phone/tests/phone.ua.test', + 'hash' => '7441058b561f294da5dca24a367c5cb37bd043c4cb4a55606240d1843a244e56', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/comment/views_plugin_row_comment_view.inc', - 'hash' => '82d7296fa3109ca170f66f6f3b5e1209af98a9519bb5e4a2c42d9fc0e95d7078', + 'filename' => 'sites/all/modules/phone/tests/phone.uk.test', + 'hash' => 'a42cde9cb4ffbdab1974f56bbdf1f6fe9987f1a5d5713d11c0d3cdc6e0cb34c3', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/contact/views_handler_field_contact_link.inc', - 'hash' => 'ec783b215a06c89c0933107a580c144051118305dd0129ac28a7fea5f95a8fd5', + 'filename' => 'sites/all/modules/phone/tests/phone.za.test', + 'hash' => 'c5491ab663972aa23ae2f917a0fc605a6136f02e1b207d3fc650ed1f251359ee', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/field/views_handler_argument_field_list.inc', - 'hash' => 'eff5152a2c120425a2a75fe7dbcb49ed86e5d48392b0f45b49c2e7abee9fa72b', + 'filename' => 'sites/all/modules/variable/variable.test', + 'hash' => 'a6614814c24aee5ae1d2f2f8c23c08138466c41a82e57ee670e070d7cdd6e4b2', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/field/views_handler_argument_field_list_string.inc', - 'hash' => '534af91d92da7a622580ab8b262f9ef76241671a5185f30ba81898806c7b7f15', + 'filename' => 'sites/all/modules/variable/variable_store/variable_store.test', + 'hash' => '1546243a6be757de0fd7f9fe1428152fb0e53a91453c53c72aebb06f6cef4311', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/field/views_handler_field_field.inc', - 'hash' => '94ff7382dba773fc637c777e20b810ae7d4aa4936fb0bc067e6a3824ba929d2d', + 'filename' => 'sites/all/modules/views/tests/comment/views_handler_argument_comment_user_uid.test', + 'hash' => 'b8b417ef0e05806a88bd7d5e2f7dcb41339fbf5b66f39311defc9fb65476d561', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/field/views_handler_filter_field_list.inc', - 'hash' => '3b55cd0a14453c95ebd534507ab842a8505496d0b7e4c7fcd61c186034c7322d', + 'filename' => 'sites/all/modules/views/tests/comment/views_handler_filter_comment_user_uid.test', + 'hash' => '347c6ffd4383706dbde844235aaf31cff44a22e95d2e6d8ef4da34a41b70edd1', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/field/views_handler_filter_field_list_boolean.inc', - 'hash' => 'd33035e141ca686b3f18da1e97adaa1ff8e5d1db266340d3030e873a744685e2', + 'filename' => 'sites/all/modules/views/tests/field/views_fieldapi.test', + 'hash' => '53e6d57c2d1d6cd0cd92e15ca4077ba532214daf41e9c7c0f940c7c8dbd86a66', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/field/views_handler_relationship_entity_reverse.inc', - 'hash' => '060035c5430c81671e4541bcf7de833c8a1eb3fa3f3a9db94dd3cebfa4299ef1', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handlers.test', + 'hash' => 'f94dd3c4ba0bb1ffbf42704f600b94a808c1202a9ca26e7bdef8e7921c2724e9', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/filter/views_handler_field_filter_format_name.inc', - 'hash' => 'fc3f074ffb39822182783a8d5cf2b89ffcc097ccbb2ed15818a72a99e3a18468', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_area_text.test', + 'hash' => 'af74a74a3357567b844606add76d7ca1271317778dd7bd245a216cf963c738b4', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/locale/views_handler_argument_locale_group.inc', - 'hash' => 'c8545411096da40f48eef8ec59391f4729c884079482e3e5b3cdd5578a1f9ad7', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_argument_null.test', + 'hash' => '1d174e1f467b905d67217bd755100d78ffeca4aa4ada5c4be40270cd6d30b721', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/locale/views_handler_argument_locale_language.inc', - 'hash' => 'a1b6505bb26e4b3abce543b9097cd0a7b8cddf00bf1e49fbba86febebb0f4486', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_argument_string.test', + 'hash' => '3d0213af0041146abb61dcdc750869ed773d0ac80cfa74ffbadfdd03b1f11c52', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/locale/views_handler_field_locale_group.inc', - 'hash' => '5b62afe18f92ee4a5fb49eb0995e65b4744bbe3b9c24ffe8f6c21f3191c04afc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field.test', + 'hash' => 'af552bf825ab77486b3d0d156779b7c4806ce5a983c6116ad68b633daf9bb927', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/locale/views_handler_field_locale_language.inc', - 'hash' => '0cc08bd2d42e07f26e7acc92642b36f0ac62bf23ee9ba3fd21e6cab9a80e9f72', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_boolean.test', + 'hash' => 'd334b12a850f36b41fe89ab30a9d758fd3ce434286bd136404344b7b288460ae', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/locale/views_handler_field_locale_link_edit.inc', - 'hash' => '3883d3f37030d6d8e397e79ccb99ec3cb715ba7a789510f4b79b7515e314e7ae', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_counter.test', + 'hash' => '75b31942adf06b107f5ffd3c97545fde8cd1040b1d00f682e3c7c1320026e26c', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/locale/views_handler_field_node_language.inc', - 'hash' => 'a6ccdb6c1c4df3b4fd31b714f5aa4ac99771ffce63439d6c5de6c0ae2f09a2c1', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_custom.test', + 'hash' => '1446bc3d5a6b1180a79edfa46a5268dbf7f089836aa3bc45df00ddaff9dd0ce1', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/locale/views_handler_filter_locale_group.inc', - 'hash' => '40fbc041bab64f336f59d1e0593f184b879b2a0c9e2a6050709bdc54cceb2716', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_date.test', + 'hash' => '02df76a93a42d6131957748b1e69254835f9e44a47dafca1e833914e6b7f88a0', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/locale/views_handler_filter_locale_language.inc', - 'hash' => '3433893d988aad36b918dd6214f5258b701506bc9c0c6a72fd854a036b635e20', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_file_extension.test', + 'hash' => '606ca091ad7e5709f7653324aaa021484d1f0e07e8639b3f0f7c26d3cfdee53c', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/locale/views_handler_filter_locale_version.inc', - 'hash' => '9337ea5216784ffc67a0aa45c946e65ad11fc40849189cc70911a81366b78620', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_file_size.test', + 'hash' => '49184db68af398a54e81c8a76261acd861da8fd7846b9d51dcf476d61396bfb9', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/locale/views_handler_filter_node_language.inc', - 'hash' => 'd7edea3f35891cc76aa3bb185b9c1404378623ea7fd214c2a1f0d824df12779a', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_math.test', + 'hash' => '6e39e4f782e6b36151ceafb41a5509f7c661be79b393b24f6f5496d724535887', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/locale/views_handler_sort_node_language.inc', - 'hash' => 'b7b70efcf7de1f4dee4722ac8aa16031f17d62e60b1b5772f9985cadf91e4415', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_url.test', + 'hash' => 'b41f762a71594b438a2e60a79c8260ba54e6305635725b0747e29f0d3ffe08c9', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_argument_dates_various.inc', - 'hash' => '80ee0e32fd48de1fa9d91645f27f7f26e8700acd3b1120a6d414bb1a794f6d0e', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_xss.test', + 'hash' => 'f129ee16c03f84673e33990cbb2da5aa88c362f46e9ba1620b2a842ffd1c9cd2', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_argument_node_language.inc', - 'hash' => '7ee3ba02bddaa6aeef9961cdf6af7bb386fc2b12529f095b28520bb98af51775', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_combine.test', + 'hash' => '05842d83a11822afe7d566835f5db9f0f94fdb27ddfc388d38138767bdf36f8b', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_argument_node_nid.inc', - 'hash' => '11c5b62413ffd1b2c66d4b60a2fe21cf6eb839ae40d4ef81c7a938c5be3e30de', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_date.test', + 'hash' => 'ad2ca901c6a4ac3a82fc349a33826f043c6c80f773f40374be2e95acb39491e3', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_argument_node_type.inc', - 'hash' => '9e21b4cc4ae861f58c804ea7e2c17fbc5dd2a7938b9abfeb54437b531fc95e6e', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_equality.test', + 'hash' => 'c88f21c9cbf1aae83393b26616908f8020c18fe378d76256c7ba192df2ec17af', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_argument_node_uid_revision.inc', - 'hash' => '675c99f8da9748ac507e202f546914bee3ed4065f6ce83a23a2aaafdaefd084e', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_in_operator.test', + 'hash' => '89420a4071677232e0eb82b184b37b818a82bdb2ff90a8b21293f9ecb21808bf', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_argument_node_vid.inc', - 'hash' => '7e5da5594a336c1d0f4cf080ab3fcd690e0de1ee6b5e1830b5fb76a46bced19c', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_numeric.test', + 'hash' => '35ac7a34e696b979e86ef7209b6697098d9abe218e30a02cc4fe39fb11f2a852', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_field_history_user_timestamp.inc', - 'hash' => '7d6d9c8273d317ab908d4873a32086dbd5f78a2b2d07b7ed79975841a2cadea6', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_string.test', + 'hash' => 'b7d090780748faad478e619fd55673d746d4a0cf343d9e40ea96881324c34cbd', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_field_node.inc', - 'hash' => '99a0ef52b68e8913eb3563d5c47097c09e46c6493fcb006f383c6f6798edb7fc', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_sort.test', + 'hash' => 'f4ff79e6bc54e83c4eb2777811f33702b7e9fe7416ef70ae00d100fa54d44fec', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_field_node_link.inc', - 'hash' => '26d8309a3a9140682d7d90e4d16ff664a3d7ce662af6ccbf75dc4c493515d7d9', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_sort_date.test', + 'hash' => 'f548584d7c6a71cabd3ce07e04053a38df3f3e1685210ce8114238fd05344c10', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_field_node_link_delete.inc', - 'hash' => '3eeed8c9ffc088ee28b8ffaa5e2b084db24284acc4d1b2e69f90c96cc889016d', + 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_sort_random.test', + 'hash' => '4fdba9bf05a26720ffa97e7a37da65ddc9044bd2832f8c89007b82feb062f182', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_field_node_link_edit.inc', - 'hash' => '28f8c3b7d3d60c31fec3cdf81c84cfbb20f492220457694a0e150c3ddee030c0', + 'filename' => 'sites/all/modules/views/tests/node/views_node_revision_relations.test', + 'hash' => '9467497a6d693615b48c8f57611a850002317bcb091b926d2efbbe56a4e61480', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_field_node_path.inc', - 'hash' => 'f392fde21e434fd40fc672546ef684780179d91827350ba9c348bb1cc5924727', + 'filename' => 'sites/all/modules/views/tests/plugins/views_plugin_display.test', + 'hash' => '4a6b136543a60999604c54125fa9d4f5aa61a5dcc71e2133d89325d81bc0fc2d', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_field_node_revision.inc', - 'hash' => '3f510d58acaa8f844292b86c388cb1e78eac8c732bb5e7c9e92439c425710240', + 'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style.test', + 'hash' => '92d9a02f87f07d091999b961045b1dd654165059d8d1931b5c2ea1d88d0b439f', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_field_node_revision_link.inc', - 'hash' => 'ace72f296cf4a4da4b7dd7b303532aebf93b6b1c18a5d30b51b65738475e3889', + 'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style_base.test', + 'hash' => '54fb7816d18416d8b0db67e9f55aa2aa50ac204eb9311be14b6700b7d7a95ae7', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_field_node_revision_link_delete.inc', - 'hash' => '0a36602f080c4ef2bb5cb7dbddc5533deab7743c2fbf3bd88b9e478432cac7fb', + 'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style_jump_menu.test', + 'hash' => 'b88baa8aebe183943a6e4cf2df314fef13ac41b5844cd5fa4aa91557dd624895', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_field_node_revision_link_revert.inc', - 'hash' => '80ddc7f0c001fde9af491bb22d6044b85324fe90bea611fc3822408fd60008fa', + 'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style_mapping.test', + 'hash' => 'a4e68bc8cfbeff4a1d9b8085fd115bfe7a8c4b84c049573fa0409b0dc8c2f053', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_field_node_type.inc', - 'hash' => 'f8f39c6f238f837270d1b2e42e67bf9ab400a37fe24246c8b86dfcfacc1c4fd9', + 'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style_unformatted.test', + 'hash' => '033ca29d41af47cd7bd12d50fea6c956dde247202ebda9df7f637111481bb51d', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_field_node_version_count.inc', - 'hash' => '1298f7f7ee4b6e6e2957b266fbb7c63e102b9d7e9ccca8d5a86592736bce9493', + 'filename' => 'sites/all/modules/views/tests/taxonomy/views_handler_relationship_node_term_data.test', + 'hash' => '6074f5c7ae63225ea0cd26626ace6c017740e226f4d3c234e39869c31308223d', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_filter_history_user_timestamp.inc', - 'hash' => '2970f270e071cad079880e9598d9f7b71d4dd2a2a42a31cd4489029a3cafe158', + 'filename' => 'sites/all/modules/views/tests/user/views_handler_field_user_name.test', + 'hash' => '69641b6da26d8daee9a2ceb2d0df56668bf09b86db1d4071c275b6e8d0885f9e', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_filter_node_access.inc', - 'hash' => 'ca625167c8928f1c5b354c27c120ed9b19c1df665dc3b02ed6d96b58194d6243', + 'filename' => 'sites/all/modules/views/tests/user/views_user.test', + 'hash' => 'fbb63b42a0b7051bd4d33cf36841f39d7cc13a63b0554eca431b2a08c19facae', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_filter_node_status.inc', - 'hash' => 'f7099a59d3f237f2870ecb6b0b5e49dd9d785b1085e94baf55687251e7f3231b', + 'filename' => 'sites/all/modules/views/tests/user/views_user_argument_default.test', + 'hash' => '6423f2db7673763991b1fd0c452a7d84413c7dd888ca6c95545fadc531cfaaf4', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_filter_node_type.inc', - 'hash' => '6842082e7b6e131d6e002e627e6b4490b93ca6ffe7fc0b158d31843217c8c929', + 'filename' => 'sites/all/modules/views/tests/user/views_user_argument_validate.test', + 'hash' => 'c88c9e5d162958f8924849758486a0d83822ada06088f5cf71bfbe76932d8d84', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_filter_node_uid_revision.inc', - 'hash' => '2cfe9ba95e5ea8c240a57cfa1bed58385cbfed0c7f35e3d8c4da6d873b5a61fa', + 'filename' => 'sites/all/modules/views/tests/views_access.test', + 'hash' => 'f8b9d04b43c09a67ec722290a30408c1df8c163cf6e5863b41468bb4e381ee6f', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_filter_node_version_count.inc', - 'hash' => 'de61f3547604e5905486cdae5f5e94d1a45bdac4d3c43157193dd6fe0dd6473c', + 'filename' => 'sites/all/modules/views/tests/views_ajax.test', + 'hash' => '3d0675fcbf3766a902cce6ecc240eee90abb516055c6e48f4ce996a245aa6990', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_handler_sort_node_version_count.inc', - 'hash' => 'ce2a392319ebed3dbb2b660f3d6f4c6690b1cd46cf6b1c01802f12158114c4c4', + 'filename' => 'sites/all/modules/views/tests/views_analyze.test', + 'hash' => '5548e36c99bb626209d63e5cddbc31f49ad83865c983d2662c6826b328d24ffb', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_plugin_argument_default_node.inc', - 'hash' => '7fb79c8f4adb9bcef7c7da4bf4046fe3490e16c244f6ab96fdca97a8567315ff', + 'filename' => 'sites/all/modules/views/tests/views_argument_default.test', + 'hash' => '5950937aae4608bba5b86f366ef3a56cc6518bbccfeaeacda79fa13246d220e4', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_plugin_argument_validate_node.inc', - 'hash' => 'f10d3f4081eed5ca32c41b67e9a0e6f35b2f8ba2cd7897230cb5a680b410a6de', + 'filename' => 'sites/all/modules/views/tests/views_argument_validator.test', + 'hash' => '31f8f49946c8aa3b03d6d9a2281bdfb11c54071b28e83fb3e827ca6ff5e38c88', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_plugin_row_node_rss.inc', - 'hash' => '1e55454684102fad08c947695c370a890a22ea22c3c9aca3207f2299aa3daf7e', + 'filename' => 'sites/all/modules/views/tests/views_basic.test', + 'hash' => '655bd33983f84bbea68a3f24bfab545d2c02f36a478566edf35a98a58ff0c6cf', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/node/views_plugin_row_node_view.inc', - 'hash' => 'da4f4c0394cda00feda8a755535cebd71e29575f026c700e9f9f8a19a73525cb', + 'filename' => 'sites/all/modules/views/tests/views_cache.test', + 'hash' => '4e9b8ae1d9e72a9eaee95f5083004316d2199617f7d6c8f4bea40e99d17efcd8', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/profile/views_handler_field_profile_date.inc', - 'hash' => 'e206509ef8b592e602e005f6e3fa5ba8ef7222bdb5bacd0aaeea898c4001e9b0', + 'filename' => 'sites/all/modules/views/tests/views_exposed_form.test', + 'hash' => '6962c7ed8a38030ec1cfa94485de07ceb1f9393216985bd8bfecac768f6c0950', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/profile/views_handler_field_profile_list.inc', - 'hash' => 'da5fa527ab4bb6a1ff44cc2f9cec91cf3b094670f9e6e3884e1fedce714afe6f', + 'filename' => 'sites/all/modules/views/tests/views_glossary.test', + 'hash' => '118d50177a68a6f88e3727e10f8bcc6f95176282cc42fbd604458eeb932a36e8', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/profile/views_handler_filter_profile_selection.inc', - 'hash' => '758dea53760a1b655986c33d21345ac396ad41d10ddf39dd16bc7d8c68e72da7', + 'filename' => 'sites/all/modules/views/tests/views_groupby.test', + 'hash' => 'f26ad6857dc4821a4a0780642bda05fcb69ed506968e521f759bb28be4080143', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/search/views_handler_argument_search.inc', - 'hash' => '9de18defd5d9320b6333dc496627657be1dd8ccb145dfc136a80f1bcee6e1f55', + 'filename' => 'sites/all/modules/views/tests/views_handlers.test', + 'hash' => 'a696e3d6b1748da03a04ac532f403700d07c920b9c405c628a6c94ea6764f501', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/search/views_handler_field_search_score.inc', - 'hash' => '711af637c864b775672d9f6203fc2da0902ed17404181d1117b400012aac366f', + 'filename' => 'sites/all/modules/views/tests/views_module.test', + 'hash' => '5137e27449639d3e02f1b27206ef3ff96957546333b517318dfe8f58239dc860', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/search/views_handler_filter_search.inc', - 'hash' => 'aa2ae23905b84b77ee6042f8f26542eedd7422bdd7518255a289db7da0f6400b', + 'filename' => 'sites/all/modules/views/tests/views_pager.test', + 'hash' => '6f448c8c13c5177afb35103119d6281958a2d6dbdfb96ae5f4ee77cb3b44adc5', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/search/views_handler_sort_search_score.inc', - 'hash' => '9d23dd6c464d486266749106caec1d10cec2da1cc3ae5f907f39056c46badbdf', + 'filename' => 'sites/all/modules/views/tests/views_query.test', + 'hash' => 'f8cb1649e43c8a2b036fec742e86b8eb9c2c4c095a4c4e7a7c3ca13c6ce8e6e6', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/search/views_plugin_row_search_view.inc', - 'hash' => 'bc25864154d4df0a58bc1ac1148581c76df36267a1d18f8caee2e3e1233c8286', + 'filename' => 'sites/all/modules/views/tests/views_translatable.test', + 'hash' => '6899c7b09ab72c262480cf78d200ecddfb683e8f2495438a55b35ae0e103a1b3', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/statistics/views_handler_field_accesslog_path.inc', - 'hash' => '7843e5f4b35f4322d673b5646e840c274f7d747f2c60c4d4e9c47e282e6db37d', + 'filename' => 'sites/all/modules/views/tests/views_ui.test', + 'hash' => 'f9687a363d7cc2828739583e3eedeb68c99acd505ff4e3036c806a42b93a2688', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/statistics/views_handler_field_node_counter_timestamp.inc', - 'hash' => 'a1de51345d268dc0f080104ff9ae4c9ca1f7a2dd45560a59630b2bb03bdc54c9', + 'filename' => 'sites/all/modules/views/tests/views_upgrade.test', + 'hash' => 'c48bd74b85809dd78d963e525e38f3b6dd7e12aa249f73bd6a20247a40d6713a', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/statistics/views_handler_field_statistics_numeric.inc', - 'hash' => 'b46b6b14e14631941ac2dc9baf0b1290c148f42801f05cb419f84a2091d03e40', + 'filename' => 'sites/all/modules/views/tests/views_view.test', + 'hash' => 'cb4c8b7f14de8836d4c6705161547cbf6383de649642972d61c8dc18048265d5', )) -->values(array( - 'filename' => 'sites/all/modules/views/modules/system/views_handler_argument_file_fid.inc', - 'hash' => 'e9bf1fdf12f210f0a77774381b670c77ee88e7789971ce732b254f6be5a0e451', +->execute(); + +$connection->schema()->createTable('role', array( + 'fields' => array( + 'rid' => array( + 'type' => 'serial', + 'not null' => TRUE, + 'size' => 'normal', + 'unsigned' => TRUE, + ), + 'name' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '64', + 'default' => '', + ), + 'weight' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + ), + ), + 'primary key' => array( + 'rid', + ), + 'mysql_character_set' => 'utf8', +)); + +$connection->insert('role') +->fields(array( + 'rid', + 'name', + 'weight', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/system/views_handler_field_file.inc', - 'hash' => '0fff4adb471c0c164a78f507b035a68d41f404ab10535f06f6c11206f39a7681', + 'rid' => '1', + 'name' => 'anonymous user', + 'weight' => '0', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/system/views_handler_field_file_extension.inc', - 'hash' => '768aa56198c7e82327391084f5dd27d7efdb8179ff6b8c941f892fe30469a0da', + 'rid' => '2', + 'name' => 'authenticated user', + 'weight' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/system/views_handler_field_file_filemime.inc', - 'hash' => 'bdd7f1255f3000f7f2900341d4c4ca378244b96390ef52a30db2962d017b61a4', + 'rid' => '3', + 'name' => 'administrator', + 'weight' => '2', )) -->values(array( - 'filename' => 'sites/all/modules/views/modules/system/views_handler_field_file_status.inc', - 'hash' => 'bfb0b9d796a4dbf95c4bb7a3deef7724bcda9e0d9067939b74ec787da934f2b0', +->execute(); + +$connection->schema()->createTable('role_permission', array( + 'fields' => array( + 'rid' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'unsigned' => TRUE, + ), + 'permission' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '128', + 'default' => '', + ), + 'module' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '255', + 'default' => '', + ), + ), + 'primary key' => array( + 'rid', + 'permission', + ), + 'mysql_character_set' => 'utf8', +)); + +$connection->insert('role_permission') +->fields(array( + 'rid', + 'permission', + 'module', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/system/views_handler_field_file_uri.inc', - 'hash' => '350d7dde27ee97cb4279360374eb8633ce7fee115a109346bea85c2c4e3a68c2', + 'rid' => '3', + 'permission' => 'access administration pages', + 'module' => 'system', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/system/views_handler_filter_file_status.inc', - 'hash' => '9210a34795f9db36974525e718c91c03c28554da1199932791925d7c4a2f3b11', + 'rid' => '3', + 'permission' => 'access all views', + 'module' => 'views', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/system/views_handler_filter_system_type.inc', - 'hash' => 'd27513703a75c4d8af79b489266cf4102a36e350c3d90404dab24403ab637205', + 'rid' => '1', + 'permission' => 'access comments', + 'module' => 'comment', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_argument_taxonomy.inc', - 'hash' => '8962fa76f1e03316932468b0fd805817af94726beb82bf9f4786e0c709264662', + 'rid' => '2', + 'permission' => 'access comments', + 'module' => 'comment', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_argument_term_node_tid.inc', - 'hash' => 'e50f47ac64a93c2a43b6bd940119dee46b9f25f79f5d25a93fd0df7d707c93ab', + 'rid' => '3', + 'permission' => 'access comments', + 'module' => 'comment', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_argument_term_node_tid_depth.inc', - 'hash' => '5b2806fbad4a6cc104e733a3a0faf6eb1c19975930c67c4149fb3267976e0b7d', + 'rid' => '1', + 'permission' => 'access content', + 'module' => 'node', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_argument_term_node_tid_depth_join.inc', - 'hash' => 'ca667646f99645c00e6dfb7eb52e2f54faf848be41c99af5caf2201dcd56926b', + 'rid' => '2', + 'permission' => 'access content', + 'module' => 'node', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_argument_term_node_tid_depth_modifier.inc', - 'hash' => 'd85ebe68290239b25fc240451655b825325854e9707cf742fbd75de81e0f1aa7', + 'rid' => '3', + 'permission' => 'access content', + 'module' => 'node', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_argument_vocabulary_machine_name.inc', - 'hash' => '888647527bec3444b2d0a571a77900396d7c5e884bca04a2a3667a61f6377b5e', + 'rid' => '3', + 'permission' => 'access content overview', + 'module' => 'node', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_argument_vocabulary_vid.inc', - 'hash' => 'bf4be783ef6899f004f4dbd06c1bf2cd6dbc322678c825eec36bee81d667e81f', + 'rid' => '3', + 'permission' => 'access contextual links', + 'module' => 'contextual', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_field_taxonomy.inc', - 'hash' => 'fcafbbf79b79829eff211aa69580aa746b6d21a29416758bd43e25b5433f9a02', + 'rid' => '3', + 'permission' => 'access dashboard', + 'module' => 'dashboard', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_field_term_link_edit.inc', - 'hash' => '3da63f6feb1fa3312853b54585d761d037dac8841b4c06e01e35463c9098064a', + 'rid' => '3', + 'permission' => 'access news feeds', + 'module' => 'aggregator', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_field_term_node_tid.inc', - 'hash' => 'd7bb6f685b85de9f9cc87500b3e5a07493832f032d826e20700bbd1baa020a61', + 'rid' => '3', + 'permission' => 'access overlay', + 'module' => 'overlay', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_filter_term_node_tid.inc', - 'hash' => 'e4f0c9ac3292e083976eb16913b0c011939e729dbee479c0f9070656c492de7d', + 'rid' => '3', + 'permission' => 'access printer-friendly version', + 'module' => 'book', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_filter_term_node_tid_depth.inc', - 'hash' => '0b05ec052dcc03081e20338808dda17beb0bdf869b0cfc1375ca96cfb758c22a', + 'rid' => '3', + 'permission' => 'access site in maintenance mode', + 'module' => 'system', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_filter_term_node_tid_depth_join.inc', - 'hash' => '76d59ca83bdcb40493055829a9132646ed89478d7eb6e468db2d879e66e3794c', + 'rid' => '3', + 'permission' => 'access site reports', + 'module' => 'system', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_filter_vocabulary_machine_name.inc', - 'hash' => 'f1787b436b914cfe5ca6f2575d4c0595f4f496795711d6e8a116a39986728b0a', + 'rid' => '3', + 'permission' => 'access site-wide contact form', + 'module' => 'contact', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_filter_vocabulary_vid.inc', - 'hash' => '2a4d7dfbb6b795d217e2617595238f552bbea04b80217c933f1ee9978ceb7a0e', + 'rid' => '3', + 'permission' => 'access statistics', + 'module' => 'statistics', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_handler_relationship_node_term_data.inc', - 'hash' => '0bfd4c7882054565fb4ff52cf5697fe8cffca69d24717ebc37e6eacc14fe2312', + 'rid' => '3', + 'permission' => 'access toolbar', + 'module' => 'toolbar', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_plugin_argument_default_taxonomy_tid.inc', - 'hash' => 'fc4c3ace525162fc922de581af0710c7d92dc355e9630040a29a5c3a6ab7f9af', + 'rid' => '3', + 'permission' => 'access user contact forms', + 'module' => 'contact', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/taxonomy/views_plugin_argument_validate_taxonomy_term.inc', - 'hash' => '8a9d828e5e4387d831172a5c658fac8ef584d843be6c95e9b4e357af6c8f97de', + 'rid' => '3', + 'permission' => 'access user profiles', + 'module' => 'user', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/tracker/views_handler_argument_tracker_comment_user_uid.inc', - 'hash' => '91f5b7e9537942eee7a1798906f772cb9806eebfdc201c54fcdecf027cd71d0f', + 'rid' => '3', + 'permission' => 'add content to books', + 'module' => 'book', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/tracker/views_handler_filter_tracker_boolean_operator.inc', - 'hash' => '5efea908902052d68141017b6f29f17381e7bb8ebb6d88245471926f0a552207', + 'rid' => '3', + 'permission' => 'administer actions', + 'module' => 'system', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/tracker/views_handler_filter_tracker_comment_user_uid.inc', - 'hash' => '05e07f74d1e3978afd4c80a9b4bd72444872b84a44949a512f1d3040ce28421c', + 'rid' => '3', + 'permission' => 'administer blocks', + 'module' => 'block', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/translation/views_handler_argument_node_tnid.inc', - 'hash' => 'b0e3c87d3790cfa2e265f3d9700f2b3c2857932aa4b6e003e5d0114fc1b4d499', + 'rid' => '3', + 'permission' => 'administer book outlines', + 'module' => 'book', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/translation/views_handler_field_node_link_translate.inc', - 'hash' => '27a1ac81b50d4807d9a1eff4c5dc8929e4472f9d363f70f5391a794db73424a2', + 'rid' => '3', + 'permission' => 'administer comments', + 'module' => 'comment', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/translation/views_handler_field_node_translation_link.inc', - 'hash' => '641ff25cd317bb803de2ace4bd23e8c5f5af5ba4ac38aab7be2fdc58fbb9e86a', + 'rid' => '3', + 'permission' => 'administer contact forms', + 'module' => 'contact', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/translation/views_handler_filter_node_tnid.inc', - 'hash' => '0942fd793740e3aec032a1abb7132f53788a9cdeaeb3d931cac908ac30b73950', + 'rid' => '3', + 'permission' => 'administer content types', + 'module' => 'node', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/translation/views_handler_filter_node_tnid_child.inc', - 'hash' => '2a7a96d6caa4a99996549be0457bf40fa619731543a636d4573e55c190c64c7a', + 'rid' => '3', + 'permission' => 'administer field collections', + 'module' => 'field_collection', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/translation/views_handler_relationship_translation.inc', - 'hash' => '9137c85f5ca309d4ee0d3243c470563a5853f5926b8cbd3e843438d4308c9516', + 'rid' => '3', + 'permission' => 'administer filters', + 'module' => 'filter', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/user/views_handler_argument_users_roles_rid.inc', - 'hash' => '72da80e7f3c6980da024d86f37ba3721021cc1ead2cfcc1ab9b27897b7b5077a', + 'rid' => '3', + 'permission' => 'administer forums', + 'module' => 'forum', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/user/views_handler_argument_user_uid.inc', - 'hash' => 'a4af1bdc1ec5e40587c22c14e839980050baaa346c9d5934ef3f01794932cdc5', + 'rid' => '3', + 'permission' => 'administer image styles', + 'module' => 'image', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/user/views_handler_field_user.inc', - 'hash' => '1a2141524e43d86b52c7828fe6df61dd603ad433743c1139cfc5cc28ccb5ce74', + 'rid' => '3', + 'permission' => 'administer languages', + 'module' => 'locale', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/user/views_handler_field_user_language.inc', - 'hash' => '5a3da9e08ebeebbcb5abc6a9b16e0d380c5bb5c57b608afb540a3ca6dc1b2959', + 'rid' => '3', + 'permission' => 'administer menu', + 'module' => 'menu', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/user/views_handler_field_user_link.inc', - 'hash' => '5a0f35d5305a29816658385ecbd804bf43c92d4b3629fbe4bd9b8d0e9574b6ff', + 'rid' => '3', + 'permission' => 'administer modules', + 'module' => 'system', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/user/views_handler_field_user_link_cancel.inc', - 'hash' => 'b865881b15ce86b5a00f2892d3fc62f40131417527211275ff9a3d09d485750b', + 'rid' => '3', + 'permission' => 'administer news feeds', + 'module' => 'aggregator', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/user/views_handler_field_user_link_edit.inc', - 'hash' => '5d7c1155d9eccbd6b07c7446fe2b6a8848d6a500f508ac3779f16df56816f92b', + 'rid' => '3', + 'permission' => 'administer nodes', + 'module' => 'node', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/user/views_handler_field_user_mail.inc', - 'hash' => 'b7355b704f19322afb4876cea27744367e20098d4ed973e480bf2baf1ddd111c', + 'rid' => '3', + 'permission' => 'administer paragraphs bundles', + 'module' => 'paragraphs', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/user/views_handler_field_user_name.inc', - 'hash' => '3be11e273d7a0e8d1e1406b94ba651a6f545f9d48d94758495449b68487f4426', + 'rid' => '3', + 'permission' => 'administer permissions', + 'module' => 'user', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/user/views_handler_field_user_permissions.inc', - 'hash' => 'ec37373524bf23ae107adda6b825570c550e6654c0f0956409fc58df2c860903', + 'rid' => '3', + 'permission' => 'administer search', + 'module' => 'search', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/user/views_handler_field_user_picture.inc', - 'hash' => '0103d136a91fb219fd981801301b7df00adf90617900ded08efbf6d7df04959b', + 'rid' => '3', + 'permission' => 'administer shortcuts', + 'module' => 'shortcut', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/user/views_handler_field_user_roles.inc', - 'hash' => 'ab5068c4f01a05c6511f7d4b973a77650d5b5c481d4a73f63b7a9b1ef9c0d138', + 'rid' => '3', + 'permission' => 'administer site configuration', + 'module' => 'system', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/user/views_handler_filter_user_current.inc', - 'hash' => '7f70b7e3b3c10e75d95f54afc9c2fe2f1af9b7a9eab2308d2961b2588dc05845', + 'rid' => '3', + 'permission' => 'administer software updates', + 'module' => 'system', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/user/views_handler_filter_user_name.inc', - 'hash' => '5225e5d89051313e0e49ea833709bb4dc44369afeee970b0cfaf1818ababa22c', + 'rid' => '3', + 'permission' => 'administer statistics', + 'module' => 'statistics', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/user/views_handler_filter_user_permissions.inc', - 'hash' => 'a72e8d02c1075cebfee33e5b046460eef9193b2a7c1d47ff130457e4485b6fe5', + 'rid' => '3', + 'permission' => 'administer taxonomy', + 'module' => 'taxonomy', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/user/views_handler_filter_user_roles.inc', - 'hash' => '3bb69fbc4e352ce8e4840ec78bdd0f1f29e8709097ce6b29cc2fedd2c74c023e', + 'rid' => '3', + 'permission' => 'administer themes', + 'module' => 'system', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/user/views_plugin_argument_default_current_user.inc', - 'hash' => '11e729115350deffe46ebfe3a55281fa169a90e38a76c3a9d98f26c87900a22b', + 'rid' => '3', + 'permission' => 'administer unit tests', + 'module' => 'simpletest', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/user/views_plugin_argument_default_user.inc', - 'hash' => 'fe567f009a8e20f402f104b157fd44c04d6bd886a39b2f3355104f644f905419', + 'rid' => '3', + 'permission' => 'administer url aliases', + 'module' => 'path', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/user/views_plugin_argument_validate_user.inc', - 'hash' => '40d623b0a678fa7c292da92582f06449d0396341ab161069f0fe8d1086ab95da', + 'rid' => '3', + 'permission' => 'administer users', + 'module' => 'user', )) ->values(array( - 'filename' => 'sites/all/modules/views/modules/user/views_plugin_row_user_view.inc', - 'hash' => '6a6c1bfac677eb9ffd25870cd72939c903f2c92d6d18e3abc6c634ac153e5c2b', + 'rid' => '3', + 'permission' => 'administer views', + 'module' => 'views', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/export_ui/views_ui.class.php', - 'hash' => '8cd921da4fc00f0441808c6d521fa9fdfc753976244518a001a6354975eb6fe8', + 'rid' => '3', + 'permission' => 'block IP addresses', + 'module' => 'system', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_access.inc', - 'hash' => 'cc16bf7dc4c10eab382e948cfd91902ac1055514b627e3c50932376d3e3f1b91', + 'rid' => '3', + 'permission' => 'bypass node access', + 'module' => 'node', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_access_none.inc', - 'hash' => '8e0a6b706c60abf63ab84d8624567ca12a5b80ad293e4334790065fbe6fa14d4', + 'rid' => '3', + 'permission' => 'cancel account', + 'module' => 'user', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_access_perm.inc', - 'hash' => '1807a9c91485a5abd3fb2f6590ed4bc185fdabe308db37b169be8abdfc30cab2', + 'rid' => '3', + 'permission' => 'change own username', + 'module' => 'user', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_access_role.inc', - 'hash' => '8784836ea87ec6b0974125ed95ed6bbf6fdf91624f496f22c28e9229c695068d', + 'rid' => '3', + 'permission' => 'create article content', + 'module' => 'node', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_argument_default.inc', - 'hash' => '43e593760f0e8f031f2e7b861385caa5e39f37de400fe4595925288c78f52f23', + 'rid' => '3', + 'permission' => 'create new books', + 'module' => 'book', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_argument_default_fixed.inc', - 'hash' => 'daaa3b59b54cbb11e411e010303f67a51348bb97a4e06997b475f4c41e91c4e0', + 'rid' => '3', + 'permission' => 'create page content', + 'module' => 'node', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_argument_default_php.inc', - 'hash' => '7a133b603294bfe498bfdeb50fade0b6e3cf8862270376067d86f69e7dc50eb8', + 'rid' => '3', + 'permission' => 'create url aliases', + 'module' => 'path', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_argument_default_raw.inc', - 'hash' => '4318e0dfa56f167183453cf8cd913f3b7ee539b77a096507905e36db12ded97e', + 'rid' => '3', + 'permission' => 'customize shortcut links', + 'module' => 'shortcut', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_argument_validate.inc', - 'hash' => '2ada4fdc59b366f33209c0cfc515b06e765b487091760cfa22e94ca1c028c9cb', + 'rid' => '3', + 'permission' => 'delete any article content', + 'module' => 'node', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_argument_validate_numeric.inc', - 'hash' => 'c050d3b5723dbfdca9ad312c7fa198e509c626057b95eed326820ce733dd9730', + 'rid' => '3', + 'permission' => 'delete any page content', + 'module' => 'node', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_argument_validate_php.inc', - 'hash' => '56a09922081a5e368d5796907727e35cbf43b0d634e53f947990c8a42d5b5f3e', + 'rid' => '3', + 'permission' => 'delete own article content', + 'module' => 'node', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_cache.inc', - 'hash' => '870ceb5dd920212f4297849046e696b50dbe35a9ad4ac28b7021a7dd03aa64d9', + 'rid' => '3', + 'permission' => 'delete own page content', + 'module' => 'node', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_cache_none.inc', - 'hash' => 'a0d0ba252e1e2b65350c7ce648b97364726fa8ded5a366bfcce30c62daee4450', + 'rid' => '3', + 'permission' => 'delete revisions', + 'module' => 'node', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_cache_time.inc', - 'hash' => 'fb55f3236b30f00f3ca5228c40115444a0e2f164a4f54e6fe07dee514e183569', + 'rid' => '3', + 'permission' => 'delete terms in 1', + 'module' => 'taxonomy', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_display.inc', - 'hash' => '622d738d83feb6643ade6fff427003a741b47943ac226f2e069f8f221ca3755f', + 'rid' => '3', + 'permission' => 'edit any article content', + 'module' => 'node', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_display_attachment.inc', - 'hash' => '6124e2ec51eadd7500fb878c25d9c5044b4ae9b6323dbbaa40b4806b69dd4cc0', + 'rid' => '3', + 'permission' => 'edit any page content', + 'module' => 'node', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_display_block.inc', - 'hash' => '7ad6a90efa396f68276e93e19a6273c88782d514c1f1cea6ed0b046287e16a10', + 'rid' => '3', + 'permission' => 'edit own article content', + 'module' => 'node', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_display_default.inc', - 'hash' => '91c6554d8f41f848bf30093d44d076051c54e998f6b50bdc2a922bfeeef9c54d', + 'rid' => '3', + 'permission' => 'edit own comments', + 'module' => 'comment', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_display_embed.inc', - 'hash' => '5424f2ea9e031faade7a562b8013aea193db5b0bc1be92b97bd7967de0d7bfff', + 'rid' => '3', + 'permission' => 'edit own page content', + 'module' => 'node', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_display_extender.inc', - 'hash' => '75fb9f80e7f153715b911690c7140f251df588e6a541fab5881fbfafc0bbf778', + 'rid' => '3', + 'permission' => 'edit terms in 1', + 'module' => 'taxonomy', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_display_feed.inc', - 'hash' => 'f2fb6152e12da300b9bb8e1b45621dfe921c3ce0e769970ee1532e32a3657c53', + 'rid' => '2', + 'permission' => 'post comments', + 'module' => 'comment', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_display_page.inc', - 'hash' => 'ece0ae5d5d730ef646178b09bc41a59e091c96a6ac3b3db5bdb9e61d194787bb', + 'rid' => '3', + 'permission' => 'post comments', + 'module' => 'comment', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_exposed_form.inc', - 'hash' => '0632ce61b4e39f8c0f39866987e4908657020298520fcf7c2712c0135e77d95b', + 'rid' => '3', + 'permission' => 'revert revisions', + 'module' => 'node', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_exposed_form_basic.inc', - 'hash' => 'c736e1862b393e15ecc80deb58663405a1d68c2db07eb620d8e640406876cd17', + 'rid' => '3', + 'permission' => 'search content', + 'module' => 'search', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_exposed_form_input_required.inc', - 'hash' => '98b81e3b78f7242dd30a3754830bdde2fb1dfe8f002ae0daa06976f1bb64fa75', + 'rid' => '3', + 'permission' => 'select account cancellation method', + 'module' => 'user', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_localization.inc', - 'hash' => 'd7239cc693994dcd069c1f1e7847a7902c5bd29b8d64a93cdf37c602576661fb', + 'rid' => '2', + 'permission' => 'skip comment approval', + 'module' => 'comment', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_localization_core.inc', - 'hash' => 'f0900c0640e7c779e9b876223ea395f613c8fe8449f6c8eb5d060e2d54a6afcc', + 'rid' => '3', + 'permission' => 'skip comment approval', + 'module' => 'comment', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_localization_none.inc', - 'hash' => '4930c3a13ddc0df3065f4920a836ffdc933b037e1337764e6687d7311f49dd8a', + 'rid' => '3', + 'permission' => 'switch shortcut sets', + 'module' => 'shortcut', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_pager.inc', - 'hash' => 'd7c32e38f149e9009e175395dff2b00ec429867653c7535301b705a7cc69d9ed', + 'rid' => '3', + 'permission' => 'translate content', + 'module' => 'translation', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_pager_full.inc', - 'hash' => '1e76a7225c505e9badc896f2db5832b903bbce976f1e7cf30192f7c068dc9660', + 'rid' => '3', + 'permission' => 'translate interface', + 'module' => 'locale', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_pager_mini.inc', - 'hash' => '0a9d101d5a4217fb888c643bfddd7bf7f2f9c0937faa2753a31452a5ee68190b', + 'rid' => '3', + 'permission' => 'use advanced search', + 'module' => 'search', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_pager_none.inc', - 'hash' => '822cab1ada25f4902a0505f13db86886061d2ced655438b33b197d031ccceddd', + 'rid' => '3', + 'permission' => 'use PHP for settings', + 'module' => 'php', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_pager_some.inc', - 'hash' => 'bc6aa7cbf1bc09374eced33334195c8897e4078336b8306d02d71c7aaaa22c99', + 'rid' => '2', + 'permission' => 'use text format custom_text_format', + 'module' => 'filter', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_query.inc', - 'hash' => '475a7ff0d4c7c7e27d7971ebd909a87bdb8322c47d6023b68f50f6fe6a1ec059', + 'rid' => '3', + 'permission' => 'use text format custom_text_format', + 'module' => 'filter', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_query_default.inc', - 'hash' => 'd5f89543721a3cd24f6a18114c630f741d11029d933f1b01d59f349219b747d6', + 'rid' => '1', + 'permission' => 'use text format filtered_html', + 'module' => 'filter', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_row.inc', - 'hash' => '3ca81529526b930cfb0dda202757f203649236b90441e3c035bb79cd419ee2a6', + 'rid' => '2', + 'permission' => 'use text format filtered_html', + 'module' => 'filter', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_row_fields.inc', - 'hash' => '875fb2868cdbcc5f7af03098cbe55b9bb91ef512e5e52ccde89f7a02a0c5fbe2', + 'rid' => '3', + 'permission' => 'use text format filtered_html', + 'module' => 'filter', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_row_rss_fields.inc', - 'hash' => '62f4a0ceef14aec9958ee8b98d352303f10818ddc66031814cc8b9d21752ade9', + 'rid' => '3', + 'permission' => 'use text format full_html', + 'module' => 'filter', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_style.inc', - 'hash' => '1ac358d216da612e1731d6b1c730d2ee57ccb8cdd31ad768ae97af542325244f', + 'rid' => '3', + 'permission' => 'view own unpublished content', + 'module' => 'node', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_style_default.inc', - 'hash' => 'bf411e635d2fd9e09eb245b43581a0a7b670359180ccb042d42a5e579bbe9c30', + 'rid' => '3', + 'permission' => 'view post access counter', + 'module' => 'statistics', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_style_grid.inc', - 'hash' => '35094b7f644b7e0692c9026b6b6b4c4c864c37fcdedef04b359dd2bdba496a47', + 'rid' => '3', + 'permission' => 'view revisions', + 'module' => 'node', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_style_jump_menu.inc', - 'hash' => '53a438d8a5398877eacdbff97f3b0c418ebc2fa16e69efd5e4a31b0b986e03a3', + 'rid' => '3', + 'permission' => 'view the administration theme', + 'module' => 'system', )) -->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_style_list.inc', - 'hash' => '407b928d2c74a91903b681088bccce926d2268d0a9a6a34c185a4849dc0d7e31', +->execute(); + +$connection->schema()->createTable('search_dataset', array( + 'fields' => array( + 'sid' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + 'unsigned' => TRUE, + ), + 'type' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '16', + ), + 'data' => array( + 'type' => 'text', + 'not null' => TRUE, + 'size' => 'normal', + ), + 'reindex' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + 'unsigned' => TRUE, + ), + ), + 'primary key' => array( + 'sid', + 'type', + ), + 'mysql_character_set' => 'utf8', +)); + +$connection->insert('search_dataset') +->fields(array( + 'sid', + 'type', + 'data', + 'reindex', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_style_mapping.inc', - 'hash' => 'a6b430a148dda1b07ecee314b897c1da41ce375566adf50ee23ae1da822fddf3', + 'sid' => '1', + 'type' => 'node', + 'data' => ' a node 1 default examplecom another examplecom 99999999 monday january 19 2015 2215 monday january 19 2015 2215 prefix value120suffix value abc5xyz click here some more text 9 a comment permalink submitted by admin on mon 1192015 2218 this is a comment log in or register to post comments ', + 'reindex' => '0', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_style_rss.inc', - 'hash' => 'ac72d530faffee78a1695a0b3893528ceb8451f18be0521c580485904a5ba57b', + 'sid' => '2', + 'type' => 'node', + 'data' => ' the thing about deep space 9 is that it s the absolute best show ever trust me i would know íslenska home benjamin sisko odo quark english ', + 'reindex' => '0', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_style_summary.inc', - 'hash' => '872df59f8f389eaf9b019e82d859dd198d31166e26a9102132e3932c7f1f2916', + 'sid' => '3', + 'type' => 'node', + 'data' => ' is the thing about deep space 9 is is that it s the absolute best show ever trust me i would know english home benjamin sisko odo quark íslenska ', + 'reindex' => '0', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_style_summary_jump_menu.inc', - 'hash' => '2ec0d225824ee65b6bb61317979e1dabe2be524a66ab19da924c6949dd31af3b', + 'sid' => '4', + 'type' => 'node', + 'data' => ' is the thing about firefly english íslenska ', + 'reindex' => '0', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_style_summary_unformatted.inc', - 'hash' => 'c1e6f9dd1d75e29fee271171440d2182e633a1dbbc996cb186f637ff7ad93ed9', + 'sid' => '5', + 'type' => 'node', + 'data' => ' en the thing about firefly íslenska english ', + 'reindex' => '0', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_plugin_style_table.inc', - 'hash' => '0cbcc5d256a13953fbd3e5966a33d2426d5c3bd8c228ef370daebf2f428e693c', + 'sid' => '6', + 'type' => 'node', + 'data' => ' comments are closed general discussion ', + 'reindex' => '0', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_wizard/views_ui_base_views_wizard.class.php', - 'hash' => 'd8325414c8ddde5c955a5cfb053b77478bb4d73cb2f7d75b857b082bc5a1e12d', + 'sid' => '7', + 'type' => 'node', + 'data' => ' comments are open general discussion ', + 'reindex' => '0', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_wizard/views_ui_comment_views_wizard.class.php', - 'hash' => '585a8e885a18d4d2dee260859492eb332d70166abf2d201777ebf0d2083d2ebe', + 'sid' => '8', + 'type' => 'node', + 'data' => ' paragraph migration test content und aliquam nec adipiscing tincidunt turpis habitasse scelerisque eros montes diam tincidunt magna rhoncus urna pulvinar in mauris urna nunc a pellentesque hac eros mid a etiam nunc vel tempor nascetur sit elit cras ridiculus ridiculus proin rhoncus cras mattis tempor turpis odio adipiscing ac cum ac placerat magna mauris magnis rhoncus urna placerat ut elementum risus a eu augue arcu urna dictumst porta sociis mattis sed hac aliquam placerat augue hac turpis risus tortor risus natoque amet pid habitasse in text field collection text data one und integer list 1 text field collection text data two und text paragraph field one bundle one und text list some text text paragraph field one bundle two und email joe joecom text paragraph field two bundle one und text list some more text ', + 'reindex' => '1518468638', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_wizard/views_ui_file_managed_views_wizard.class.php', - 'hash' => '5734fb564ba9e2485cfa5d4a49f0c76f65a9be357b78e769ee4af92c4ef9e22a', + 'sid' => '9', + 'type' => 'node', + 'data' => ' paragraph migration test content en aliquam nec adipiscing tincidunt turpis habitasse scelerisque eros montes diam tincidunt magna rhoncus urna pulvinar in mauris urna nunc a pellentesque hac eros mid a etiam nunc vel tempor nascetur sit elit cras ridiculus ridiculus proin rhoncus cras mattis tempor turpis odio adipiscing ac cum ac placerat magna mauris magnis rhoncus urna placerat ut elementum risus a eu augue arcu urna dictumst porta sociis mattis sed hac aliquam placerat augue hac turpis risus tortor risus natoque amet pid habitasse in íslenska text field collection text data two en integer list 2 text paragraph field one bundle one en text list some text text paragraph field one bundle two en email jose josecom text paragraph field two bundle one en text list some text english ', + 'reindex' => '0', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_wizard/views_ui_node_revision_views_wizard.class.php', - 'hash' => '6faf9ef92501a4f1aeaf86bcff9edaeb47bd7526ba50d06b841c9366149e7725', + 'sid' => '10', + 'type' => 'node', + 'data' => ' paragraph migration test content is aliquam nec adipiscing tincidunt turpis habitasse scelerisque eros montes diam tincidunt magna rhoncus urna pulvinar in mauris urna nunc a pellentesque hac eros mid a etiam nunc vel tempor nascetur sit elit cras ridiculus ridiculus proin rhoncus cras mattis tempor turpis odio adipiscing ac cum ac placerat magna mauris magnis rhoncus urna placerat ut elementum risus a eu augue arcu urna dictumst porta sociis mattis sed hac aliquam placerat augue hac turpis risus tortor risus natoque amet pid habitasse in english text field collection text data one is integer list 1 text field collection text data two is integer list 2 text field collection text data three is integer list 3 text paragraph field one bundle one is text list some text text paragraph field one bundle two is email jose josecom text paragraph field one bundle two delta 3 is email john johncom text paragraph field two bundle one is text list some more text íslenska ', + 'reindex' => '0', )) -->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_wizard/views_ui_node_views_wizard.class.php', - 'hash' => 'f10e588fcfe2dc37d0df1c520c3cd797b85d6f729335606b1aa11fcb5884e6eb', +->execute(); + +$connection->schema()->createTable('search_index', array( + 'fields' => array( + 'word' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '50', + 'default' => '', + ), + 'sid' => array( + 'type' => 'int', + 'not null' => TRUE, + 'size' => 'normal', + 'default' => '0', + 'unsigned' => TRUE, + ), + 'type' => array( + 'type' => 'varchar', + 'not null' => TRUE, + 'length' => '16', + ), + 'score' => array( + 'type' => 'numeric', + 'not null' => FALSE, + 'precision' => '10', + 'scale' => '0', + ), + ), + 'primary key' => array( + 'word', + 'sid', + 'type', + ), + 'mysql_character_set' => 'utf8', +)); + +$connection->insert('search_index') +->fields(array( + 'word', + 'sid', + 'type', + 'score', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_wizard/views_ui_taxonomy_term_views_wizard.class.php', - 'hash' => '87d72dba2aef587994307cb287b638a409d148911e4b90109798ecacf5a721e7', + 'word' => '1', + 'sid' => '1', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/plugins/views_wizard/views_ui_users_views_wizard.class.php', - 'hash' => 'f9fe2fb1ee87a1871e6ad32bad61b2457313f24da1bd5423977ced12de542919', + 'word' => '1192015', + 'sid' => '1', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/comment/views_handler_argument_comment_user_uid.test', - 'hash' => 'b8b417ef0e05806a88bd7d5e2f7dcb41339fbf5b66f39311defc9fb65476d561', + 'word' => '19', + 'sid' => '1', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/comment/views_handler_filter_comment_user_uid.test', - 'hash' => '347c6ffd4383706dbde844235aaf31cff44a22e95d2e6d8ef4da34a41b70edd1', + 'word' => '2015', + 'sid' => '1', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/field/views_fieldapi.test', - 'hash' => '53e6d57c2d1d6cd0cd92e15ca4077ba532214daf41e9c7c0f940c7c8dbd86a66', + 'word' => '2215', + 'sid' => '1', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/handlers/views_handlers.test', - 'hash' => 'f94dd3c4ba0bb1ffbf42704f600b94a808c1202a9ca26e7bdef8e7921c2724e9', + 'word' => '2218', + 'sid' => '1', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_area_text.test', - 'hash' => 'af74a74a3357567b844606add76d7ca1271317778dd7bd245a216cf963c738b4', + 'word' => '9', + 'sid' => '1', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_argument_null.test', - 'hash' => '1d174e1f467b905d67217bd755100d78ffeca4aa4ada5c4be40270cd6d30b721', + 'word' => '99999999', + 'sid' => '1', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_argument_string.test', - 'hash' => '3d0213af0041146abb61dcdc750869ed773d0ac80cfa74ffbadfdd03b1f11c52', + 'word' => 'abc5xyz', + 'sid' => '1', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field.test', - 'hash' => 'af552bf825ab77486b3d0d156779b7c4806ce5a983c6116ad68b633daf9bb927', + 'word' => 'admin', + 'sid' => '1', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_boolean.test', - 'hash' => 'd334b12a850f36b41fe89ab30a9d758fd3ce434286bd136404344b7b288460ae', + 'word' => 'another', + 'sid' => '1', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_counter.test', - 'hash' => '75b31942adf06b107f5ffd3c97545fde8cd1040b1d00f682e3c7c1320026e26c', + 'word' => 'click', + 'sid' => '1', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_custom.test', - 'hash' => '1446bc3d5a6b1180a79edfa46a5268dbf7f089836aa3bc45df00ddaff9dd0ce1', + 'word' => 'comment', + 'sid' => '1', + 'type' => 'node', + 'score' => '27', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_date.test', - 'hash' => '02df76a93a42d6131957748b1e69254835f9e44a47dafca1e833914e6b7f88a0', + 'word' => 'comments', + 'sid' => '1', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_file_extension.test', - 'hash' => '606ca091ad7e5709f7653324aaa021484d1f0e07e8639b3f0f7c26d3cfdee53c', + 'word' => 'default', + 'sid' => '1', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_file_size.test', - 'hash' => '49184db68af398a54e81c8a76261acd861da8fd7846b9d51dcf476d61396bfb9', + 'word' => 'examplecom', + 'sid' => '1', + 'type' => 'node', + 'score' => '22', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_math.test', - 'hash' => '6e39e4f782e6b36151ceafb41a5509f7c661be79b393b24f6f5496d724535887', + 'word' => 'here', + 'sid' => '1', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_url.test', - 'hash' => 'b41f762a71594b438a2e60a79c8260ba54e6305635725b0747e29f0d3ffe08c9', + 'word' => 'january', + 'sid' => '1', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_field_xss.test', - 'hash' => 'f129ee16c03f84673e33990cbb2da5aa88c362f46e9ba1620b2a842ffd1c9cd2', + 'word' => 'monday', + 'sid' => '1', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_combine.test', - 'hash' => '05842d83a11822afe7d566835f5db9f0f94fdb27ddfc388d38138767bdf36f8b', + 'word' => 'more', + 'sid' => '1', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_date.test', - 'hash' => 'ad2ca901c6a4ac3a82fc349a33826f043c6c80f773f40374be2e95acb39491e3', + 'word' => 'node', + 'sid' => '1', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_equality.test', - 'hash' => 'c88f21c9cbf1aae83393b26616908f8020c18fe378d76256c7ba192df2ec17af', + 'word' => 'permalink', + 'sid' => '1', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_in_operator.test', - 'hash' => '89420a4071677232e0eb82b184b37b818a82bdb2ff90a8b21293f9ecb21808bf', + 'word' => 'post', + 'sid' => '1', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_numeric.test', - 'hash' => '35ac7a34e696b979e86ef7209b6697098d9abe218e30a02cc4fe39fb11f2a852', + 'word' => 'prefix', + 'sid' => '1', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_filter_string.test', - 'hash' => 'b7d090780748faad478e619fd55673d746d4a0cf343d9e40ea96881324c34cbd', + 'word' => 'register', + 'sid' => '1', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_sort.test', - 'hash' => 'f4ff79e6bc54e83c4eb2777811f33702b7e9fe7416ef70ae00d100fa54d44fec', + 'word' => 'some', + 'sid' => '1', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_sort_date.test', - 'hash' => 'f548584d7c6a71cabd3ce07e04053a38df3f3e1685210ce8114238fd05344c10', + 'word' => 'submitted', + 'sid' => '1', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/handlers/views_handler_sort_random.test', - 'hash' => '4fdba9bf05a26720ffa97e7a37da65ddc9044bd2832f8c89007b82feb062f182', + 'word' => 'text', + 'sid' => '1', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/node/views_node_revision_relations.test', - 'hash' => '9467497a6d693615b48c8f57611a850002317bcb091b926d2efbbe56a4e61480', + 'word' => 'this', + 'sid' => '1', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/plugins/views_plugin_display.test', - 'hash' => '4a6b136543a60999604c54125fa9d4f5aa61a5dcc71e2133d89325d81bc0fc2d', + 'word' => 'value', + 'sid' => '1', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style.test', - 'hash' => '92d9a02f87f07d091999b961045b1dd654165059d8d1931b5c2ea1d88d0b439f', + 'word' => 'value120suffix', + 'sid' => '1', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style_base.test', - 'hash' => '54fb7816d18416d8b0db67e9f55aa2aa50ac204eb9311be14b6700b7d7a95ae7', + 'word' => '9', + 'sid' => '2', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style_jump_menu.test', - 'hash' => 'b88baa8aebe183943a6e4cf2df314fef13ac41b5844cd5fa4aa91557dd624895', + 'word' => 'about', + 'sid' => '2', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style_mapping.test', - 'hash' => 'a4e68bc8cfbeff4a1d9b8085fd115bfe7a8c4b84c049573fa0409b0dc8c2f053', + 'word' => 'absolute', + 'sid' => '2', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/styles/views_plugin_style_unformatted.test', - 'hash' => '033ca29d41af47cd7bd12d50fea6c956dde247202ebda9df7f637111481bb51d', + 'word' => 'benjamin', + 'sid' => '2', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/taxonomy/views_handler_relationship_node_term_data.test', - 'hash' => '6074f5c7ae63225ea0cd26626ace6c017740e226f4d3c234e39869c31308223d', + 'word' => 'best', + 'sid' => '2', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/test_handlers/views_test_area_access.inc', - 'hash' => '619e39bc4535976865b96751535d0d5aac4a7a87c1d47cb6d4c4bb9c9fa74716', + 'word' => 'deep', + 'sid' => '2', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/test_plugins/views_test_plugin_access_test_dynamic.inc', - 'hash' => '6a3ce8c256b84734b6b67a893ab24465a5f62d7bdf9ab5d22082a31849346b7d', + 'word' => 'english', + 'sid' => '2', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/test_plugins/views_test_plugin_access_test_static.inc', - 'hash' => 'e345e42d443cfa73db0ed2be61291117ebd57b86196cdb77c6f440e93443def3', + 'word' => 'ever', + 'sid' => '2', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/test_plugins/views_test_plugin_style_test_mapping.inc', - 'hash' => '0b2c68626105bd5f6b9074022a37c3d09d3a6bd70b811bb26d5eacad6d74546f', + 'word' => 'home', + 'sid' => '2', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/user/views_handler_field_user_name.test', - 'hash' => '69641b6da26d8daee9a2ceb2d0df56668bf09b86db1d4071c275b6e8d0885f9e', + 'word' => 'íslenska', + 'sid' => '2', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/user/views_user.test', - 'hash' => 'fbb63b42a0b7051bd4d33cf36841f39d7cc13a63b0554eca431b2a08c19facae', + 'word' => 'know', + 'sid' => '2', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/user/views_user_argument_default.test', - 'hash' => '6423f2db7673763991b1fd0c452a7d84413c7dd888ca6c95545fadc531cfaaf4', + 'word' => 'quark', + 'sid' => '2', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/user/views_user_argument_validate.test', - 'hash' => 'c88c9e5d162958f8924849758486a0d83822ada06088f5cf71bfbe76932d8d84', + 'word' => 'show', + 'sid' => '2', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/views_access.test', - 'hash' => 'f8b9d04b43c09a67ec722290a30408c1df8c163cf6e5863b41468bb4e381ee6f', + 'word' => 'sisko', + 'sid' => '2', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/views_ajax.test', - 'hash' => '3d0675fcbf3766a902cce6ecc240eee90abb516055c6e48f4ce996a245aa6990', + 'word' => 'space', + 'sid' => '2', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/views_analyze.test', - 'hash' => '5548e36c99bb626209d63e5cddbc31f49ad83865c983d2662c6826b328d24ffb', + 'word' => 'that', + 'sid' => '2', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/views_argument_default.test', - 'hash' => '5950937aae4608bba5b86f366ef3a56cc6518bbccfeaeacda79fa13246d220e4', + 'word' => 'thing', + 'sid' => '2', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/views_argument_validator.test', - 'hash' => '31f8f49946c8aa3b03d6d9a2281bdfb11c54071b28e83fb3e827ca6ff5e38c88', + 'word' => 'trust', + 'sid' => '2', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/views_basic.test', - 'hash' => '655bd33983f84bbea68a3f24bfab545d2c02f36a478566edf35a98a58ff0c6cf', + 'word' => 'would', + 'sid' => '2', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/views_cache.test', - 'hash' => '4e9b8ae1d9e72a9eaee95f5083004316d2199617f7d6c8f4bea40e99d17efcd8', + 'word' => '9', + 'sid' => '3', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/views_exposed_form.test', - 'hash' => '6962c7ed8a38030ec1cfa94485de07ceb1f9393216985bd8bfecac768f6c0950', + 'word' => 'about', + 'sid' => '3', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/views_glossary.test', - 'hash' => '118d50177a68a6f88e3727e10f8bcc6f95176282cc42fbd604458eeb932a36e8', + 'word' => 'absolute', + 'sid' => '3', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/views_groupby.test', - 'hash' => 'f26ad6857dc4821a4a0780642bda05fcb69ed506968e521f759bb28be4080143', + 'word' => 'benjamin', + 'sid' => '3', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/views_handlers.test', - 'hash' => 'a696e3d6b1748da03a04ac532f403700d07c920b9c405c628a6c94ea6764f501', + 'word' => 'best', + 'sid' => '3', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/views_module.test', - 'hash' => '5137e27449639d3e02f1b27206ef3ff96957546333b517318dfe8f58239dc860', + 'word' => 'deep', + 'sid' => '3', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/views_pager.test', - 'hash' => '6f448c8c13c5177afb35103119d6281958a2d6dbdfb96ae5f4ee77cb3b44adc5', + 'word' => 'english', + 'sid' => '3', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/views_plugin_localization_test.inc', - 'hash' => 'baedcf6c7381f9c5d3a5062f7d256f96808d06e04b6e73eff8e791e5f5293f45', + 'word' => 'ever', + 'sid' => '3', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/views_query.test', - 'hash' => 'f8cb1649e43c8a2b036fec742e86b8eb9c2c4c095a4c4e7a7c3ca13c6ce8e6e6', + 'word' => 'home', + 'sid' => '3', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/views_test.views_default.inc', - 'hash' => '26af8e24116f5357aca33b3f581b20014e7032ceee4872d25598e17fb3ab9fc7', + 'word' => 'íslenska', + 'sid' => '3', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/views_translatable.test', - 'hash' => '6899c7b09ab72c262480cf78d200ecddfb683e8f2495438a55b35ae0e103a1b3', + 'word' => 'know', + 'sid' => '3', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/views_ui.test', - 'hash' => 'f9687a363d7cc2828739583e3eedeb68c99acd505ff4e3036c806a42b93a2688', + 'word' => 'quark', + 'sid' => '3', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/views_upgrade.test', - 'hash' => 'c48bd74b85809dd78d963e525e38f3b6dd7e12aa249f73bd6a20247a40d6713a', + 'word' => 'show', + 'sid' => '3', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'filename' => 'sites/all/modules/views/tests/views_view.test', - 'hash' => 'cb4c8b7f14de8836d4c6705161547cbf6383de649642972d61c8dc18048265d5', -)) -->execute(); - -$connection->schema()->createTable('role', array( - 'fields' => array( - 'rid' => array( - 'type' => 'serial', - 'not null' => TRUE, - 'size' => 'normal', - 'unsigned' => TRUE, - ), - 'name' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '64', - 'default' => '', - ), - 'weight' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - ), - ), - 'primary key' => array( - 'rid', - ), - 'mysql_character_set' => 'utf8', -)); - -$connection->insert('role') -->fields(array( - 'rid', - 'name', - 'weight', + 'word' => 'sisko', + 'sid' => '3', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'rid' => '1', - 'name' => 'anonymous user', - 'weight' => '0', + 'word' => 'space', + 'sid' => '3', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'rid' => '2', - 'name' => 'authenticated user', - 'weight' => '1', + 'word' => 'that', + 'sid' => '3', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'name' => 'administrator', - 'weight' => '2', -)) -->execute(); - -$connection->schema()->createTable('role_permission', array( - 'fields' => array( - 'rid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'unsigned' => TRUE, - ), - 'permission' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '128', - 'default' => '', - ), - 'module' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '255', - 'default' => '', - ), - ), - 'primary key' => array( - 'rid', - 'permission', - ), - 'mysql_character_set' => 'utf8', -)); - -$connection->insert('role_permission') -->fields(array( - 'rid', - 'permission', - 'module', + 'word' => 'thing', + 'sid' => '3', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'rid' => '3', - 'permission' => 'access administration pages', - 'module' => 'system', + 'word' => 'trust', + 'sid' => '3', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'access all views', - 'module' => 'views', + 'word' => 'would', + 'sid' => '3', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '1', - 'permission' => 'access comments', - 'module' => 'comment', + 'word' => 'about', + 'sid' => '4', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'rid' => '2', - 'permission' => 'access comments', - 'module' => 'comment', + 'word' => 'english', + 'sid' => '4', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'access comments', - 'module' => 'comment', + 'word' => 'firefly', + 'sid' => '4', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'rid' => '1', - 'permission' => 'access content', - 'module' => 'node', + 'word' => 'íslenska', + 'sid' => '4', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'rid' => '2', - 'permission' => 'access content', - 'module' => 'node', + 'word' => 'thing', + 'sid' => '4', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'rid' => '3', - 'permission' => 'access content', - 'module' => 'node', + 'word' => 'about', + 'sid' => '5', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'rid' => '3', - 'permission' => 'access content overview', - 'module' => 'node', + 'word' => 'english', + 'sid' => '5', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'rid' => '3', - 'permission' => 'access contextual links', - 'module' => 'contextual', + 'word' => 'firefly', + 'sid' => '5', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'rid' => '3', - 'permission' => 'access dashboard', - 'module' => 'dashboard', + 'word' => 'íslenska', + 'sid' => '5', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'access news feeds', - 'module' => 'aggregator', + 'word' => 'thing', + 'sid' => '5', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'rid' => '3', - 'permission' => 'access overlay', - 'module' => 'overlay', + 'word' => 'closed', + 'sid' => '6', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'rid' => '3', - 'permission' => 'access printer-friendly version', - 'module' => 'book', + 'word' => 'comments', + 'sid' => '6', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'rid' => '3', - 'permission' => 'access site in maintenance mode', - 'module' => 'system', + 'word' => 'discussion', + 'sid' => '6', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'rid' => '3', - 'permission' => 'access site reports', - 'module' => 'system', + 'word' => 'general', + 'sid' => '6', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'rid' => '3', - 'permission' => 'access site-wide contact form', - 'module' => 'contact', + 'word' => 'comments', + 'sid' => '7', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'rid' => '3', - 'permission' => 'access statistics', - 'module' => 'statistics', + 'word' => 'discussion', + 'sid' => '7', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'rid' => '3', - 'permission' => 'access toolbar', - 'module' => 'toolbar', + 'word' => 'general', + 'sid' => '7', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'rid' => '3', - 'permission' => 'access user contact forms', - 'module' => 'contact', + 'word' => 'open', + 'sid' => '7', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'rid' => '3', - 'permission' => 'access user profiles', - 'module' => 'user', + 'word' => '1', + 'sid' => '8', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'add content to books', - 'module' => 'book', + 'word' => 'adipiscing', + 'sid' => '8', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer actions', - 'module' => 'system', + 'word' => 'aliquam', + 'sid' => '8', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer blocks', - 'module' => 'block', + 'word' => 'amet', + 'sid' => '8', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer book outlines', - 'module' => 'book', + 'word' => 'arcu', + 'sid' => '8', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer comments', - 'module' => 'comment', + 'word' => 'augue', + 'sid' => '8', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer contact forms', - 'module' => 'contact', + 'word' => 'bundle', + 'sid' => '8', + 'type' => 'node', + 'score' => '3', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer content translations', - 'module' => 'i18n_node', + 'word' => 'collection', + 'sid' => '8', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer content types', - 'module' => 'node', + 'word' => 'content', + 'sid' => '8', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer field collections', - 'module' => 'field_collection', + 'word' => 'cras', + 'sid' => '8', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer filters', - 'module' => 'filter', + 'word' => 'data', + 'sid' => '8', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer forums', - 'module' => 'forum', + 'word' => 'diam', + 'sid' => '8', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer image styles', - 'module' => 'image', + 'word' => 'dictumst', + 'sid' => '8', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer languages', - 'module' => 'locale', + 'word' => 'elementum', + 'sid' => '8', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer menu', - 'module' => 'menu', + 'word' => 'elit', + 'sid' => '8', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer modules', - 'module' => 'system', + 'word' => 'email', + 'sid' => '8', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer news feeds', - 'module' => 'aggregator', + 'word' => 'eros', + 'sid' => '8', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer nodes', - 'module' => 'node', + 'word' => 'etiam', + 'sid' => '8', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer paragraphs bundles', - 'module' => 'paragraphs', + 'word' => 'field', + 'sid' => '8', + 'type' => 'node', + 'score' => '5', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer permissions', - 'module' => 'user', + 'word' => 'habitasse', + 'sid' => '8', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer search', - 'module' => 'search', + 'word' => 'integer', + 'sid' => '8', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer shortcuts', - 'module' => 'shortcut', + 'word' => 'joecom', + 'sid' => '8', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer site configuration', - 'module' => 'system', + 'word' => 'list', + 'sid' => '8', + 'type' => 'node', + 'score' => '3', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer software updates', - 'module' => 'system', + 'word' => 'magna', + 'sid' => '8', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer statistics', - 'module' => 'statistics', + 'word' => 'magnis', + 'sid' => '8', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer taxonomy', - 'module' => 'taxonomy', + 'word' => 'mattis', + 'sid' => '8', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer themes', - 'module' => 'system', + 'word' => 'mauris', + 'sid' => '8', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer unit tests', - 'module' => 'simpletest', + 'word' => 'migration', + 'sid' => '8', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer url aliases', - 'module' => 'path', + 'word' => 'montes', + 'sid' => '8', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer users', - 'module' => 'user', + 'word' => 'more', + 'sid' => '8', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'administer views', - 'module' => 'views', + 'word' => 'nascetur', + 'sid' => '8', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'block IP addresses', - 'module' => 'system', + 'word' => 'natoque', + 'sid' => '8', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'bypass node access', - 'module' => 'node', + 'word' => 'nunc', + 'sid' => '8', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'bypass paragraphs bundle content access', - 'module' => 'paragraphs_bundle_permissions', + 'word' => 'odio', + 'sid' => '8', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'cancel account', - 'module' => 'user', + 'word' => 'paragraph', + 'sid' => '8', + 'type' => 'node', + 'score' => '29', )) ->values(array( - 'rid' => '3', - 'permission' => 'change own username', - 'module' => 'user', + 'word' => 'pellentesque', + 'sid' => '8', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'create article content', - 'module' => 'node', + 'word' => 'placerat', + 'sid' => '8', + 'type' => 'node', + 'score' => '3', )) ->values(array( - 'rid' => '3', - 'permission' => 'create new books', - 'module' => 'book', + 'word' => 'porta', + 'sid' => '8', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'create page content', - 'module' => 'node', + 'word' => 'proin', + 'sid' => '8', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'create url aliases', - 'module' => 'path', + 'word' => 'pulvinar', + 'sid' => '8', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'customize shortcut links', - 'module' => 'shortcut', + 'word' => 'rhoncus', + 'sid' => '8', + 'type' => 'node', + 'score' => '3', )) ->values(array( - 'rid' => '3', - 'permission' => 'delete any article content', - 'module' => 'node', + 'word' => 'ridiculus', + 'sid' => '8', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'delete any page content', - 'module' => 'node', + 'word' => 'risus', + 'sid' => '8', + 'type' => 'node', + 'score' => '3', )) ->values(array( - 'rid' => '3', - 'permission' => 'delete own article content', - 'module' => 'node', + 'word' => 'scelerisque', + 'sid' => '8', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'delete own page content', - 'module' => 'node', + 'word' => 'sociis', + 'sid' => '8', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'delete revisions', - 'module' => 'node', + 'word' => 'some', + 'sid' => '8', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'delete terms in 1', - 'module' => 'taxonomy', + 'word' => 'tempor', + 'sid' => '8', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'edit any article content', - 'module' => 'node', + 'word' => 'test', + 'sid' => '8', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'rid' => '3', - 'permission' => 'edit any page content', - 'module' => 'node', + 'word' => 'text', + 'sid' => '8', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'rid' => '3', - 'permission' => 'edit own article content', - 'module' => 'node', + 'word' => 'tincidunt', + 'sid' => '8', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'edit own comments', - 'module' => 'comment', + 'word' => 'tortor', + 'sid' => '8', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'edit own page content', - 'module' => 'node', + 'word' => 'turpis', + 'sid' => '8', + 'type' => 'node', + 'score' => '3', )) ->values(array( - 'rid' => '3', - 'permission' => 'edit terms in 1', - 'module' => 'taxonomy', + 'word' => 'urna', + 'sid' => '8', + 'type' => 'node', + 'score' => '4', )) ->values(array( - 'rid' => '2', - 'permission' => 'post comments', - 'module' => 'comment', + 'word' => '2', + 'sid' => '9', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'post comments', - 'module' => 'comment', + 'word' => 'adipiscing', + 'sid' => '9', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'revert revisions', - 'module' => 'node', + 'word' => 'aliquam', + 'sid' => '9', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'search content', - 'module' => 'search', + 'word' => 'amet', + 'sid' => '9', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'select account cancellation method', - 'module' => 'user', + 'word' => 'arcu', + 'sid' => '9', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '2', - 'permission' => 'skip comment approval', - 'module' => 'comment', + 'word' => 'augue', + 'sid' => '9', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'skip comment approval', - 'module' => 'comment', + 'word' => 'bundle', + 'sid' => '9', + 'type' => 'node', + 'score' => '3', )) ->values(array( - 'rid' => '3', - 'permission' => 'switch shortcut sets', - 'module' => 'shortcut', + 'word' => 'collection', + 'sid' => '9', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'translate admin strings', - 'module' => 'i18n_string', + 'word' => 'content', + 'sid' => '9', + 'type' => 'node', + 'score' => '26', )) ->values(array( - 'rid' => '3', - 'permission' => 'translate content', - 'module' => 'translation', + 'word' => 'cras', + 'sid' => '9', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'translate interface', - 'module' => 'locale', + 'word' => 'data', + 'sid' => '9', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'translate user-defined strings', - 'module' => 'i18n_string', + 'word' => 'diam', + 'sid' => '9', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'use advanced search', - 'module' => 'search', + 'word' => 'dictumst', + 'sid' => '9', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'use PHP for settings', - 'module' => 'php', + 'word' => 'elementum', + 'sid' => '9', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '2', - 'permission' => 'use text format custom_text_format', - 'module' => 'filter', + 'word' => 'elit', + 'sid' => '9', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'use text format custom_text_format', - 'module' => 'filter', + 'word' => 'email', + 'sid' => '9', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '1', - 'permission' => 'use text format filtered_html', - 'module' => 'filter', + 'word' => 'english', + 'sid' => '9', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'rid' => '2', - 'permission' => 'use text format filtered_html', - 'module' => 'filter', + 'word' => 'eros', + 'sid' => '9', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'use text format filtered_html', - 'module' => 'filter', + 'word' => 'etiam', + 'sid' => '9', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'use text format full_html', - 'module' => 'filter', + 'word' => 'field', + 'sid' => '9', + 'type' => 'node', + 'score' => '4', )) ->values(array( - 'rid' => '3', - 'permission' => 'view own unpublished content', - 'module' => 'node', + 'word' => 'habitasse', + 'sid' => '9', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'view post access counter', - 'module' => 'statistics', + 'word' => 'integer', + 'sid' => '9', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'rid' => '3', - 'permission' => 'view revisions', - 'module' => 'node', + 'word' => 'íslenska', + 'sid' => '9', + 'type' => 'node', + 'score' => '2', )) ->values(array( - 'rid' => '3', - 'permission' => 'view the administration theme', - 'module' => 'system', -)) -->execute(); - -$connection->schema()->createTable('search_dataset', array( - 'fields' => array( - 'sid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - 'unsigned' => TRUE, - ), - 'type' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '16', - ), - 'data' => array( - 'type' => 'text', - 'not null' => TRUE, - 'size' => 'normal', - ), - 'reindex' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - 'unsigned' => TRUE, - ), - ), - 'primary key' => array( - 'sid', - 'type', - ), - 'mysql_character_set' => 'utf8', -)); - -$connection->insert('search_dataset') -->fields(array( - 'sid', - 'type', - 'data', - 'reindex', + 'word' => 'jose', + 'sid' => '9', + 'type' => 'node', + 'score' => '11', )) ->values(array( - 'sid' => '1', + 'word' => 'josecom', + 'sid' => '9', 'type' => 'node', - 'data' => ' a node 1 default examplecom another examplecom 99999999 monday january 19 2015 2215 monday january 19 2015 2215 prefix value120suffix value abc5xyz click here some more text 9 a comment permalink submitted by admin on mon 1192015 2218 this is a comment log in or register to post comments ', - 'reindex' => '0', + 'score' => '11', )) ->values(array( - 'sid' => '2', + 'word' => 'list', + 'sid' => '9', 'type' => 'node', - 'data' => ' the thing about deep space 9 is that it s the absolute best show ever trust me i would know benjamin sisko odo quark ', - 'reindex' => '1517540655', + 'score' => '3', )) ->values(array( - 'sid' => '3', + 'word' => 'magna', + 'sid' => '9', 'type' => 'node', - 'data' => ' is the thing about deep space 9 is is that it s the absolute best show ever trust me i would know english home benjamin sisko odo quark ', - 'reindex' => '0', + 'score' => '2', )) ->values(array( - 'sid' => '4', + 'word' => 'magnis', + 'sid' => '9', 'type' => 'node', - 'data' => ' is the thing about firefly english ', - 'reindex' => '1517540655', + 'score' => '1', )) ->values(array( - 'sid' => '5', + 'word' => 'mattis', + 'sid' => '9', 'type' => 'node', - 'data' => ' en the thing about firefly íslenska english ', - 'reindex' => '0', + 'score' => '2', )) ->values(array( - 'sid' => '6', + 'word' => 'mauris', + 'sid' => '9', 'type' => 'node', - 'data' => ' comments are closed general discussion ', - 'reindex' => '0', + 'score' => '2', )) ->values(array( - 'sid' => '7', + 'word' => 'migration', + 'sid' => '9', 'type' => 'node', - 'data' => ' comments are open general discussion ', - 'reindex' => '0', + 'score' => '26', )) -->execute(); - -$connection->schema()->createTable('search_index', array( - 'fields' => array( - 'word' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '50', - 'default' => '', - ), - 'sid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'size' => 'normal', - 'default' => '0', - 'unsigned' => TRUE, - ), - 'type' => array( - 'type' => 'varchar', - 'not null' => TRUE, - 'length' => '16', - ), - 'score' => array( - 'type' => 'numeric', - 'not null' => FALSE, - 'precision' => '10', - 'scale' => '0', - ), - ), - 'primary key' => array( - 'word', - 'sid', - 'type', - ), - 'mysql_character_set' => 'utf8', -)); - -$connection->insert('search_index') -->fields(array( - 'word', - 'sid', - 'type', - 'score', +->values(array( + 'word' => 'montes', + 'sid' => '9', + 'type' => 'node', + 'score' => '1', )) ->values(array( - 'word' => '1', - 'sid' => '1', + 'word' => 'nascetur', + 'sid' => '9', 'type' => 'node', 'score' => '1', )) ->values(array( - 'word' => '1192015', - 'sid' => '1', + 'word' => 'natoque', + 'sid' => '9', 'type' => 'node', 'score' => '1', )) ->values(array( - 'word' => '19', - 'sid' => '1', + 'word' => 'nunc', + 'sid' => '9', 'type' => 'node', 'score' => '2', )) ->values(array( - 'word' => '2015', - 'sid' => '1', + 'word' => 'odio', + 'sid' => '9', 'type' => 'node', - 'score' => '2', + 'score' => '1', )) ->values(array( - 'word' => '2215', - 'sid' => '1', + 'word' => 'paragraph', + 'sid' => '9', 'type' => 'node', - 'score' => '2', + 'score' => '29', )) ->values(array( - 'word' => '2218', - 'sid' => '1', + 'word' => 'pellentesque', + 'sid' => '9', 'type' => 'node', 'score' => '1', )) ->values(array( - 'word' => '9', - 'sid' => '1', + 'word' => 'placerat', + 'sid' => '9', 'type' => 'node', - 'score' => '1', + 'score' => '3', )) ->values(array( - 'word' => '99999999', - 'sid' => '1', + 'word' => 'porta', + 'sid' => '9', 'type' => 'node', 'score' => '1', )) ->values(array( - 'word' => 'abc5xyz', - 'sid' => '1', + 'word' => 'proin', + 'sid' => '9', 'type' => 'node', 'score' => '1', )) ->values(array( - 'word' => 'admin', - 'sid' => '1', + 'word' => 'pulvinar', + 'sid' => '9', 'type' => 'node', 'score' => '1', )) ->values(array( - 'word' => 'another', - 'sid' => '1', + 'word' => 'rhoncus', + 'sid' => '9', 'type' => 'node', - 'score' => '11', + 'score' => '3', )) ->values(array( - 'word' => 'click', - 'sid' => '1', + 'word' => 'ridiculus', + 'sid' => '9', 'type' => 'node', - 'score' => '11', + 'score' => '2', )) ->values(array( - 'word' => 'comment', - 'sid' => '1', + 'word' => 'risus', + 'sid' => '9', 'type' => 'node', - 'score' => '27', + 'score' => '3', )) ->values(array( - 'word' => 'comments', - 'sid' => '1', + 'word' => 'scelerisque', + 'sid' => '9', 'type' => 'node', 'score' => '1', )) ->values(array( - 'word' => 'default', - 'sid' => '1', + 'word' => 'sociis', + 'sid' => '9', 'type' => 'node', - 'score' => '11', + 'score' => '1', )) ->values(array( - 'word' => 'examplecom', - 'sid' => '1', + 'word' => 'some', + 'sid' => '9', 'type' => 'node', - 'score' => '22', + 'score' => '2', )) ->values(array( - 'word' => 'here', - 'sid' => '1', + 'word' => 'tempor', + 'sid' => '9', 'type' => 'node', - 'score' => '11', + 'score' => '2', )) ->values(array( - 'word' => 'january', - 'sid' => '1', + 'word' => 'test', + 'sid' => '9', 'type' => 'node', - 'score' => '2', + 'score' => '26', )) ->values(array( - 'word' => 'monday', - 'sid' => '1', + 'word' => 'text', + 'sid' => '9', + 'type' => 'node', + 'score' => '9', +)) +->values(array( + 'word' => 'tincidunt', + 'sid' => '9', 'type' => 'node', 'score' => '2', )) ->values(array( - 'word' => 'more', - 'sid' => '1', + 'word' => 'tortor', + 'sid' => '9', 'type' => 'node', 'score' => '1', )) ->values(array( - 'word' => 'node', - 'sid' => '1', + 'word' => 'turpis', + 'sid' => '9', 'type' => 'node', - 'score' => '26', + 'score' => '3', )) ->values(array( - 'word' => 'permalink', - 'sid' => '1', + 'word' => 'urna', + 'sid' => '9', 'type' => 'node', - 'score' => '11', + 'score' => '4', )) ->values(array( - 'word' => 'post', - 'sid' => '1', + 'word' => '1', + 'sid' => '10', 'type' => 'node', 'score' => '1', )) ->values(array( - 'word' => 'prefix', - 'sid' => '1', + 'word' => '2', + 'sid' => '10', 'type' => 'node', 'score' => '1', )) ->values(array( - 'word' => 'register', - 'sid' => '1', + 'word' => '3', + 'sid' => '10', 'type' => 'node', 'score' => '2', )) ->values(array( - 'word' => 'some', - 'sid' => '1', + 'word' => 'adipiscing', + 'sid' => '10', 'type' => 'node', - 'score' => '1', + 'score' => '2', )) ->values(array( - 'word' => 'submitted', - 'sid' => '1', + 'word' => 'aliquam', + 'sid' => '10', 'type' => 'node', - 'score' => '1', + 'score' => '2', )) ->values(array( - 'word' => 'text', - 'sid' => '1', + 'word' => 'amet', + 'sid' => '10', 'type' => 'node', 'score' => '1', )) ->values(array( - 'word' => 'this', - 'sid' => '1', + 'word' => 'arcu', + 'sid' => '10', 'type' => 'node', 'score' => '1', )) ->values(array( - 'word' => 'value', - 'sid' => '1', + 'word' => 'augue', + 'sid' => '10', 'type' => 'node', - 'score' => '1', + 'score' => '2', )) ->values(array( - 'word' => 'value120suffix', - 'sid' => '1', + 'word' => 'bundle', + 'sid' => '10', 'type' => 'node', - 'score' => '1', + 'score' => '4', )) ->values(array( - 'word' => '9', - 'sid' => '2', + 'word' => 'collection', + 'sid' => '10', 'type' => 'node', - 'score' => '26', + 'score' => '3', )) ->values(array( - 'word' => 'about', - 'sid' => '2', + 'word' => 'content', + 'sid' => '10', 'type' => 'node', 'score' => '26', )) ->values(array( - 'word' => 'absolute', - 'sid' => '2', + 'word' => 'cras', + 'sid' => '10', 'type' => 'node', - 'score' => '1', + 'score' => '2', )) ->values(array( - 'word' => 'benjamin', - 'sid' => '2', + 'word' => 'data', + 'sid' => '10', 'type' => 'node', - 'score' => '11', + 'score' => '3', )) ->values(array( - 'word' => 'best', - 'sid' => '2', + 'word' => 'delta', + 'sid' => '10', 'type' => 'node', 'score' => '1', )) ->values(array( - 'word' => 'deep', - 'sid' => '2', + 'word' => 'diam', + 'sid' => '10', 'type' => 'node', - 'score' => '26', + 'score' => '1', )) ->values(array( - 'word' => 'ever', - 'sid' => '2', + 'word' => 'dictumst', + 'sid' => '10', 'type' => 'node', 'score' => '1', )) ->values(array( - 'word' => 'know', - 'sid' => '2', + 'word' => 'elementum', + 'sid' => '10', 'type' => 'node', 'score' => '1', )) ->values(array( - 'word' => 'quark', - 'sid' => '2', + 'word' => 'elit', + 'sid' => '10', 'type' => 'node', - 'score' => '11', + 'score' => '1', )) ->values(array( - 'word' => 'show', - 'sid' => '2', + 'word' => 'email', + 'sid' => '10', 'type' => 'node', - 'score' => '1', + 'score' => '2', )) ->values(array( - 'word' => 'sisko', - 'sid' => '2', + 'word' => 'english', + 'sid' => '10', 'type' => 'node', - 'score' => '11', + 'score' => '2', )) ->values(array( - 'word' => 'space', - 'sid' => '2', + 'word' => 'eros', + 'sid' => '10', 'type' => 'node', - 'score' => '26', + 'score' => '2', )) ->values(array( - 'word' => 'that', - 'sid' => '2', + 'word' => 'etiam', + 'sid' => '10', 'type' => 'node', 'score' => '1', )) ->values(array( - 'word' => 'thing', - 'sid' => '2', + 'word' => 'field', + 'sid' => '10', 'type' => 'node', - 'score' => '26', + 'score' => '7', )) ->values(array( - 'word' => 'trust', - 'sid' => '2', + 'word' => 'habitasse', + 'sid' => '10', 'type' => 'node', - 'score' => '1', + 'score' => '2', )) ->values(array( - 'word' => 'would', - 'sid' => '2', + 'word' => 'integer', + 'sid' => '10', 'type' => 'node', - 'score' => '1', + 'score' => '3', )) ->values(array( - 'word' => '9', - 'sid' => '3', + 'word' => 'íslenska', + 'sid' => '10', 'type' => 'node', - 'score' => '26', + 'score' => '11', )) ->values(array( - 'word' => 'about', - 'sid' => '3', + 'word' => 'john', + 'sid' => '10', 'type' => 'node', - 'score' => '26', + 'score' => '11', )) ->values(array( - 'word' => 'absolute', - 'sid' => '3', + 'word' => 'johncom', + 'sid' => '10', 'type' => 'node', - 'score' => '1', + 'score' => '11', )) ->values(array( - 'word' => 'benjamin', - 'sid' => '3', + 'word' => 'jose', + 'sid' => '10', 'type' => 'node', 'score' => '11', )) ->values(array( - 'word' => 'best', - 'sid' => '3', + 'word' => 'josecom', + 'sid' => '10', 'type' => 'node', - 'score' => '1', + 'score' => '11', )) ->values(array( - 'word' => 'deep', - 'sid' => '3', + 'word' => 'list', + 'sid' => '10', 'type' => 'node', - 'score' => '26', + 'score' => '5', )) ->values(array( - 'word' => 'english', - 'sid' => '3', + 'word' => 'magna', + 'sid' => '10', 'type' => 'node', 'score' => '2', )) ->values(array( - 'word' => 'ever', - 'sid' => '3', + 'word' => 'magnis', + 'sid' => '10', 'type' => 'node', 'score' => '1', )) ->values(array( - 'word' => 'home', - 'sid' => '3', + 'word' => 'mattis', + 'sid' => '10', 'type' => 'node', - 'score' => '11', + 'score' => '2', )) ->values(array( - 'word' => 'know', - 'sid' => '3', + 'word' => 'mauris', + 'sid' => '10', 'type' => 'node', - 'score' => '1', + 'score' => '2', )) ->values(array( - 'word' => 'quark', - 'sid' => '3', + 'word' => 'migration', + 'sid' => '10', 'type' => 'node', - 'score' => '11', + 'score' => '26', )) ->values(array( - 'word' => 'show', - 'sid' => '3', + 'word' => 'montes', + 'sid' => '10', 'type' => 'node', 'score' => '1', )) ->values(array( - 'word' => 'sisko', - 'sid' => '3', + 'word' => 'more', + 'sid' => '10', 'type' => 'node', - 'score' => '11', + 'score' => '1', )) ->values(array( - 'word' => 'space', - 'sid' => '3', + 'word' => 'nascetur', + 'sid' => '10', 'type' => 'node', - 'score' => '26', + 'score' => '1', )) ->values(array( - 'word' => 'that', - 'sid' => '3', + 'word' => 'natoque', + 'sid' => '10', 'type' => 'node', 'score' => '1', )) ->values(array( - 'word' => 'thing', - 'sid' => '3', + 'word' => 'nunc', + 'sid' => '10', 'type' => 'node', - 'score' => '26', + 'score' => '2', )) ->values(array( - 'word' => 'trust', - 'sid' => '3', + 'word' => 'odio', + 'sid' => '10', 'type' => 'node', 'score' => '1', )) ->values(array( - 'word' => 'would', - 'sid' => '3', + 'word' => 'paragraph', + 'sid' => '10', + 'type' => 'node', + 'score' => '30', +)) +->values(array( + 'word' => 'pellentesque', + 'sid' => '10', 'type' => 'node', 'score' => '1', )) ->values(array( - 'word' => 'about', - 'sid' => '4', + 'word' => 'placerat', + 'sid' => '10', 'type' => 'node', - 'score' => '26', + 'score' => '3', )) ->values(array( - 'word' => 'english', - 'sid' => '4', + 'word' => 'porta', + 'sid' => '10', 'type' => 'node', - 'score' => '2', + 'score' => '1', )) ->values(array( - 'word' => 'firefly', - 'sid' => '4', + 'word' => 'proin', + 'sid' => '10', 'type' => 'node', - 'score' => '26', + 'score' => '1', )) ->values(array( - 'word' => 'thing', - 'sid' => '4', + 'word' => 'pulvinar', + 'sid' => '10', 'type' => 'node', - 'score' => '26', + 'score' => '1', )) ->values(array( - 'word' => 'about', - 'sid' => '5', + 'word' => 'rhoncus', + 'sid' => '10', 'type' => 'node', - 'score' => '26', + 'score' => '3', )) ->values(array( - 'word' => 'english', - 'sid' => '5', + 'word' => 'ridiculus', + 'sid' => '10', 'type' => 'node', - 'score' => '11', + 'score' => '2', )) ->values(array( - 'word' => 'firefly', - 'sid' => '5', + 'word' => 'risus', + 'sid' => '10', 'type' => 'node', - 'score' => '26', + 'score' => '3', )) ->values(array( - 'word' => 'íslenska', - 'sid' => '5', + 'word' => 'scelerisque', + 'sid' => '10', 'type' => 'node', - 'score' => '2', + 'score' => '1', )) ->values(array( - 'word' => 'thing', - 'sid' => '5', + 'word' => 'sociis', + 'sid' => '10', 'type' => 'node', - 'score' => '26', + 'score' => '1', )) ->values(array( - 'word' => 'closed', - 'sid' => '6', + 'word' => 'some', + 'sid' => '10', 'type' => 'node', - 'score' => '26', + 'score' => '2', )) ->values(array( - 'word' => 'comments', - 'sid' => '6', + 'word' => 'tempor', + 'sid' => '10', + 'type' => 'node', + 'score' => '2', +)) +->values(array( + 'word' => 'test', + 'sid' => '10', 'type' => 'node', 'score' => '26', )) ->values(array( - 'word' => 'discussion', - 'sid' => '6', + 'word' => 'text', + 'sid' => '10', 'type' => 'node', - 'score' => '11', + 'score' => '14', )) ->values(array( - 'word' => 'general', - 'sid' => '6', + 'word' => 'three', + 'sid' => '10', 'type' => 'node', - 'score' => '11', + 'score' => '1', )) ->values(array( - 'word' => 'comments', - 'sid' => '7', + 'word' => 'tincidunt', + 'sid' => '10', 'type' => 'node', - 'score' => '26', + 'score' => '2', )) ->values(array( - 'word' => 'discussion', - 'sid' => '7', + 'word' => 'tortor', + 'sid' => '10', 'type' => 'node', - 'score' => '11', + 'score' => '1', )) ->values(array( - 'word' => 'general', - 'sid' => '7', + 'word' => 'turpis', + 'sid' => '10', 'type' => 'node', - 'score' => '11', + 'score' => '3', )) ->values(array( - 'word' => 'open', - 'sid' => '7', + 'word' => 'urna', + 'sid' => '10', 'type' => 'node', - 'score' => '26', + 'score' => '4', )) ->execute(); @@ -71247,6 +52604,12 @@ $connection->insert('search_node_links') 'nid' => '2', 'caption' => 'english', )) +->values(array( + 'sid' => '2', + 'type' => 'node', + 'nid' => '3', + 'caption' => 'íslenska', +)) ->values(array( 'sid' => '5', 'type' => 'node', @@ -71259,6 +52622,18 @@ $connection->insert('search_node_links') 'nid' => '5', 'caption' => 'english', )) +->values(array( + 'sid' => '10', + 'type' => 'node', + 'nid' => '9', + 'caption' => 'english', +)) +->values(array( + 'sid' => '9', + 'type' => 'node', + 'nid' => '10', + 'caption' => 'íslenska', +)) ->execute(); $connection->schema()->createTable('search_total', array( @@ -71299,6 +52674,10 @@ $connection->insert('search_total') 'word' => '19', 'count' => '0', )) +->values(array( + 'word' => '2', + 'count' => '0', +)) ->values(array( 'word' => '2015', 'count' => '0', @@ -71311,6 +52690,10 @@ $connection->insert('search_total') 'word' => '2218', 'count' => '0', )) +->values(array( + 'word' => '3', + 'count' => '0', +)) ->values(array( 'word' => '9', 'count' => '0', @@ -71331,14 +52714,34 @@ $connection->insert('search_total') 'word' => 'absolute', 'count' => '0', )) +->values(array( + 'word' => 'adipiscing', + 'count' => '0', +)) ->values(array( 'word' => 'admin', 'count' => '0', )) +->values(array( + 'word' => 'aliquam', + 'count' => '0', +)) +->values(array( + 'word' => 'amet', + 'count' => '0', +)) ->values(array( 'word' => 'another', 'count' => '0', )) +->values(array( + 'word' => 'arcu', + 'count' => '0', +)) +->values(array( + 'word' => 'augue', + 'count' => '0', +)) ->values(array( 'word' => 'benjamin', 'count' => '0', @@ -71347,6 +52750,10 @@ $connection->insert('search_total') 'word' => 'best', 'count' => '0', )) +->values(array( + 'word' => 'bundle', + 'count' => '0', +)) ->values(array( 'word' => 'click', 'count' => '0', @@ -71355,6 +52762,10 @@ $connection->insert('search_total') 'word' => 'closed', 'count' => '0', )) +->values(array( + 'word' => 'collection', + 'count' => '0', +)) ->values(array( 'word' => 'comment', 'count' => '0', @@ -71363,6 +52774,18 @@ $connection->insert('search_total') 'word' => 'comments', 'count' => '0', )) +->values(array( + 'word' => 'content', + 'count' => '0', +)) +->values(array( + 'word' => 'cras', + 'count' => '0', +)) +->values(array( + 'word' => 'data', + 'count' => '0', +)) ->values(array( 'word' => 'deep', 'count' => '0', @@ -71371,14 +52794,46 @@ $connection->insert('search_total') 'word' => 'default', 'count' => '0', )) +->values(array( + 'word' => 'delta', + 'count' => '0', +)) +->values(array( + 'word' => 'diam', + 'count' => '0', +)) +->values(array( + 'word' => 'dictumst', + 'count' => '0', +)) ->values(array( 'word' => 'discussion', 'count' => '0', )) +->values(array( + 'word' => 'elementum', + 'count' => '0', +)) +->values(array( + 'word' => 'elit', + 'count' => '0', +)) +->values(array( + 'word' => 'email', + 'count' => '0', +)) ->values(array( 'word' => 'english', 'count' => '0', )) +->values(array( + 'word' => 'eros', + 'count' => '0', +)) +->values(array( + 'word' => 'etiam', + 'count' => '0', +)) ->values(array( 'word' => 'ever', 'count' => '0', @@ -71387,6 +52842,10 @@ $connection->insert('search_total') 'word' => 'examplecom', 'count' => '0', )) +->values(array( + 'word' => 'field', + 'count' => '0', +)) ->values(array( 'word' => 'firefly', 'count' => '0', @@ -71395,6 +52854,10 @@ $connection->insert('search_total') 'word' => 'general', 'count' => '0', )) +->values(array( + 'word' => 'habitasse', + 'count' => '0', +)) ->values(array( 'word' => 'here', 'count' => '0', @@ -71403,6 +52866,10 @@ $connection->insert('search_total') 'word' => 'home', 'count' => '0', )) +->values(array( + 'word' => 'integer', + 'count' => '0', +)) ->values(array( 'word' => 'íslenska', 'count' => '0', @@ -71411,30 +52878,110 @@ $connection->insert('search_total') 'word' => 'january', 'count' => '0', )) +->values(array( + 'word' => 'joecom', + 'count' => '0', +)) +->values(array( + 'word' => 'john', + 'count' => '0', +)) +->values(array( + 'word' => 'johncom', + 'count' => '0', +)) +->values(array( + 'word' => 'jose', + 'count' => '0', +)) +->values(array( + 'word' => 'josecom', + 'count' => '0', +)) ->values(array( 'word' => 'know', 'count' => '0', )) +->values(array( + 'word' => 'list', + 'count' => '0', +)) +->values(array( + 'word' => 'magna', + 'count' => '0', +)) +->values(array( + 'word' => 'magnis', + 'count' => '0', +)) +->values(array( + 'word' => 'mattis', + 'count' => '0', +)) +->values(array( + 'word' => 'mauris', + 'count' => '0', +)) +->values(array( + 'word' => 'migration', + 'count' => '0', +)) ->values(array( 'word' => 'monday', 'count' => '0', )) +->values(array( + 'word' => 'montes', + 'count' => '0', +)) ->values(array( 'word' => 'more', 'count' => '0', )) +->values(array( + 'word' => 'nascetur', + 'count' => '0', +)) +->values(array( + 'word' => 'natoque', + 'count' => '0', +)) ->values(array( 'word' => 'node', 'count' => '0', )) +->values(array( + 'word' => 'nunc', + 'count' => '0', +)) +->values(array( + 'word' => 'odio', + 'count' => '0', +)) ->values(array( 'word' => 'open', 'count' => '0', )) +->values(array( + 'word' => 'paragraph', + 'count' => '0', +)) +->values(array( + 'word' => 'pellentesque', + 'count' => '0', +)) ->values(array( 'word' => 'permalink', 'count' => '0', )) +->values(array( + 'word' => 'placerat', + 'count' => '0', +)) +->values(array( + 'word' => 'porta', + 'count' => '0', +)) ->values(array( 'word' => 'post', 'count' => '0', @@ -71443,6 +52990,14 @@ $connection->insert('search_total') 'word' => 'prefix', 'count' => '0', )) +->values(array( + 'word' => 'proin', + 'count' => '0', +)) +->values(array( + 'word' => 'pulvinar', + 'count' => '0', +)) ->values(array( 'word' => 'quark', 'count' => '0', @@ -71451,6 +53006,22 @@ $connection->insert('search_total') 'word' => 'register', 'count' => '0', )) +->values(array( + 'word' => 'rhoncus', + 'count' => '0', +)) +->values(array( + 'word' => 'ridiculus', + 'count' => '0', +)) +->values(array( + 'word' => 'risus', + 'count' => '0', +)) +->values(array( + 'word' => 'scelerisque', + 'count' => '0', +)) ->values(array( 'word' => 'show', 'count' => '0', @@ -71459,6 +53030,10 @@ $connection->insert('search_total') 'word' => 'sisko', 'count' => '0', )) +->values(array( + 'word' => 'sociis', + 'count' => '0', +)) ->values(array( 'word' => 'some', 'count' => '0', @@ -71471,6 +53046,14 @@ $connection->insert('search_total') 'word' => 'submitted', 'count' => '0', )) +->values(array( + 'word' => 'tempor', + 'count' => '0', +)) +->values(array( + 'word' => 'test', + 'count' => '0', +)) ->values(array( 'word' => 'text', 'count' => '0', @@ -71487,10 +53070,30 @@ $connection->insert('search_total') 'word' => 'this', 'count' => '0', )) +->values(array( + 'word' => 'three', + 'count' => '0', +)) +->values(array( + 'word' => 'tincidunt', + 'count' => '0', +)) +->values(array( + 'word' => 'tortor', + 'count' => '0', +)) ->values(array( 'word' => 'trust', 'count' => '0', )) +->values(array( + 'word' => 'turpis', + 'count' => '0', +)) +->values(array( + 'word' => 'urna', + 'count' => '0', +)) ->values(array( 'word' => 'value', 'count' => '0', @@ -71925,7 +53528,7 @@ $connection->insert('system') 'name' => 'dashboard', 'type' => 'module', 'owner' => '', - 'status' => '1', + 'status' => '0', 'bootstrap' => '0', 'schema_version' => '0', 'weight' => '0', @@ -72200,7 +53803,7 @@ $connection->insert('system') 'name' => 'openid', 'type' => 'module', 'owner' => '', - 'status' => '1', + 'status' => '0', 'bootstrap' => '0', 'schema_version' => '7000', 'weight' => '0', @@ -72222,8 +53825,8 @@ $connection->insert('system') 'name' => 'overlay', 'type' => 'module', 'owner' => '', - 'status' => '1', - 'bootstrap' => '1', + 'status' => '0', + 'bootstrap' => '0', 'schema_version' => '0', 'weight' => '0', 'info' => 'a:12:{s:4:"name";s:7:"Overlay";s:11:"description";s:59:"Displays the Drupal administration interface in an overlay.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:5:"mtime";i:1498069849;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}', @@ -73080,7 +54683,7 @@ $connection->insert('system') 'name' => 'ctools', 'type' => 'module', 'owner' => '', - 'status' => '1', + 'status' => '0', 'bootstrap' => '0', 'schema_version' => '6008', 'weight' => '0', @@ -73443,10 +55046,10 @@ $connection->insert('system') 'name' => 'i18n', 'type' => 'module', 'owner' => '', - 'status' => '1', - 'bootstrap' => '1', - 'schema_version' => '7001', - 'weight' => '10', + 'status' => '0', + 'bootstrap' => '0', + 'schema_version' => '-1', + 'weight' => '0', 'info' => 'a:13:{s:4:"name";s:20:"Internationalization";s:11:"description";s:49:"Extends Drupal support for multilingual features.";s:12:"dependencies";a:2:{i:0;s:6:"locale";i:1;s:8:"variable";}s:7:"package";s:35:"Multilingual - Internationalization";s:4:"core";s:3:"7.x";s:5:"files";a:2:{i:0;s:15:"i18n_object.inc";i:1;s:9:"i18n.test";}s:9:"configure";s:26:"admin/config/regional/i18n";s:7:"version";s:8:"7.x-1.22";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1511689989";s:5:"mtime";i:1511689989;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}', )) ->values(array( @@ -73476,9 +55079,9 @@ $connection->insert('system') 'name' => 'i18n_field', 'type' => 'module', 'owner' => '', - 'status' => '1', + 'status' => '0', 'bootstrap' => '0', - 'schema_version' => '7000', + 'schema_version' => '-1', 'weight' => '0', 'info' => 'a:12:{s:4:"name";s:17:"Field translation";s:11:"description";s:26:"Translate field properties";s:12:"dependencies";a:2:{i:0;s:5:"field";i:1;s:11:"i18n_string";}s:7:"package";s:35:"Multilingual - Internationalization";s:4:"core";s:3:"7.x";s:5:"files";a:2:{i:0;s:14:"i18n_field.inc";i:1;s:15:"i18n_field.test";}s:7:"version";s:8:"7.x-1.22";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1511689989";s:5:"mtime";i:1511689989;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}', )) @@ -73509,9 +55112,9 @@ $connection->insert('system') 'name' => 'i18n_node', 'type' => 'module', 'owner' => '', - 'status' => '1', + 'status' => '0', 'bootstrap' => '0', - 'schema_version' => '7000', + 'schema_version' => '-1', 'weight' => '0', 'info' => 'a:13:{s:4:"name";s:20:"Multilingual content";s:11:"description";s:46:"Extended node options for multilingual content";s:12:"dependencies";a:3:{i:0;s:11:"translation";i:1;s:4:"i18n";i:2;s:11:"i18n_string";}s:7:"package";s:35:"Multilingual - Internationalization";s:4:"core";s:3:"7.x";s:9:"configure";s:31:"admin/config/regional/i18n/node";s:5:"files";a:2:{i:0;s:14:"i18n_node.test";i:1;s:22:"i18n_node.variable.inc";}s:7:"version";s:8:"7.x-1.22";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1511689989";s:5:"mtime";i:1511689989;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}', )) @@ -73553,10 +55156,10 @@ $connection->insert('system') 'name' => 'i18n_string', 'type' => 'module', 'owner' => '', - 'status' => '1', + 'status' => '0', 'bootstrap' => '0', - 'schema_version' => '7003', - 'weight' => '10', + 'schema_version' => '-1', + 'weight' => '0', 'info' => 'a:13:{s:4:"name";s:18:"String translation";s:11:"description";s:57:"Provides support for translation of user defined strings.";s:12:"dependencies";a:2:{i:0;s:6:"locale";i:1;s:4:"i18n";}s:7:"package";s:35:"Multilingual - Internationalization";s:4:"core";s:3:"7.x";s:5:"files";a:3:{i:0;s:21:"i18n_string.admin.inc";i:1;s:15:"i18n_string.inc";i:2;s:16:"i18n_string.test";}s:9:"configure";s:34:"admin/config/regional/i18n/strings";s:7:"version";s:8:"7.x-1.22";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1511689989";s:5:"mtime";i:1511689989;s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}', )) ->values(array( @@ -73641,9 +55244,9 @@ $connection->insert('system') 'name' => 'paragraphs_bundle_permissions', 'type' => 'module', 'owner' => '', - 'status' => '1', + 'status' => '0', 'bootstrap' => '0', - 'schema_version' => '0', + 'schema_version' => '-1', 'weight' => '0', 'info' => 'a:12:{s:4:"name";s:29:"Paragraphs Bundle Permissions";s:11:"description";s:74:"Add view / create / update / delete permissions for all paragraph bundles.";s:4:"core";s:3:"7.x";s:7:"package";s:10:"Paragraphs";s:12:"dependencies";a:1:{i:0;s:10:"paragraphs";}s:7:"version";s:11:"7.x-1.0-rc5";s:7:"project";s:10:"paragraphs";s:9:"datestamp";s:10:"1487261293";s:5:"mtime";i:1487261293;s:3:"php";s:5:"5.2.4";s:5:"files";a:0:{}s:9:"bootstrap";i:0;}', )) @@ -73718,9 +55321,9 @@ $connection->insert('system') 'name' => 'variable', 'type' => 'module', 'owner' => '', - 'status' => '1', - 'bootstrap' => '1', - 'schema_version' => '0', + 'status' => '0', + 'bootstrap' => '0', + 'schema_version' => '-1', 'weight' => '0', 'info' => 'a:12:{s:4:"name";s:8:"Variable";s:11:"description";s:43:"Variable Information and basic variable API";s:7:"package";s:8:"Variable";s:4:"core";s:3:"7.x";s:5:"files";a:9:{i:0;s:27:"includes/forum.variable.inc";i:1;s:28:"includes/locale.variable.inc";i:2;s:26:"includes/menu.variable.inc";i:3;s:26:"includes/node.variable.inc";i:4;s:28:"includes/system.variable.inc";i:5;s:30:"includes/taxonomy.variable.inc";i:6;s:33:"includes/translation.variable.inc";i:7;s:26:"includes/user.variable.inc";i:8;s:13:"variable.test";}s:7:"version";s:7:"7.x-2.5";s:7:"project";s:8:"variable";s:9:"datestamp";s:10:"1398250128";s:5:"mtime";i:1398250128;s:12:"dependencies";a:0:{}s:3:"php";s:5:"5.2.4";s:9:"bootstrap";i:0;}', )) @@ -73795,7 +55398,7 @@ $connection->insert('system') 'name' => 'views', 'type' => 'module', 'owner' => '', - 'status' => '1', + 'status' => '0', 'bootstrap' => '0', 'schema_version' => '7301', 'weight' => '10', @@ -73806,7 +55409,7 @@ $connection->insert('system') 'name' => 'views_ui', 'type' => 'module', 'owner' => '', - 'status' => '1', + 'status' => '0', 'bootstrap' => '0', 'schema_version' => '0', 'weight' => '0', @@ -73821,7 +55424,7 @@ $connection->insert('system') 'bootstrap' => '0', 'schema_version' => '-1', 'weight' => '0', - 'info' => 'a:19:{s:4:"name";s:6:"Bartik";s:11:"description";s:48:"A flexible, recolorable theme with many regions.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:3:{s:14:"css/layout.css";s:28:"themes/bartik/css/layout.css";s:13:"css/style.css";s:27:"themes/bartik/css/style.css";s:14:"css/colors.css";s:28:"themes/bartik/css/colors.css";}s:5:"print";a:1:{s:13:"css/print.css";s:27:"themes/bartik/css/print.css";}}s:7:"regions";a:20:{s:6:"header";s:6:"Header";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:11:"highlighted";s:11:"Highlighted";s:8:"featured";s:8:"Featured";s:7:"content";s:7:"Content";s:13:"sidebar_first";s:13:"Sidebar first";s:14:"sidebar_second";s:14:"Sidebar second";s:14:"triptych_first";s:14:"Triptych first";s:15:"triptych_middle";s:15:"Triptych middle";s:13:"triptych_last";s:13:"Triptych last";s:18:"footer_firstcolumn";s:19:"Footer first column";s:19:"footer_secondcolumn";s:20:"Footer second column";s:18:"footer_thirdcolumn";s:19:"Footer third column";s:19:"footer_fourthcolumn";s:20:"Footer fourth column";s:6:"footer";s:6:"Footer";s:14:"dashboard_main";s:16:"Dashboard (main)";s:17:"dashboard_sidebar";s:19:"Dashboard (sidebar)";s:18:"dashboard_inactive";s:20:"Dashboard (inactive)";}s:8:"settings";a:1:{s:20:"shortcut_module_link";s:1:"0";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:6:"engine";s:11:"phptemplate";s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:28:"themes/bartik/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1498069849;s:15:"overlay_regions";a:5:{i:0;s:14:"dashboard_main";i:1;s:17:"dashboard_sidebar";i:2;s:18:"dashboard_inactive";i:3;s:7:"content";i:4;s:4:"help";}s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}', + 'info' => 'a:18:{s:4:"name";s:6:"Bartik";s:11:"description";s:48:"A flexible, recolorable theme with many regions.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:3:{s:14:"css/layout.css";s:28:"themes/bartik/css/layout.css";s:13:"css/style.css";s:27:"themes/bartik/css/style.css";s:14:"css/colors.css";s:28:"themes/bartik/css/colors.css";}s:5:"print";a:1:{s:13:"css/print.css";s:27:"themes/bartik/css/print.css";}}s:7:"regions";a:17:{s:6:"header";s:6:"Header";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:11:"highlighted";s:11:"Highlighted";s:8:"featured";s:8:"Featured";s:7:"content";s:7:"Content";s:13:"sidebar_first";s:13:"Sidebar first";s:14:"sidebar_second";s:14:"Sidebar second";s:14:"triptych_first";s:14:"Triptych first";s:15:"triptych_middle";s:15:"Triptych middle";s:13:"triptych_last";s:13:"Triptych last";s:18:"footer_firstcolumn";s:19:"Footer first column";s:19:"footer_secondcolumn";s:20:"Footer second column";s:18:"footer_thirdcolumn";s:19:"Footer third column";s:19:"footer_fourthcolumn";s:20:"Footer fourth column";s:6:"footer";s:6:"Footer";}s:8:"settings";a:1:{s:20:"shortcut_module_link";s:1:"0";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:6:"engine";s:11:"phptemplate";s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:28:"themes/bartik/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1498069849;s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}', )) ->values(array( 'filename' => 'themes/garland/garland.info', @@ -73832,7 +55435,7 @@ $connection->insert('system') 'bootstrap' => '0', 'schema_version' => '-1', 'weight' => '0', - 'info' => 'a:19:{s:4:"name";s:7:"Garland";s:11:"description";s:111:"A multi-column theme which can be configured to modify colors and switch between fixed and fluid width layouts.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:8:"settings";a:1:{s:13:"garland_width";s:5:"fluid";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:6:"engine";s:11:"phptemplate";s:7:"regions";a:12:{s:13:"sidebar_first";s:12:"Left sidebar";s:14:"sidebar_second";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";s:11:"highlighted";s:11:"Highlighted";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:14:"dashboard_main";s:16:"Dashboard (main)";s:17:"dashboard_sidebar";s:19:"Dashboard (sidebar)";s:18:"dashboard_inactive";s:20:"Dashboard (inactive)";}s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1498069849;s:15:"overlay_regions";a:5:{i:0;s:14:"dashboard_main";i:1;s:17:"dashboard_sidebar";i:2;s:18:"dashboard_inactive";i:3;s:7:"content";i:4;s:4:"help";}s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}', + 'info' => 'a:18:{s:4:"name";s:7:"Garland";s:11:"description";s:111:"A multi-column theme which can be configured to modify colors and switch between fixed and fluid width layouts.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:8:"settings";a:1:{s:13:"garland_width";s:5:"fluid";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:6:"engine";s:11:"phptemplate";s:7:"regions";a:9:{s:13:"sidebar_first";s:12:"Left sidebar";s:14:"sidebar_second";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";s:11:"highlighted";s:11:"Highlighted";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";}s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1498069849;s:14:"regions_hidden";a:2:{i:0;s:8:"page_top";i:1;s:11:"page_bottom";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}', )) ->values(array( 'filename' => 'themes/seven/seven.info', @@ -73843,7 +55446,7 @@ $connection->insert('system') 'bootstrap' => '0', 'schema_version' => '-1', 'weight' => '0', - 'info' => 'a:19:{s:4:"name";s:5:"Seven";s:11:"description";s:65:"A simple one-column, tableless, fluid width administration theme.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:1:{s:6:"screen";a:2:{s:9:"reset.css";s:22:"themes/seven/reset.css";s:9:"style.css";s:22:"themes/seven/style.css";}}s:8:"settings";a:1:{s:20:"shortcut_module_link";s:1:"1";}s:7:"regions";a:8:{s:7:"content";s:7:"Content";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:13:"sidebar_first";s:13:"First sidebar";s:14:"dashboard_main";s:16:"Dashboard (main)";s:17:"dashboard_sidebar";s:19:"Dashboard (sidebar)";s:18:"dashboard_inactive";s:20:"Dashboard (inactive)";}s:14:"regions_hidden";a:3:{i:0;s:13:"sidebar_first";i:1;s:8:"page_top";i:2;s:11:"page_bottom";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:6:"engine";s:11:"phptemplate";s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:27:"themes/seven/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1498069849;s:15:"overlay_regions";a:5:{i:0;s:14:"dashboard_main";i:1;s:17:"dashboard_sidebar";i:2;s:18:"dashboard_inactive";i:3;s:7:"content";i:4;s:4:"help";}s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}', + 'info' => 'a:18:{s:4:"name";s:5:"Seven";s:11:"description";s:65:"A simple one-column, tableless, fluid width administration theme.";s:7:"package";s:4:"Core";s:7:"version";s:4:"7.56";s:4:"core";s:3:"7.x";s:11:"stylesheets";a:1:{s:6:"screen";a:2:{s:9:"reset.css";s:22:"themes/seven/reset.css";s:9:"style.css";s:22:"themes/seven/style.css";}}s:8:"settings";a:1:{s:20:"shortcut_module_link";s:1:"1";}s:7:"regions";a:5:{s:7:"content";s:7:"Content";s:4:"help";s:4:"Help";s:8:"page_top";s:8:"Page top";s:11:"page_bottom";s:11:"Page bottom";s:13:"sidebar_first";s:13:"First sidebar";}s:14:"regions_hidden";a:3:{i:0;s:13:"sidebar_first";i:1;s:8:"page_top";i:2;s:11:"page_bottom";}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1498069849";s:6:"engine";s:11:"phptemplate";s:8:"features";a:9:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";i:4;s:17:"node_user_picture";i:5;s:20:"comment_user_picture";i:6;s:25:"comment_user_verification";i:7;s:9:"main_menu";i:8;s:14:"secondary_menu";}s:10:"screenshot";s:27:"themes/seven/screenshot.png";s:3:"php";s:5:"5.2.4";s:7:"scripts";a:0:{}s:5:"mtime";i:1498069849;s:28:"overlay_supplemental_regions";a:1:{i:0;s:8:"page_top";}}', )) ->values(array( 'filename' => 'themes/stark/stark.info', @@ -73854,7 +55457,7 @@ $connection->insert('system') 'bootstrap' => '0', 'schema_version' => '-1', 'weight' => '0', - 'info' => "a:18:{s:4:\"name\";s:5:\"Stark\";s:11:\"description\";s:208:\"This theme demonstrates Drupal's default HTML markup and CSS styles. To learn how to build your own theme and override Drupal's default code, see the Theming Guide.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.56\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1498069849\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:12:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:27:\"themes/stark/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1498069849;s:15:\"overlay_regions\";a:5:{i:0;s:14:\"dashboard_main\";i:1;s:17:\"dashboard_sidebar\";i:2;s:18:\"dashboard_inactive\";i:3;s:7:\"content\";i:4;s:4:\"help\";}s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}", + 'info' => "a:17:{s:4:\"name\";s:5:\"Stark\";s:11:\"description\";s:208:\"This theme demonstrates Drupal's default HTML markup and CSS styles. To learn how to build your own theme and override Drupal's default code, see the Theming Guide.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.56\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:10:\"layout.css\";s:23:\"themes/stark/layout.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1498069849\";s:6:\"engine\";s:11:\"phptemplate\";s:7:\"regions\";a:9:{s:13:\"sidebar_first\";s:12:\"Left sidebar\";s:14:\"sidebar_second\";s:13:\"Right sidebar\";s:7:\"content\";s:7:\"Content\";s:6:\"header\";s:6:\"Header\";s:6:\"footer\";s:6:\"Footer\";s:11:\"highlighted\";s:11:\"Highlighted\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";}s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:27:\"themes/stark/screenshot.png\";s:3:\"php\";s:5:\"5.2.4\";s:7:\"scripts\";a:0:{}s:5:\"mtime\";i:1498069849;s:14:\"regions_hidden\";a:2:{i:0;s:8:\"page_top\";i:1;s:11:\"page_bottom\";}s:28:\"overlay_supplemental_regions\";a:1:{i:0;s:8:\"page_top\";}}", )) ->execute(); @@ -74410,52 +56013,22 @@ $connection->insert('tracker_node') ->values(array( 'nid' => '1', 'published' => '1', - 'changed' => '1441032132', -)) -->values(array( - 'nid' => '2', - 'published' => '1', - 'changed' => '1441306832', -)) -->values(array( - 'nid' => '3', - 'published' => '1', - 'changed' => '1471428152', -)) -->values(array( - 'nid' => '4', - 'published' => '1', - 'changed' => '1478755274', -)) -->values(array( - 'nid' => '5', - 'published' => '1', - 'changed' => '1478755314', -)) -->values(array( - 'nid' => '6', - 'published' => '1', - 'changed' => '1504715414', -)) -->values(array( - 'nid' => '7', - 'published' => '1', - 'changed' => '1504715432', + 'changed' => '1421727536', )) ->values(array( 'nid' => '8', 'published' => '1', - 'changed' => '1517542515', + 'changed' => '1518468638', )) ->values(array( 'nid' => '9', 'published' => '1', - 'changed' => '1517542607', + 'changed' => '1518107793', )) ->values(array( 'nid' => '10', 'published' => '1', - 'changed' => '1517542688', + 'changed' => '1518107817', )) ->execute(); @@ -74504,69 +56077,27 @@ $connection->insert('tracker_user') )) ->values(array( 'nid' => '1', - 'uid' => '1', - 'published' => '1', - 'changed' => '1441032132', -)) -->values(array( - 'nid' => '1', - 'uid' => '2', - 'published' => '1', - 'changed' => '1441032132', -)) -->values(array( - 'nid' => '2', 'uid' => '2', 'published' => '1', - 'changed' => '1441306832', -)) -->values(array( - 'nid' => '3', - 'uid' => '1', - 'published' => '1', - 'changed' => '1471428152', -)) -->values(array( - 'nid' => '4', - 'uid' => '1', - 'published' => '1', - 'changed' => '1478755274', -)) -->values(array( - 'nid' => '5', - 'uid' => '1', - 'published' => '1', - 'changed' => '1478755314', -)) -->values(array( - 'nid' => '6', - 'uid' => '1', - 'published' => '1', - 'changed' => '1504715414', -)) -->values(array( - 'nid' => '7', - 'uid' => '1', - 'published' => '1', - 'changed' => '1504715432', + 'changed' => '1421727536', )) ->values(array( 'nid' => '8', 'uid' => '1', 'published' => '1', - 'changed' => '1517542515', + 'changed' => '1518468638', )) ->values(array( 'nid' => '9', 'uid' => '1', 'published' => '1', - 'changed' => '1517542607', + 'changed' => '1518107793', )) ->values(array( 'nid' => '10', 'uid' => '1', 'published' => '1', - 'changed' => '1517542688', + 'changed' => '1518107817', )) ->execute(); @@ -74832,8 +56363,8 @@ $connection->insert('users') 'signature' => '', 'signature_format' => NULL, 'created' => '0', - 'access' => '1517543618', - 'login' => '1517540663', + 'access' => '1518468578', + 'login' => '1518100083', 'status' => '1', 'timezone' => NULL, 'language' => '', @@ -74972,8 +56503,8 @@ $connection->insert('variable') 'value' => 's:15:"edit-submission";', )) ->values(array( - 'name' => 'additional_settings__active_tab_paragraphs_migration_test', - 'value' => 's:13:"edit-workflow";', + 'name' => 'additional_settings__active_tab_paragraphs_test', + 'value' => 's:9:"edit-menu";', )) ->values(array( 'name' => 'additional_settings__active_tab_test_content_type', @@ -75053,7 +56584,7 @@ $connection->insert('variable') )) ->values(array( 'name' => 'cache_flush_cache_block', - 'value' => 'i:1517543643;', + 'value' => 'i:0;', )) ->values(array( 'name' => 'cache_flush_cache_field', @@ -75061,11 +56592,11 @@ $connection->insert('variable') )) ->values(array( 'name' => 'cache_flush_cache_filter', - 'value' => 'i:0;', + 'value' => 'i:1518468578;', )) ->values(array( 'name' => 'cache_flush_cache_form', - 'value' => 'i:0;', + 'value' => 'i:1518468578;', )) ->values(array( 'name' => 'cache_flush_cache_image', @@ -75077,24 +56608,12 @@ $connection->insert('variable') )) ->values(array( 'name' => 'cache_flush_cache_page', - 'value' => 'i:1517543643;', -)) -->values(array( - 'name' => 'cache_flush_cache_path', - 'value' => 'i:0;', -)) -->values(array( - 'name' => 'cache_flush_cache_variable', 'value' => 'i:0;', )) ->values(array( - 'name' => 'cache_flush_cache_views', + 'name' => 'cache_flush_cache_path', 'value' => 'i:0;', )) -->values(array( - 'name' => 'cache_flush_cache_views_data', - 'value' => 'i:1517540655;', -)) ->values(array( 'name' => 'cache_lifetime', 'value' => 's:3:"300";', @@ -75124,7 +56643,7 @@ $connection->insert('variable') 'value' => 'i:0;', )) ->values(array( - 'name' => 'comment_anonymous_paragraphs_migration_test', + 'name' => 'comment_anonymous_paragraphs_test', 'value' => 'i:0;', )) ->values(array( @@ -75164,7 +56683,7 @@ $connection->insert('variable') 'value' => 'i:1;', )) ->values(array( - 'name' => 'comment_default_mode_paragraphs_migration_test', + 'name' => 'comment_default_mode_paragraphs_test', 'value' => 'i:1;', )) ->values(array( @@ -75192,7 +56711,7 @@ $connection->insert('variable') 'value' => 's:2:"50";', )) ->values(array( - 'name' => 'comment_default_per_page_paragraphs_migration_test', + 'name' => 'comment_default_per_page_paragraphs_test', 'value' => 's:2:"50";', )) ->values(array( @@ -75220,7 +56739,7 @@ $connection->insert('variable') 'value' => 'i:1;', )) ->values(array( - 'name' => 'comment_form_location_paragraphs_migration_test', + 'name' => 'comment_form_location_paragraphs_test', 'value' => 'i:1;', )) ->values(array( @@ -75236,8 +56755,8 @@ $connection->insert('variable') 'value' => 's:1:"0";', )) ->values(array( - 'name' => 'comment_paragraphs_migration_test', - 'value' => 's:1:"2";', + 'name' => 'comment_paragraphs_test', + 'value' => 's:1:"1";', )) ->values(array( 'name' => 'comment_preview_article', @@ -75260,7 +56779,7 @@ $connection->insert('variable') 'value' => 's:1:"1";', )) ->values(array( - 'name' => 'comment_preview_paragraphs_migration_test', + 'name' => 'comment_preview_paragraphs_test', 'value' => 's:1:"1";', )) ->values(array( @@ -75288,7 +56807,7 @@ $connection->insert('variable') 'value' => 'i:1;', )) ->values(array( - 'name' => 'comment_subject_field_paragraphs_migration_test', + 'name' => 'comment_subject_field_paragraphs_test', 'value' => 'i:1;', )) ->values(array( @@ -75321,7 +56840,7 @@ $connection->insert('variable') )) ->values(array( 'name' => 'cron_last', - 'value' => 'i:1517540655;', + 'value' => 'i:1518468578;', )) ->values(array( 'name' => 'cron_threshold_error', @@ -75333,11 +56852,15 @@ $connection->insert('variable') )) ->values(array( 'name' => 'css_js_query_string', - 'value' => 's:6:"p3i863";', + 'value' => 's:6:"p43exb";', )) ->values(array( 'name' => 'ctools_last_cron', - 'value' => 'i:1517540655;', + 'value' => 'i:1421720834;', +)) +->values(array( + 'name' => 'dashboard_stashed_blocks', + 'value' => 'a:5:{i:0;a:3:{s:6:"module";s:4:"node";s:5:"delta";s:6:"recent";s:6:"region";s:14:"dashboard_main";}i:1;a:3:{s:6:"module";s:4:"user";s:5:"delta";s:3:"new";s:6:"region";s:17:"dashboard_sidebar";}i:2;a:3:{s:6:"module";s:6:"search";s:5:"delta";s:4:"form";s:6:"region";s:17:"dashboard_sidebar";}i:3;a:3:{s:6:"module";s:7:"comment";s:5:"delta";s:6:"recent";s:6:"region";s:18:"dashboard_inactive";}i:4;a:3:{s:6:"module";s:4:"user";s:5:"delta";s:6:"online";s:6:"region";s:18:"dashboard_inactive";}}', )) ->values(array( 'name' => 'date_api_version', @@ -75359,10 +56882,6 @@ $connection->insert('variable') 'name' => 'default_nodes_main', 'value' => 's:2:"10";', )) -->values(array( - 'name' => 'drupal_css_cache_files', - 'value' => 'a:7:{s:64:"823ba1006db72809515d2221cd02ec1075d7b49b0c07f49307b3a7930bfdd9e4";s:64:"public://css/css_xE-rWrJf-fncB6ztZfd2huxqgxu4WO-qwma6Xer30m4.css";s:64:"82ca759946e9bf33a7ff59b358a1888568276da42d9901be1034a0c0e072e866";s:64:"public://css/css_vdCzpt5RRVtDzGpF94dcgdqUpCnRccmWqw97zGgqJww.css";s:64:"f842127c36b4332002d9006e7a4a44d12636aae474bef7af5c4618b39b22a9e6";s:64:"public://css/css_pb-jqymbixQnjsCBHki6Q5nPHibrXUUlr6TqV7rY0d8.css";s:64:"fdebd8c4e97db417b89428fa0b8a974a14f1bbd7140a4cfe3f3e4b1ac6c5b45b";s:64:"public://css/css_oLMhlAjtEjfijMhrjRHl1kyE8FeWl1R9oOPEAzlJuCs.css";s:64:"ebb3f433ad4107b1ac31e9d7de0f9a5d399040e9f82b6364211dcfaadea158c0";s:64:"public://css/css_Nv0ct-zkzztuah_LbaPFF8ZkdSEk-LxBtTWMm9mN_F8.css";s:64:"d401ff00529278775cc09d3f49c747fa47bbea354bfa7054ce6f15a42d115ff8";s:64:"public://css/css_g6BHMTouiQTdbzWDEEGT2nkJX-QqclhtbzG6sUKituY.css";s:64:"dcaba969a7a8820433cd286dd546a3caf933877928ca8d97d28aae0e27437539";s:64:"public://css/css_7lX6UQp1_UGSQMXhZOsPLoJNgqTSWrEzHzfuRdTbCOM.css";}', -)) ->values(array( 'name' => 'drupal_http_request_fails', 'value' => 'b:0;', @@ -75408,15 +56927,19 @@ $connection->insert('variable') 'value' => 'a:2:{s:10:"view_modes";a:0:{}s:12:"extra_fields";a:2:{s:4:"form";a:0:{}s:7:"display";a:0:{}}}', )) ->values(array( - 'name' => 'field_bundle_settings_node__paragraphs_migration_test', - 'value' => 'a:2:{s:10:"view_modes";a:0:{}s:12:"extra_fields";a:2:{s:4:"form";a:1:{s:5:"title";a:1:{s:6:"weight";s:2:"-5";}}s:7:"display";a:0:{}}}', + 'name' => 'field_bundle_settings_node__paragraphs_test', + 'value' => 'a:2:{s:10:"view_modes";a:6:{s:6:"teaser";a:1:{s:15:"custom_settings";b:1;}s:4:"full";a:1:{s:15:"custom_settings";b:0;}s:3:"rss";a:1:{s:15:"custom_settings";b:0;}s:12:"search_index";a:1:{s:15:"custom_settings";b:0;}s:13:"search_result";a:1:{s:15:"custom_settings";b:0;}s:5:"print";a:1:{s:15:"custom_settings";b:0;}}s:12:"extra_fields";a:2:{s:4:"form";a:1:{s:5:"title";a:1:{s:6:"weight";s:2:"-5";}}s:7:"display";a:0:{}}}', )) ->values(array( 'name' => 'field_bundle_settings_node__test_content_type', 'value' => 'a:2:{s:10:"view_modes";a:6:{s:6:"teaser";a:1:{s:15:"custom_settings";b:1;}s:4:"full";a:1:{s:15:"custom_settings";b:0;}s:3:"rss";a:1:{s:15:"custom_settings";b:0;}s:12:"search_index";a:1:{s:15:"custom_settings";b:0;}s:13:"search_result";a:1:{s:15:"custom_settings";b:0;}s:5:"print";a:1:{s:15:"custom_settings";b:0;}}s:12:"extra_fields";a:2:{s:4:"form";a:1:{s:5:"title";a:1:{s:6:"weight";s:1:"0";}}s:7:"display";a:0:{}}}', )) ->values(array( - 'name' => 'field_bundle_settings_paragraphs_item__paragraph_bundle_test', + 'name' => 'field_bundle_settings_paragraphs_item__paragraph_bundle_one', + 'value' => 'a:2:{s:10:"view_modes";a:0:{}s:12:"extra_fields";a:2:{s:4:"form";a:0:{}s:7:"display";a:0:{}}}', +)) +->values(array( + 'name' => 'field_bundle_settings_paragraphs_item__paragraph_bundle_two', 'value' => 'a:2:{s:10:"view_modes";a:0:{}s:12:"extra_fields";a:2:{s:4:"form";a:0:{}s:7:"display";a:0:{}}}', )) ->values(array( @@ -75515,10 +57038,6 @@ $connection->insert('variable') 'name' => 'install_time', 'value' => 'i:1421694923;', )) -->values(array( - 'name' => 'javascript_parsed', - 'value' => 'a:26:{i:0;s:14:"misc/drupal.js";i:1;s:14:"misc/jquery.js";i:2;s:19:"misc/jquery.once.js";i:3;s:32:"modules/overlay/overlay-child.js";i:4;s:12:"misc/form.js";i:5;s:19:"misc/tableselect.js";i:6;s:19:"misc/tableheader.js";s:10:"refresh:is";s:7:"waiting";i:7;s:16:"misc/textarea.js";i:8;s:34:"modules/field/modules/text/text.js";i:9;s:24:"modules/filter/filter.js";i:10;s:21:"misc/jquery.cookie.js";i:11;s:19:"misc/jquery.form.js";i:12;s:16:"misc/progress.js";i:13;s:12:"misc/ajax.js";i:14;s:17:"misc/tabledrag.js";i:15;s:20:"modules/file/file.js";i:16;s:42:"sites/all/modules/paragraphs/paragraphs.js";i:17;s:16:"misc/collapse.js";i:18;s:20:"modules/book/book.js";i:19;s:14:"misc/states.js";i:20;s:20:"modules/node/node.js";i:21;s:36:"modules/comment/comment-node-form.js";i:22;s:20:"modules/path/path.js";i:23;s:20:"misc/autocomplete.js";i:24;s:21:"misc/vertical-tabs.js";}', -)) ->values(array( 'name' => 'language_content_type_article', 'value' => 's:1:"2";', @@ -75540,7 +57059,7 @@ $connection->insert('variable') 'value' => 's:1:"0";', )) ->values(array( - 'name' => 'language_content_type_paragraphs_migration_test', + 'name' => 'language_content_type_paragraphs_test', 'value' => 's:1:"2";', )) ->values(array( @@ -75601,7 +57120,7 @@ $connection->insert('variable') )) ->values(array( 'name' => 'menu_masks', - 'value' => 'a:42:{i:0;i:501;i:1;i:493;i:2;i:490;i:3;i:250;i:4;i:247;i:5;i:246;i:6;i:245;i:7;i:234;i:8;i:126;i:9;i:125;i:10;i:124;i:11;i:123;i:12;i:122;i:13;i:121;i:14;i:117;i:15;i:63;i:16;i:62;i:17;i:61;i:18;i:60;i:19;i:59;i:20;i:58;i:21;i:56;i:22;i:44;i:23;i:31;i:24;i:30;i:25;i:29;i:26;i:28;i:27;i:26;i:28;i:24;i:29;i:21;i:30;i:15;i:31;i:14;i:32;i:13;i:33;i:12;i:34;i:11;i:35;i:8;i:36;i:7;i:37;i:6;i:38;i:5;i:39;i:3;i:40;i:2;i:41;i:1;}', + 'value' => 'a:39:{i:0;i:501;i:1;i:493;i:2;i:250;i:3;i:247;i:4;i:246;i:5;i:245;i:6;i:126;i:7;i:125;i:8;i:123;i:9;i:122;i:10;i:121;i:11;i:117;i:12;i:63;i:13;i:62;i:14;i:61;i:15;i:60;i:16;i:59;i:17;i:58;i:18;i:56;i:19;i:44;i:20;i:31;i:21;i:30;i:22;i:29;i:23;i:28;i:24;i:26;i:25;i:24;i:26;i:21;i:27;i:15;i:28;i:14;i:29;i:13;i:30;i:12;i:31;i:11;i:32;i:8;i:33;i:7;i:34;i:6;i:35;i:5;i:36;i:3;i:37;i:2;i:38;i:1;}', )) ->values(array( 'name' => 'menu_options_article', @@ -75624,7 +57143,7 @@ $connection->insert('variable') 'value' => 'a:1:{i:0;s:9:"main-menu";}', )) ->values(array( - 'name' => 'menu_options_paragraphs_migration_test', + 'name' => 'menu_options_paragraphs_test', 'value' => 'a:0:{}', )) ->values(array( @@ -75656,7 +57175,7 @@ $connection->insert('variable') 'value' => 's:11:"main-menu:0";', )) ->values(array( - 'name' => 'menu_parent_paragraphs_migration_test', + 'name' => 'menu_parent_paragraphs_test', 'value' => 's:11:"main-menu:0";', )) ->values(array( @@ -75673,7 +57192,7 @@ $connection->insert('variable') )) ->values(array( 'name' => 'node_cron_last', - 'value' => 's:10:"1504715432";', + 'value' => 's:10:"1518107793";', )) ->values(array( 'name' => 'node_options_article', @@ -75696,7 +57215,7 @@ $connection->insert('variable') 'value' => 'a:1:{i:0;s:6:"status";}', )) ->values(array( - 'name' => 'node_options_paragraphs_migration_test', + 'name' => 'node_options_paragraphs_test', 'value' => 'a:2:{i:0;s:6:"status";i:1;s:7:"promote";}', )) ->values(array( @@ -75724,7 +57243,7 @@ $connection->insert('variable') 'value' => 's:1:"1";', )) ->values(array( - 'name' => 'node_preview_paragraphs_migration_test', + 'name' => 'node_preview_paragraphs_test', 'value' => 's:1:"1";', )) ->values(array( @@ -75772,7 +57291,7 @@ $connection->insert('variable') 'value' => 'i:0;', )) ->values(array( - 'name' => 'node_submitted_paragraphs_migration_test', + 'name' => 'node_submitted_paragraphs_test', 'value' => 'i:1;', )) ->values(array( @@ -75804,7 +57323,7 @@ $connection->insert('variable') 'value' => 'i:0;', )) ->values(array( - 'name' => 'save_continue_paragraphs_migration_test', + 'name' => 'save_continue_paragraphs_test', 'value' => 's:19:"Save and add fields";', )) ->values(array( @@ -75893,7 +57412,7 @@ $connection->insert('variable') )) ->values(array( 'name' => 'statistics_day_timestamp', - 'value' => 'i:1517540655;', + 'value' => 'i:1518468578;', )) ->values(array( 'name' => 'statistics_enable_access_log', @@ -75951,10 +57470,6 @@ $connection->insert('variable') 'name' => 'tracker_batch_size', 'value' => 'i:999;', )) -->values(array( - 'name' => 'tracker_index_nid', - 'value' => 'i:0;', -)) ->values(array( 'name' => 'update_check_frequency', 'value' => 'i:1;', @@ -75965,7 +57480,7 @@ $connection->insert('variable') )) ->values(array( 'name' => 'update_last_check', - 'value' => 'i:1517540656;', + 'value' => 'i:1518468581;', )) ->values(array( 'name' => 'update_max_fetch_attempts', @@ -76127,10 +57642,6 @@ $connection->insert('variable') 'name' => 'user_signatures', 'value' => 'i:0;', )) -->values(array( - 'name' => 'variable_module_list', - 'value' => 'a:5:{s:4:"i18n";a:1:{i:0;s:18:"i18n_language_list";}s:11:"i18n_string";a:5:{i:0;s:33:"i18n_string_translate_langcode_en";i:1;s:33:"i18n_string_translate_langcode_is";i:2;s:27:"i18n_string_allowed_formats";i:3;s:27:"i18n_string_source_language";i:4;s:17:"i18n_string_debug";}s:5:"forum";a:5:{i:0;s:15:"forum_hot_topic";i:1;s:14:"forum_per_page";i:2;s:11:"forum_order";i:3;s:20:"forum_nav_vocabulary";i:4;s:16:"forum_containers";}s:9:"i18n_node";a:23:{i:0;s:27:"i18n_hide_translation_links";i:1;s:31:"i18n_node_default_language_none";i:2;s:25:"i18n_node_options_article";i:3;s:22:"i18n_node_options_page";i:4;s:22:"i18n_node_options_blog";i:5;s:22:"i18n_node_options_book";i:6;s:23:"i18n_node_options_forum";i:7;s:43:"i18n_node_options_paragraphs_migration_test";i:8;s:35:"i18n_node_options_test_content_type";i:9;s:38:"i18n_node_default_language_for_article";i:10;s:35:"i18n_node_default_language_for_page";i:11;s:35:"i18n_node_default_language_for_blog";i:12;s:35:"i18n_node_default_language_for_book";i:13;s:36:"i18n_node_default_language_for_forum";i:14;s:56:"i18n_node_default_language_for_paragraphs_migration_test";i:15;s:48:"i18n_node_default_language_for_test_content_type";i:16;s:26:"i18n_node_extended_article";i:17;s:23:"i18n_node_extended_page";i:18;s:23:"i18n_node_extended_blog";i:19;s:23:"i18n_node_extended_book";i:20;s:24:"i18n_node_extended_forum";i:21;s:44:"i18n_node_extended_paragraphs_migration_test";i:22;s:36:"i18n_node_extended_test_content_type";}s:4:"menu";a:16:{i:0;s:22:"menu_main_links_source";i:1;s:27:"menu_secondary_links_source";i:2;s:19:"menu_parent_article";i:3;s:16:"menu_parent_page";i:4;s:16:"menu_parent_blog";i:5;s:16:"menu_parent_book";i:6;s:17:"menu_parent_forum";i:7;s:37:"menu_parent_paragraphs_migration_test";i:8;s:29:"menu_parent_test_content_type";i:9;s:20:"menu_options_article";i:10;s:17:"menu_options_page";i:11;s:17:"menu_options_blog";i:12;s:17:"menu_options_book";i:13;s:18:"menu_options_forum";i:14;s:38:"menu_options_paragraphs_migration_test";i:15;s:30:"menu_options_test_content_type";}}', -)) ->execute(); $connection->schema()->createTable('watchdog', array( diff --git a/tests/src/Kernel/ParagraphsMigrationTest.php b/tests/src/Kernel/ParagraphsMigrationTest.php index a969e08..5bf0d1d 100644 --- a/tests/src/Kernel/ParagraphsMigrationTest.php +++ b/tests/src/Kernel/ParagraphsMigrationTest.php @@ -2,6 +2,13 @@ namespace Drupal\Tests\paragraphs\Kernel; +use Drupal\Core\Entity\Entity\EntityFormDisplay; +use Drupal\Core\Entity\Entity\EntityViewDisplay; +use Drupal\Core\Entity\Entity\EntityViewMode; +use Drupal\field\Entity\FieldConfig; +use Drupal\field\Entity\FieldStorageConfig; +use Drupal\migrate\Plugin\MigrationInterface; +use Drupal\node\Entity\Node; use Drupal\paragraphs\Entity\ParagraphsType; use Drupal\Tests\migrate_drupal\Kernel\MigrateDrupalTestBase; @@ -15,18 +22,34 @@ class ParagraphsMigrationTest extends MigrateDrupalTestBase { /** * {@inheritdoc} */ - public static $modules = ['paragraphs', 'user', 'system', 'field']; + public static $modules = [ + 'comment', + 'datetime', + 'datetime_range', + 'entity_reference_revisions', + 'field', + 'file', + 'image', + 'link', + 'menu_ui', + 'migrate_drupal', + 'node', + 'options', + 'paragraphs', + 'system', + 'taxonomy', + 'telephone', + 'text', + 'user', + ]; /** * {@inheritdoc} */ public function setUp() { parent::setUp(); - $this->loadFixture(__DIR__ . '/../../fixtures/drupal7.php'); - $this->executeMigration('d7_field_collection_type'); - $this->executeMigration('d7_paragraphs_type'); } /** @@ -44,17 +67,243 @@ class ParagraphsMigrationTest extends MigrateDrupalTestBase { } /** - * Test if the field collection type was brought over as a paragraph. + * Check if a field storage config entity was created for the paragraph. + * + * @param string $field_name + * The field to test for. + * @param string $field_type + * The expected field type. */ - public function testFieldCollectionTypeMigration() { - $this->assertParagraphBundleExists('field_collection_test', 'Field collection test'); + protected function assertParagraphEntityFieldExists($field_name, $field_type) { + $field_storage = FieldStorageConfig::loadByName('paragraph', $field_name); + $this->assertNotNull($field_storage); + $this->assertEquals($field_type, $field_storage->getType()); + } + + /** + * Check if a field storage entity was created for the paragraph fields. + * + * @param string $entity_type + * The entity type to check on. + * @param string $field_name + * The field name to check for. + */ + protected function assertParagraphFieldExists($entity_type, $field_name) { + $field_storage = FieldStorageConfig::loadByName($entity_type, $field_name); + $this->assertNotNull($field_storage); + $this->assertEquals('entity_reference_revisions', $field_storage->getType()); + $this->assertEquals('paragraph', $field_storage->getSetting('target_type')); + } + + /** + * Test if the given field instance was created. + */ + protected function assertFieldInstanceExists($entity_type, $bundle, $field_name, $field_type = 'entity_reference_revisions') { + $field = FieldConfig::loadByName($entity_type, $bundle, $field_name); + $this->assertNotNull($field); + $this->assertEquals($field_type, $field->getType()); + } + + /** + * Execute a migration's dependencies followed by the migration. + * + * @param string $plugin_id + * The migration id to execute. + */ + protected function executeMigrationWithDependencies($plugin_id) { + /** @var \Drupal\migrate\Plugin\MigrationPluginManagerInterface $manager */ + $manager = $this->container->get('plugin.manager.migration'); + $migrations = $manager->createInstances($plugin_id); + foreach ($migrations as $migration) { + $this->executeMigrationDependencies($migration); + $this->executeMigration($migration); + } } /** - * Test if the paragraph type was brought over as a paragraph. + * Find and execute a migration's dependencies. + * + * @param \Drupal\migrate\Plugin\MigrationInterface $migration + * The Migration from which to execute dependencies. + */ + protected function executeMigrationDependencies(MigrationInterface $migration) { + $dependencies = $migration->getMigrationDependencies(); + foreach ($dependencies['required'] as $dependency) { + $plugin = $this->getMigration($dependency); + if (!$plugin->allRowsProcessed()) { + $this->executeMigrationDependencies($plugin); + $this->executeMigration($plugin); + } + } + foreach ($dependencies['optional'] as $dependency) { + if ($plugin = $this->getMigration($dependency)) { + if (!$plugin->allRowsProcessed()) { + $this->executeMigrationDependencies($plugin); + $this->executeMigration($plugin); + } + } + } + } + + /** + * {@inheritdoc} + */ + protected function prepareMigration(MigrationInterface $migration) { + + // We want to run the revision migraiton without running all the node + // migrations. + if ($migration->id() == 'd7_node_revision:paragraphs_test') { + $migration->set('migration_dependencies', [ + 'required' => ['d7_node:paragraphs_test'], + 'optional' => [], + ]); + $migration->set('requirements', ['d7_node:paragraphs_test' => 'd7_node:paragraphs_test']); + + } + } + + /** + * Test if the paragraph/fc types were brought over as a paragraph. */ public function testParagraphsTypeMigration() { - $this->assertParagraphBundleExists('paragraph_bundle_test', 'Paragraph Bundle Test'); + $this->executeMigration('d7_field_collection_type'); + $this->executeMigration('d7_paragraphs_type'); + + $this->assertParagraphBundleExists('field_collection_test', 'Field collection test'); + $this->assertParagraphBundleExists('paragraph_bundle_one', 'Paragraph Bundle One'); + $this->assertParagraphBundleExists('paragraph_bundle_two', 'Paragraph Bundle Two'); + } + + /** + * Test that the paragraph and field collection field storage was migrated. + */ + public function testParagraphsFieldMigration() { + $this->executeMigration('d7_field'); + + $this->assertParagraphEntityFieldExists('field_email', 'email'); + $this->assertParagraphEntityFieldExists('field_text', 'string'); + $this->assertParagraphEntityFieldExists('field_text_list', 'list_string'); + $this->assertParagraphEntityFieldExists('field_integer_list', 'list_integer'); + + $this->assertParagraphFieldExists('node', 'field_any_paragraph'); + $this->assertParagraphFieldExists('node', 'field_paragraph_one_only'); + $this->assertParagraphFieldExists('node', 'field_field_collection_test'); + } + + /** + * Test if the paragraph field instances were migrated. + */ + public function testParagrahsFieldInstanceMigration() { + + $this->executeMigrationWithDependencies('d7_field_instance'); + + $this->assertFieldInstanceExists('node', 'paragraphs_test', 'field_field_collection_test'); + $field = FieldConfig::loadByName('node', 'paragraphs_test', 'field_field_collection_test'); + + $handler_settings = $field->getSetting('handler_settings'); + $this->assertEquals(0, $handler_settings['negate']); + $this->assertCount(1, $handler_settings['target_bundles']); + $this->assertEquals('field_collection_test', $handler_settings['target_bundles']['field_collection_test']); + $this->assertCount(3, $handler_settings['target_bundles_drag_drop']); + + $this->assertFieldInstanceExists('node', 'paragraphs_test', 'field_any_paragraph'); + $field = FieldConfig::loadByName('node', 'paragraphs_test', 'field_any_paragraph'); + $handler_settings = $field->getSetting('handler_settings'); + $this->assertEquals(1, $handler_settings['negate']); + $this->assertCount(1, $handler_settings['target_bundles']); + $this->assertEquals('field_collection_test', $handler_settings['target_bundles']['field_collection_test']); + $this->assertCount(3, $handler_settings['target_bundles_drag_drop']); + + $this->assertFieldInstanceExists('node', 'paragraphs_test', 'field_paragraph_one_only'); + $field = FieldConfig::loadByName('node', 'paragraphs_test', 'field_paragraph_one_only'); + $handler_settings = $field->getSetting('handler_settings'); + $this->assertEquals(0, $handler_settings['negate']); + $this->assertCount(1, $handler_settings['target_bundles']); + $this->assertEquals('paragraph_bundle_one', $handler_settings['target_bundles']['paragraph_bundle_one']); + $this->assertCount(3, $handler_settings['target_bundles_drag_drop']); + + $this->assertFieldInstanceExists('paragraph', 'paragraph_bundle_one', 'field_text', 'string'); + $this->assertFieldInstanceExists('paragraph', 'paragraph_bundle_one', 'field_text_list', 'list_string'); + $this->assertFieldInstanceExists('paragraph', 'paragraph_bundle_two', 'field_text', 'string'); + $this->assertFieldInstanceExists('paragraph', 'paragraph_bundle_two', 'field_email', 'email'); + $this->assertFieldInstanceExists('paragraph', 'field_collection_test', 'field_text', 'string'); + $this->assertFieldInstanceExists('paragraph', 'field_collection_test', 'field_integer_list', 'list_integer'); + + } + + /** + * Test Paragraph widget Migration. + */ + public function testParagraphsWidgets() { + + $this->executeMigrationWithDependencies('d7_field_instance_widget_settings'); + + $formDisplay = EntityFormDisplay::load('node.paragraphs_test.default'); + $this->assertNotNull($formDisplay); + $field_any_paragraph = $formDisplay->getComponent('field_any_paragraph'); + $field_collection_test = $formDisplay->getComponent('field_field_collection_test'); + $field_paragraph_one_only = $formDisplay->getComponent('field_paragraph_one_only'); + $this->assertNotNull($field_any_paragraph); + $this->assertNotNull($field_collection_test); + $this->assertNotNull($field_paragraph_one_only); + $this->assertEquals('button', $field_any_paragraph['settings']['add_mode']); + $this->assertEquals('Any Paragraph', $field_any_paragraph['settings']['title']); + $this->assertEquals('Any Paragraphs', $field_any_paragraph['settings']['title_plural']); + $this->assertEquals('closed', $field_any_paragraph['settings']['edit_mode']); + } + + /** + * Test Paragraph Formatter Migration. + */ + public function testParagraphFormatters() { + + $this->executeMigrationWithDependencies('d7_field_formatter_settings'); + + $full = EntityViewMode::load('paragraph.full'); + $this->assertNotNull($full); + + $editor_preview = EntityViewMode::load('paragraph.paragraphs_editor_preview'); + $this->assertNotNull($editor_preview); + + $viewDisplay = EntityViewDisplay::load('node.paragraphs_test.default'); + $this->assertNotNull($viewDisplay); + $field_any_paragraph = $viewDisplay->getComponent('field_any_paragraph'); + $field_collection_test = $viewDisplay->getComponent('field_field_collection_test'); + $field_paragraph_one_only = $viewDisplay->getComponent('field_paragraph_one_only'); + $this->assertNotNull($field_any_paragraph); + $this->assertNotNull($field_collection_test); + $this->assertNull($field_paragraph_one_only); + $this->assertEquals('paragraphs_editor_preview', $field_any_paragraph['settings']['view_mode']); + } + + /** + * Test migrating the paragraph content. + */ + public function testParagraphContentMigration() { + $this->installEntitySchema('file'); + $this->installEntitySchema('node'); + $this->installEntitySchema('paragraph'); + $this->installEntitySchema('comment'); + $this->installSchema('comment', [ + 'comment_entity_statistics', + ]); + + $this->executeMigrationWithDependencies('d7_field_collection_revisions'); + $this->executeMigrationWithDependencies('d7_paragraphs_revisions'); + $this->executeMigrationWithDependencies('d7_node:paragraphs_test'); + + $this->prepareMigrations([ + 'd7_node:article' => [], + 'd7_node:forum' => [], + 'd7_node:test_content_type' => [], + ]); + + $this->executeMigration('d7_node_revision:paragraphs_test'); + + $node_8 = Node::load(8); + $this->assertEquals('Field Collection Text Data One UND', $node_8->field_field_collection_test->referencedEntities()[0]->field_text->value); + $this->assertEquals('Paragraph Field Two Bundle One Revision Two UND', $node_8->field_paragraph_one_only->referencedEntities()[0]->field_text->value); + } }