diff --git includes/password.inc includes/password.inc index 93d34f8..13659f8 100644 --- includes/password.inc +++ includes/password.inc @@ -230,7 +230,8 @@ function user_hash_password($password, $count_log2 = 0) { function user_check_password($password, $account) { if (substr($account->pass, 0, 2) == 'U$') { // This may be an updated password from user_update_7000(). Such hashes - // have 'U' added as the first character and need an extra md5(). + // have 'U' added as the first character and need an extra md5() (see the + // Drupal 7 documentation). $stored_hash = substr($account->pass, 1); $password = md5($password); } @@ -264,7 +265,7 @@ function user_check_password($password, $account) { * password is available. A new hash is needed when the desired iteration count * has changed through a change in the variable password_count_log2 or * DRUPAL_HASH_COUNT or if the user's password hash was generated in an update - * like user_update_7000(). + * like user_update_7000() (see the Drupal 7 documentation). * * Alternative implementations of this function might use other criteria based * on the fields in $account. diff --git includes/update.inc includes/update.inc index 69bc061..a70b47f 100644 --- includes/update.inc +++ includes/update.inc @@ -68,569 +68,63 @@ function update_check_incompatibility($name, $type = 'module') { } /** - * Performs extra steps required to bootstrap when using a Drupal 6 database. + * Performs extra steps required to bootstrap when using a Drupal 7 database. * - * Users who still have a Drupal 6 database (and are in the process of - * updating to Drupal 7) need extra help before a full bootstrap can be + * Users who still have a Drupal 7 database (and are in the process of + * updating to Drupal 8) need extra help before a full bootstrap can be * achieved. This function does the necessary preliminary work that allows * the bootstrap to be successful. * * No access check has been performed when this function is called, so no * irreversible changes to the database are made here. */ -function update_prepare_d7_bootstrap() { - // Allow the bootstrap to proceed even if a Drupal 6 settings.php file is - // still being used. - include_once DRUPAL_ROOT . '/includes/install.inc'; - drupal_bootstrap(DRUPAL_BOOTSTRAP_CONFIGURATION); - global $databases, $db_url, $db_prefix, $update_rewrite_settings; - if (empty($databases) && !empty($db_url)) { - $databases = update_parse_db_url($db_url, $db_prefix); - // Record the fact that the settings.php file will need to be rewritten. - $update_rewrite_settings = TRUE; - $settings_file = conf_path() . '/settings.php'; - $writable = drupal_verify_install_file($settings_file, FILE_EXIST|FILE_READABLE|FILE_WRITABLE); - $requirements = array( - 'settings file' => array( - 'title' => 'Settings file', - 'value' => $writable ? 'The settings file is writable.' : 'The settings file is not writable.', - 'severity' => $writable ? REQUIREMENT_OK : REQUIREMENT_ERROR, - 'description' => $writable ? '' : 'Drupal requires write permissions to ' . $settings_file . ' during the update process. If you are unsure how to grant file permissions, consult the online handbook.', - ), - ); - update_extra_requirements($requirements); - } - - // The new {blocked_ips} table is used in Drupal 7 to store a list of - // banned IP addresses. If this table doesn't exist then we are still - // running on a Drupal 6 database, so we suppress the unavoidable errors - // that occur by creating a static list. - $GLOBALS['conf']['blocked_ips'] = array(); - - // Check that PDO is available and that the correct PDO database driver is - // loaded. Bootstrapping to DRUPAL_BOOTSTRAP_DATABASE will result in a fatal - // error otherwise. - $message = ''; - $pdo_link = 'http://drupal.org/requirements/pdo'; - // Check that PDO is loaded. - if (!extension_loaded('pdo')) { - $message = '

PDO is required!

Drupal 7 requires PHP ' . DRUPAL_MINIMUM_PHP . ' or higher with the PHP Data Objects (PDO) extension enabled.

'; - } - // The PDO::ATTR_DEFAULT_FETCH_MODE constant is not available in the PECL - // version of PDO. - elseif (!defined('PDO::ATTR_DEFAULT_FETCH_MODE')) { - $message = '

The wrong version of PDO is installed!

Drupal 7 requires the PHP Data Objects (PDO) extension from PHP core to be enabled. This system has the older PECL version installed.'; - $pdo_link = 'http://drupal.org/requirements/pdo#pecl'; - } - // Check that the correct driver is loaded for the database being updated. - // If we have no driver information (for example, if someone tried to create - // the Drupal 7 $databases array themselves but did not do it correctly), - // this message will be confusing, so do not perform the check; instead, just - // let the database connection fail in the code that follows. - elseif (isset($databases['default']['default']['driver']) && !in_array($databases['default']['default']['driver'], PDO::getAvailableDrivers())) { - $message = '

A PDO database driver is required!

You need to enable the PDO_' . strtoupper($databases['default']['default']['driver']) . ' database driver for PHP ' . DRUPAL_MINIMUM_PHP . ' or higher so that Drupal 7 can access the database.

'; - } - if ($message) { - print $message . '

See the system requirements page for more information.

'; - exit(); - } - - // Allow the database system to work even if the registry has not been - // created yet. - drupal_bootstrap(DRUPAL_BOOTSTRAP_DATABASE); - - // If the site has not updated to Drupal 7 yet, check to make sure that it is - // running an up-to-date version of Drupal 6 before proceeding. Note this has +function update_prepare_d8_bootstrap() { + // If the site has not updated to Drupal 8 yet, check to make sure that it is + // running an up-to-date version of Drupal 7 before proceeding. Note this has // to happen AFTER the database bootstraps because of // drupal_get_installed_schema_version(). $system_schema = drupal_get_installed_schema_version('system'); - if ($system_schema < 7000) { + if ($system_schema < 8000) { $has_required_schema = $system_schema >= REQUIRED_D7_SCHEMA_VERSION; $requirements = array( - 'drupal 6 version' => array( - 'title' => 'Drupal 6 version', - 'value' => $has_required_schema ? 'You are running a current version of Drupal 6.' : 'You are not running a current version of Drupal 6', + 'drupal 7 version' => array( + 'title' => 'Drupal 7 version', + 'value' => $has_required_schema ? 'You are running a current version of Drupal 7.' : 'You are not running a current version of Drupal 7', 'severity' => $has_required_schema ? REQUIREMENT_OK : REQUIREMENT_ERROR, - 'description' => $has_required_schema ? '' : 'Please update your Drupal 6 installation to the most recent version before attempting to upgrade to Drupal 7', - ), - ); - - // Make sure that the database environment is properly set up. - try { - db_run_tasks(db_driver()); - } - catch (DatabaseTaskException $e) { - $requirements['database tasks'] = array( - 'title' => 'Database environment', - 'value' => 'There is a problem with your database environment', - 'severity' => REQUIREMENT_ERROR, - 'description' => $e->getMessage(), - ); - } - - update_extra_requirements($requirements); - - // Allow a D6 session to work, since the upgrade has not been performed yet. - $d6_session_name = update_get_d6_session_name(); - if (!empty($_COOKIE[$d6_session_name])) { - // Set the current sid to the one found in the D6 cookie. - $sid = $_COOKIE[$d6_session_name]; - $_COOKIE[session_name()] = $sid; - session_id($sid); - } - } - - // Create the registry tables. - if (!db_table_exists('registry')) { - $schema['registry'] = array( - 'fields' => array( - 'name' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''), - 'type' => array('type' => 'varchar', 'length' => 9, 'not null' => TRUE, 'default' => ''), - 'filename' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''), - 'module' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''), - 'weight' => array('type' => 'int', 'not null' => TRUE, 'default' => 0), - ), - 'primary key' => array('name', 'type'), - 'indexes' => array( - 'hook' => array('type', 'weight', 'module'), - ), - ); - db_create_table('registry', $schema['registry']); - } - if (!db_table_exists('registry_file')) { - $schema['registry_file'] = array( - 'fields' => array( - 'filename' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE), - 'hash' => array('type' => 'varchar', 'length' => 64, 'not null' => TRUE), + 'description' => $has_required_schema ? '' : 'Please update your Drupal 7 installation to the most recent version before attempting to upgrade to Drupal 8', ), - 'primary key' => array('filename'), ); - db_create_table('registry_file', $schema['registry_file']); - } - - // Older versions of Drupal 6 do not include the semaphore table, which is - // required to bootstrap, so we add it now so that we can bootstrap and - // provide a reasonable error message. - if (!db_table_exists('semaphore')) { - $semaphore = array( - 'description' => 'Table for holding semaphores, locks, flags, etc. that cannot be stored as Drupal variables since they must not be cached.', - 'fields' => array( - 'name' => array( - 'description' => 'Primary Key: Unique name.', - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '' - ), - 'value' => array( - 'description' => 'A value for the semaphore.', - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '' - ), - 'expire' => array( - 'description' => 'A Unix timestamp with microseconds indicating when the semaphore should expire.', - 'type' => 'float', - 'size' => 'big', - 'not null' => TRUE - ), - ), - 'indexes' => array( - 'value' => array('value'), - 'expire' => array('expire'), - ), - 'primary key' => array('name'), - ); - db_create_table('semaphore', $semaphore); - } - - // The new cache_bootstrap bin is required to bootstrap to - // DRUPAL_BOOTSTRAP_SESSION, so create it here rather than in - // update_fix_d7_requirements(). - if (!db_table_exists('cache_bootstrap')) { - $cache_bootstrap = array( - 'description' => 'Cache table for data required to bootstrap Drupal, may be routed to a shared memory cache.', - 'fields' => array( - 'cid' => array( - 'description' => 'Primary Key: Unique cache ID.', - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'data' => array( - 'description' => 'A collection of data to cache.', - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'big', - ), - 'expire' => array( - 'description' => 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.', - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'created' => array( - 'description' => 'A Unix timestamp indicating when the cache entry was created.', - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'serialized' => array( - 'description' => 'A flag to indicate whether content is serialized (1) or not (0).', - 'type' => 'int', - 'size' => 'small', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'expire' => array('expire'), - ), - 'primary key' => array('cid'), - ); - db_create_table('cache_bootstrap', $cache_bootstrap); - } - - // Set a valid timezone for 6 -> 7 upgrade process. - drupal_bootstrap(DRUPAL_BOOTSTRAP_VARIABLES); - $timezone_offset = variable_get('date_default_timezone', 0); - if (is_numeric($timezone_offset)) { - // Save the original offset. - variable_set('date_temporary_timezone', $timezone_offset); - // Set the timezone for this request only. - $GLOBALS['conf']['date_default_timezone'] = 'UTC'; } } /** - * Perform Drupal 6.x to 7.x updates that are required for update.php + * Perform Drupal 7.x to 8.x updates that are required for update.php * to function properly. * - * This function runs when update.php is run the first time for 7.x, + * This function runs when update.php is run the first time for 8.x, * even before updates are selected or performed. It is important * that if updates are not ultimately performed that no changes are * made which make it impossible to continue using the prior version. */ -function update_fix_d7_requirements() { +function update_fix_d8_requirements() { global $conf; - // Rewrite the settings.php file if necessary, see - // update_prepare_d7_bootstrap(). - global $update_rewrite_settings, $db_url, $db_prefix; - if (!empty($update_rewrite_settings)) { - $databases = update_parse_db_url($db_url, $db_prefix); - $salt = drupal_hash_base64(drupal_random_bytes(55)); - file_put_contents(conf_path() . '/settings.php', "\n" . '$databases = ' . var_export($databases, TRUE) . ";\n\$drupal_hash_salt = '$salt';", FILE_APPEND); - } - if (drupal_get_installed_schema_version('system') < 7000 && !variable_get('update_d7_requirements', FALSE)) { - // Change 6.x system table field values to 7.x equivalent. - // Change field values. - db_change_field('system', 'schema_version', 'schema_version', array( - 'type' => 'int', - 'size' => 'small', - 'not null' => TRUE, - 'default' => -1) - ); - db_change_field('system', 'status', 'status', array( - 'type' => 'int', 'not null' => TRUE, 'default' => 0)); - db_change_field('system', 'weight', 'weight', array( - 'type' => 'int', 'not null' => TRUE, 'default' => 0)); - db_change_field('system', 'bootstrap', 'bootstrap', array( - 'type' => 'int', 'not null' => TRUE, 'default' => 0)); - // Drop and recreate 6.x indexes. - db_drop_index('system', 'bootstrap'); - db_add_index('system', 'bootstrap', array( - 'status', 'bootstrap', array('type', 12), 'weight', 'name')); - - db_drop_index('system' ,'modules'); - db_add_index('system', 'modules', array(array( - 'type', 12), 'status', 'weight', 'name')); - - db_drop_index('system', 'type_name'); - db_add_index('system', 'type_name', array(array('type', 12), 'name')); - // Add 7.x indexes. - db_add_index('system', 'system_list', array('weight', 'name')); - - // Add the cache_path table. - if (db_table_exists('cache_path')) { - db_drop_table('cache_path'); - } - require_once('./modules/system/system.install'); - $schema['cache_path'] = system_schema_cache_7054(); - $schema['cache_path']['description'] = 'Cache table used for path alias lookups.'; - db_create_table('cache_path', $schema['cache_path']); - - // system_update_7042() renames columns, but these are needed to bootstrap. - // Add empty columns for now. - db_add_field('url_alias', 'source', array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '')); - db_add_field('url_alias', 'alias', array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '')); - - // Add new columns to {menu_router}. - db_add_field('menu_router', 'delivery_callback', array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '')); - db_add_field('menu_router', 'context', array( - 'description' => 'Only for local tasks (tabs) - the context of a local task to control its placement.', - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - )); - db_drop_index('menu_router', 'tab_parent'); - db_add_index('menu_router', 'tab_parent', array(array('tab_parent', 64), 'weight', 'title')); - db_add_field('menu_router', 'theme_callback', array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '')); - db_add_field('menu_router', 'theme_arguments', array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '')); - - // Add the role_permission table. - $schema['role_permission'] = array( - 'fields' => array( - 'rid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'permission' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - ), - 'primary key' => array('rid', 'permission'), - 'indexes' => array( - 'permission' => array('permission'), - ), - ); - db_create_table('role_permission', $schema['role_permission']); - - // Drops and recreates semaphore value index. - db_drop_index('semaphore', 'value'); - db_add_index('semaphore', 'value', array('value')); - - $schema['date_format_type'] = array( - 'description' => 'Stores configured date format types.', - 'fields' => array( - 'type' => array( - 'description' => 'The date format type, e.g. medium.', - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - ), - 'title' => array( - 'description' => 'The human readable name of the format type.', - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - ), - 'locked' => array( - 'description' => 'Whether or not this is a system provided format.', - 'type' => 'int', - 'size' => 'tiny', - 'default' => 0, - 'not null' => TRUE, - ), - ), - 'primary key' => array('type'), - ); - - $schema['date_formats'] = array( - 'description' => 'Stores configured date formats.', - 'fields' => array( - 'dfid' => array( - 'description' => 'The date format identifier.', - 'type' => 'serial', - 'not null' => TRUE, - 'unsigned' => TRUE, - ), - 'format' => array( - 'description' => 'The date format string.', - 'type' => 'varchar', - 'length' => 100, - 'not null' => TRUE, - ), - 'type' => array( - 'description' => 'The date format type, e.g. medium.', - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - ), - 'locked' => array( - 'description' => 'Whether or not this format can be modified.', - 'type' => 'int', - 'size' => 'tiny', - 'default' => 0, - 'not null' => TRUE, - ), - ), - 'primary key' => array('dfid'), - 'unique keys' => array('formats' => array('format', 'type')), - ); - - $schema['date_format_locale'] = array( - 'description' => 'Stores configured date formats for each locale.', - 'fields' => array( - 'format' => array( - 'description' => 'The date format string.', - 'type' => 'varchar', - 'length' => 100, - 'not null' => TRUE, - ), - 'type' => array( - 'description' => 'The date format type, e.g. medium.', - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - ), - 'language' => array( - 'description' => 'A {languages}.language for this format to be used with.', - 'type' => 'varchar', - 'length' => 12, - 'not null' => TRUE, - ), - ), - 'primary key' => array('type', 'language'), - ); - - db_create_table('date_format_type', $schema['date_format_type']); - // Sites that have the Drupal 6 Date module installed already have the - // following tables. - if (db_table_exists('date_formats')) { - db_rename_table('date_formats', 'd6_date_formats'); - } - db_create_table('date_formats', $schema['date_formats']); - if (db_table_exists('date_format_locale')) { - db_rename_table('date_format_locale', 'd6_date_format_locale'); - } - db_create_table('date_format_locale', $schema['date_format_locale']); - - // Add the queue table. - $schema['queue'] = array( - 'description' => 'Stores items in queues.', - 'fields' => array( - 'item_id' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'description' => 'Primary Key: Unique item ID.', - ), - 'name' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - 'description' => 'The queue name.', - ), - 'data' => array( - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'big', - 'serialize' => TRUE, - 'description' => 'The arbitrary data for the item.', - ), - 'expire' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'Timestamp when the claim lease expires on the item.', - ), - 'created' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'Timestamp when the item was created.', - ), - ), - 'primary key' => array('item_id'), - 'indexes' => array( - 'name_created' => array('name', 'created'), - 'expire' => array('expire'), - ), - ); - // Check for queue table that may remain from D5 or D6, if found - //drop it. - if (db_table_exists('queue')) { - db_drop_table('queue'); - } - - db_create_table('queue', $schema['queue']); - - // Create the sequences table. - $schema['sequences'] = array( - 'description' => 'Stores IDs.', - 'fields' => array( - 'value' => array( - 'description' => 'The value of the sequence.', - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - ), - 'primary key' => array('value'), - ); - // Check for sequences table that may remain from D5 or D6, if found - //drop it. - if (db_table_exists('sequences')) { - db_drop_table('sequences'); - } - db_create_table('sequences', $schema['sequences']); - // Initialize the table with the maximum current increment of the tables - // that will rely on it for their ids. - $max_aid = db_query('SELECT MAX(aid) FROM {actions_aid}')->fetchField(); - $max_uid = db_query('SELECT MAX(uid) FROM {users}')->fetchField(); - $max_batch_id = db_query('SELECT MAX(bid) FROM {batch}')->fetchField(); - db_insert('sequences')->fields(array('value' => max($max_aid, $max_uid, $max_batch_id)))->execute(); - - // Add column for locale context. - if (db_table_exists('locales_source')) { - db_add_field('locales_source', 'context', array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', 'description' => 'The context this string applies to.')); - } - - // Rename 'site_offline_message' variable to 'maintenance_mode_message' - // and 'site_offline' variable to 'maintenance_mode'. - // Old variable is removed in update for system.module, see - // system_update_7036(). - if ($message = variable_get('site_offline_message', NULL)) { - variable_set('maintenance_mode_message', $message); - } - // Old variable is removed in update for system.module, see - // system_update_7069(). - $site_offline = variable_get('site_offline', -1); - if ($site_offline != -1) { - variable_set('maintenance_mode', $site_offline); - } - - // Add ssid column and index. - db_add_field('sessions', 'ssid', array('description' => "Secure session ID. The value is generated by Drupal's session handlers.", 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '')); - db_add_index('sessions', 'ssid', array('ssid')); - // Drop existing primary key. - db_drop_primary_key('sessions'); - // Add new primary key. - db_add_primary_key('sessions', array('sid', 'ssid')); - - // Allow longer javascript file names. - if (db_table_exists('languages')) { - db_change_field('languages', 'javascript', 'javascript', array('type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => '')); - } - - // Rename action description to label. - db_change_field('actions', 'description', 'label', array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '0')); - - variable_set('update_d7_requirements', TRUE); + if (drupal_get_installed_schema_version('system') < 8000 && !variable_get('update_d8_requirements', FALSE)) { + // @todo: Make critical, first-run changes to the database here. + variable_set('update_d8_requirements', TRUE); } - update_fix_d7_install_profile(); + update_fix_d8_install_profile(); } /** * Register the currently installed profile in the system table. * - * Install profiles are now treated as modules by Drupal, and have an upgrade - * path based on their schema version in the system table. - * * The install profile will be set to schema_version 0, as it has already been * installed. Any other hook_update_N functions provided by the install profile * will be run by update.php. */ -function update_fix_d7_install_profile() { +function update_fix_d8_install_profile() { $profile = drupal_get_profile(); $results = db_select('system', 's') @@ -687,67 +181,6 @@ function update_fix_d7_install_profile() { } /** - * Parse pre-Drupal 7 database connection URLs and return D7 compatible array. - * - * @return - * Drupal 7 DBTNG compatible array of database connection information. - */ -function update_parse_db_url($db_url, $db_prefix) { - $databases = array(); - if (!is_array($db_url)) { - $db_url = array('default' => $db_url); - } - foreach ($db_url as $database => $url) { - $url = parse_url($url); - $databases[$database]['default'] = array( - // MySQLi uses the mysql driver. - 'driver' => $url['scheme'] == 'mysqli' ? 'mysql' : $url['scheme'], - // Remove the leading slash to get the database name. - 'database' => substr(urldecode($url['path']), 1), - 'username' => urldecode($url['user']), - 'password' => isset($url['pass']) ? urldecode($url['pass']) : '', - 'host' => urldecode($url['host']), - 'port' => isset($url['port']) ? urldecode($url['port']) : '', - ); - if (isset($db_prefix)) { - $databases[$database]['default']['prefix'] = $db_prefix; - } - } - return $databases; -} - -/** - * Constructs a session name compatible with a D6 environment. - * - * @return - * D6-compatible session name string. - * - * @see drupal_settings_initialize() - */ -function update_get_d6_session_name() { - global $base_url, $cookie_domain; - $cookie_secure = ini_get('session.cookie_secure'); - - // If a custom cookie domain is set in settings.php, that variable forms - // the basis of the session name. Re-compute the D7 hashing method to find - // out if $cookie_domain was used as the session name. - if (($cookie_secure ? 'SSESS' : 'SESS') . substr(hash('sha256', $cookie_domain), 0, 32) == session_name()) { - $session_name = $cookie_domain; - } - else { - // Otherwise use $base_url as session name, without the protocol - // to use the same session identifiers across http and https. - list( , $session_name) = explode('://', $base_url, 2); - } - - if ($cookie_secure) { - $session_name .= 'SSL'; - } - - return 'SESS' . md5($session_name); -} - -/** * Perform one update and store the results for display on finished page. * * If an update function completes successfully, it should return a message @@ -1138,10 +571,10 @@ function update_get_update_function_list($starting_updates) { * requirement that the first update function needs to run before the second. * For example, consider this graph: * - * system_update_7000 ---> system_update_7001 ---> system_update_7002 + * system_update_8000 ---> system_update_8001 ---> system_update_8002 * - * Visually, this indicates that system_update_7000() must run before - * system_update_7001(), which in turn must run before system_update_7002(). + * Visually, this indicates that system_update_8000() must run before + * system_update_8001(), which in turn must run before system_update_8002(). * * The function takes into account standard dependencies within each module, as * shown above (i.e., the fact that each module's updates must run in numerical @@ -1288,15 +721,15 @@ function update_retrieve_dependencies() { // implementation of hook_update_dependencies() required this // ordering: // - // system_update_7001 ---> user_update_7000 + // system_update_8001 ---> user_update_8000 // // but another module's implementation of the hook required this // one: // - // system_update_7002 ---> user_update_7000 + // system_update_8002 ---> user_update_8000 // - // we record the second one, since system_update_7001() is always - // guaranteed to run before system_update_7002() anyway (within + // we record the second one, since system_update_8001() is always + // guaranteed to run before system_update_8002() anyway (within // an individual module, updates are always run in numerical // order). if (!isset($return[$module][$update][$module_dependency]) || $update_dependency > $return[$module][$update][$module_dependency]) { @@ -1313,7 +746,7 @@ function update_retrieve_dependencies() { } /** - * @defgroup update-api-6.x-to-7.x Update versions of API functions + * @defgroup update-api-7.x-to-8.x Update versions of API functions * @{ * Functions similar to normal API function but not firing hooks. * @@ -1323,5 +756,5 @@ function update_retrieve_dependencies() { */ /** - * @} End of "defgroup update-api-6.x-to-7.x" + * @} End of "defgroup update-api-7.x-to-8.x" */ diff --git modules/aggregator/aggregator.install modules/aggregator/aggregator.install index f19d7de..eecd14f 100644 --- modules/aggregator/aggregator.install +++ modules/aggregator/aggregator.install @@ -278,31 +278,3 @@ function aggregator_schema() { return $schema; } - -/** - * Add hash column to aggregator_feed table. - */ -function aggregator_update_7000() { - db_add_field('aggregator_feed', 'hash', array('type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => '')); -} - -/** - * Add aggregator teaser length to settings from old global default teaser length - */ -function aggregator_update_7001() { - variable_set('aggregator_teaser_length', variable_get('teaser_length')); -} - -/** - * Add queued timestamp. - */ -function aggregator_update_7002() { - db_add_field('aggregator_feed', 'queued', array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'Time when this feed was queued for refresh, 0 if not queued.', - )); - db_add_index('aggregator_feed', 'queued', array('queued')); -} - diff --git modules/block/block.install modules/block/block.install index f6dfb35..deed13a 100644 --- modules/block/block.install +++ modules/block/block.install @@ -185,281 +185,3 @@ function block_install() { ->condition('name', 'block') ->execute(); } - -/** - * Implements hook_update_dependencies(). - */ -function block_update_dependencies() { - // Block update 7005 needs to query the list of existing text formats and - // therefore must run after filter_update_7000(). - $dependencies['block'][7005] = array( - 'filter' => 7000, - ); - // Ensure that format columns are only changed after Filter module has changed - // the primary records. - $dependencies['block'][7007] = array( - 'filter' => 7010, - ); - - return $dependencies; -} - -/** - * @addtogroup updates-6.x-to-7.x - * @{ - */ - -/** - * Set system.weight to a low value for block module. - * - * Block should go first so that other modules can alter its output - * during hook_page_alter(). Almost everything on the page is a block, - * so before block module runs, there will not be much to alter. - */ -function block_update_7000() { - db_update('system') - ->fields(array('weight' => '-5')) - ->condition('name', 'block') - ->execute(); -} - -/** - * Rename {blocks} table to {block}, {blocks_roles} to {block_role} and - * {boxes} to {block_custom}. - */ -function block_update_7002() { - db_rename_table('blocks', 'block'); - db_rename_table('blocks_roles', 'block_role'); - db_rename_table('boxes', 'block_custom'); -} - -/** - * Change the weight column to normal int. - */ -function block_update_7003() { - db_drop_index('block', 'list'); - db_change_field('block', 'weight', 'weight', array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'Block weight within region.', - ), array( - 'indexes' => array( - 'list' => array('theme', 'status', 'region', 'weight', 'module'), - ), - )); -} - -/** - * Add new blocks to new regions, migrate custom variables to blocks. - */ -function block_update_7004() { - // Collect a list of themes with blocks. - $themes_with_blocks = array(); - $result = db_query("SELECT s.name FROM {system} s INNER JOIN {block} b ON s.name = b.theme WHERE s.type = 'theme' GROUP by s.name"); - - $insert = db_insert('block')->fields(array('module', 'delta', 'theme', 'status', 'weight', 'region', 'pages', 'cache')); - foreach ($result as $theme) { - $themes_with_blocks[] = $theme->name; - // Add new system generated help block. - $insert->values(array( - 'module' => 'system', - 'delta' => 'help', - 'theme' => $theme->name, - 'status' => 1, - 'weight' => 0, - 'region' => 'help', - 'pages' => '', - 'cache' => DRUPAL_CACHE_PER_ROLE, - )); - // Add new system generated main page content block. - $insert->values(array( - 'module' => 'system', - 'delta' => 'main', - 'theme' => $theme->name, - 'status' => 1, - 'weight' => 0, - 'region' => 'content', - 'pages' => '', - 'cache' => DRUPAL_NO_CACHE, - )); - } - $insert->execute(); - - // Migrate blocks from left/right regions to first/second regions. - db_update('block') - ->fields(array('region' => 'sidebar_first')) - ->condition('region', 'left') - ->execute(); - db_update('block') - ->fields(array('region' => 'sidebar_second')) - ->condition('region', 'right') - ->execute(); - - // Migrate contact form information. - $default_format = variable_get('filter_default_format', 1); - if ($contact_help = variable_get('contact_form_information', '')) { - $bid = db_insert('block_custom') - ->fields(array( - 'body' => $contact_help, - 'info' => 'Contact page help', - 'format' => $default_format, - )) - ->execute(); - - $insert = db_insert('block')->fields(array('module', 'delta', 'theme', 'status', 'weight', 'region', 'visibility', 'pages', 'cache')); - foreach ($themes_with_blocks as $theme) { - // Add contact help block for themes, which had blocks. - $insert->values(array( - 'module' => 'block', - 'delta' => $bid, - 'theme' => $theme, - 'status' => 1, - 'weight' => 5, - 'region' => 'help', - 'visibility' => BLOCK_VISIBILITY_LISTED, - 'pages' => 'contact', - 'cache' => DRUPAL_NO_CACHE, - )); - } - drupal_set_message('The contact form information setting was migrated to a custom block and set up to only show on the site-wide contact page. The block was set to use the default text format, which might differ from the HTML based format used before. Check the block and ensure that the output is right.'); - } - $insert->execute(); - - // Migrate user help setting. - if ($user_help = variable_get('user_registration_help', '')) { - $bid = db_insert('block_custom')->fields(array('body' => $user_help, 'info' => 'User registration guidelines', 'format' => $default_format))->execute(); - - $insert = db_insert('block')->fields(array('module', 'delta', 'theme', 'status', 'weight', 'region', 'visibility', 'pages', 'cache')); - foreach ($themes_with_blocks as $theme) { - // Add user registration help block for themes, which had blocks. - $insert->values(array( - 'module' => 'block', - 'delta' => $bid, - 'theme' => $theme, - 'status' => 1, - 'weight' => 5, - 'region' => 'help', - 'visibility' => BLOCK_VISIBILITY_LISTED, - 'pages' => 'user/register', - 'cache' => DRUPAL_NO_CACHE, - )); - } - drupal_set_message('The user registration guidelines were migrated to a custom block and set up to only show on the user registration page. The block was set to use the default text format, which might differ from the HTML based format used before. Check the block and ensure that the output is right.'); - $insert->execute(); - } - - // Migrate site mission setting. - if ($mission = variable_get('site_mission')) { - $bid = db_insert('block_custom')->fields(array('body' => $mission, 'info' => 'Site mission', 'format' => $default_format))->execute(); - - $insert = db_insert('block')->fields(array('module', 'delta', 'theme', 'status', 'weight', 'region', 'visibility', 'pages', 'cache')); - foreach ($themes_with_blocks as $theme) { - // Add mission block for themes, which had blocks. - $insert->values(array( - 'module' => 'block', - 'delta' => $bid, - 'theme' => $theme, - 'status' => 1, - 'weight' => 0, - 'region' => 'highlighted', - 'visibility' => BLOCK_VISIBILITY_LISTED, - 'pages' => '', - 'cache' => DRUPAL_NO_CACHE, - )); - } - drupal_set_message('The site mission was migrated to a custom block and set up to only show on the front page in the highlighted content region. The block was set to use the default text format, which might differ from the HTML based format used before. Check the block and ensure that the output is right. If your theme does not have a highlighted content region, you might need to relocate the block.'); - $insert->execute(); - // Migrate mission to RSS site description. - variable_set('feed_description', $mission); - } - - // Migrate site footer message to a custom block. - if ($footer_message = variable_get('site_footer', '')) { - $bid = db_insert('block_custom')->fields(array('body' => $footer_message, 'info' => 'Footer message', 'format' => $default_format))->execute(); - - $insert = db_insert('block')->fields(array('module', 'delta', 'theme', 'status', 'weight', 'region', 'pages', 'cache')); - foreach ($themes_with_blocks as $theme) { - // Add site footer block for themes, which had blocks. - // Set low weight, so the block comes early (it used to be - // before the other blocks). - $insert->values(array( - 'module' => 'block', - 'delta' => $bid, - 'theme' => $theme, - 'status' => 1, - 'weight' => -10, - 'region' => 'footer', - 'pages' => '', - 'cache' => DRUPAL_NO_CACHE, - )); - } - drupal_set_message('The footer message was migrated to a custom block and set up to appear in the footer. The block was set to use the default text format, which might differ from the HTML based format used before. Check the block and ensure that the output is right. If your theme does not have a footer region, you might need to relocate the block.'); - $insert->execute(); - } - - // Remove the variables (even if they were saved empty on the admin interface), - // to avoid keeping clutter in the variables table. - variable_del('contact_form_information'); - variable_del('user_registration_help'); - variable_del('site_mission'); - variable_del('site_footer'); - - // Rebuild theme data, so the new 'help' region is identified. - system_rebuild_theme_data(); -} - -/** - * Update the {block_custom}.format column. - */ -function block_update_7005() { - // For an explanation of these updates, see the code comments in - // user_update_7010(). - db_change_field('block_custom', 'format', 'format', array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => FALSE, - 'description' => 'The {filter_format}.format of the block body.', - )); - db_update('block_custom') - ->fields(array('format' => NULL)) - ->condition('body', '') - ->condition('format', 0) - ->execute(); - $existing_formats = db_query("SELECT format FROM {filter_format}")->fetchCol(); - $default_format = variable_get('filter_default_format', 1); - db_update('block_custom') - ->fields(array('format' => $default_format)) - ->isNotNull('format') - ->condition('format', $existing_formats, 'NOT IN') - ->execute(); -} - -/** - * Recreates cache_block table. - * - * Converts fields that hold serialized variables from text to blob. - * Removes 'headers' column. - */ -function block_update_7006() { - $schema = system_schema_cache_7054(); - - db_drop_table('cache_block'); - db_create_table('cache_block', $schema); -} - -/** - * Change {block_custom}.format into varchar. - */ -function block_update_7007() { - db_change_field('block_custom', 'format', 'format', array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => FALSE, - 'description' => 'The {filter_format}.format of the block body.', - )); -} - -/** - * @} End of "addtogroup updates-6.x-to-7.x" - */ diff --git modules/comment/comment.install modules/comment/comment.install index aac9575..da70150 100644 --- modules/comment/comment.install +++ modules/comment/comment.install @@ -77,445 +77,3 @@ function comment_modules_enabled($modules) { } } } - -/** - * Implements hook_update_dependencies(). - */ -function comment_update_dependencies() { - // Comment update 7005 creates the comment body field and therefore must run - // after text module has been enabled and entities have been updated. - $dependencies['comment'][7005] = array( - 'system' => 7021, - ); - - // Comment update 7006 needs to query the list of existing text formats and - // therefore must run after filter_update_7000(). - $dependencies['comment'][7006] = array( - 'filter' => 7000, - ); - - return $dependencies; -} - -/** - * @addtogroup updates-6.x-to-7.x - * @{ - */ - -/** - * Rename comment display setting variables. - */ -function comment_update_7000() { - $types = _update_7000_node_get_types(); - foreach ($types as $type => $type_object) { - variable_del('comment_default_order' . $type); - - // Drupal 6 had four display modes: - // - COMMENT_MODE_FLAT_COLLAPSED = 1 - // - COMMENT_MODE_FLAT_EXPANDED = 2 - // - COMMENT_MODE_THREADED_COLLAPSED = 3 - // - COMMENT_MODE_THREADED_EXPANDED = 4 - // - // Drupal 7 doesn't support collapsed/expanded modes anymore, so we - // migrate all the flat modes to COMMENT_MODE_FLAT (0) and all the threaded - // modes to COMMENT_MODE_THREADED (1). - $setting = variable_get('comment_default_mode_' . $type, 4); - if ($setting == 3 || $setting == 4) { - variable_set('comment_default_mode_' . $type, 1); - } - else { - variable_set('comment_default_mode_' . $type, 0); - } - - // There were only two comment modes in the past: - // - 1 was 'required' previously, convert into DRUPAL_REQUIRED (2). - // - 0 was 'optional' previously, convert into DRUPAL_OPTIONAL (1). - $preview = variable_get('comment_preview_' . $type, 1) ? 2 : 1; - variable_set('comment_preview_' . $type, $preview); - } -} - -/** - * Change comment status from published being 0 to being 1 - */ -function comment_update_7001() { - // Choose a temporary status value different from the existing status values. - $tmp_status = db_query('SELECT MAX(status) FROM {comments}')->fetchField() + 1; - - $changes = array( - 0 => $tmp_status, - 1 => 0, - $tmp_status => 1, - ); - - foreach ($changes as $old => $new) { - db_update('comments') - ->fields(array('status' => $new)) - ->condition('status', $old) - ->execute(); - } -} - -/** - * Rename {comments} table to {comment} and upgrade it. - */ -function comment_update_7002() { - db_rename_table('comments', 'comment'); - - // Add user-related indexes. - db_add_index('comment', 'comment_uid', array('uid')); - db_add_index('node_comment_statistics', 'last_comment_uid', array('last_comment_uid')); - - // Create a language column. - db_add_field('comment', 'language', array( - 'type' => 'varchar', - 'length' => 12, - 'not null' => TRUE, - 'default' => '', - )); - db_add_index('comment', 'comment_nid_language', array('nid', 'language')); -} - -/** - * Split {comment}.timestamp into 'created' and 'changed', improve indexing on {comment}. - */ -function comment_update_7003() { - // Drop the old indexes. - db_drop_index('comment', 'status'); - db_drop_index('comment', 'pid'); - - // Create a created column. - db_add_field('comment', 'created', array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - )); - - // Rename the timestamp column to changed. - db_change_field('comment', 'timestamp', 'changed', array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - )); - - // Migrate the data. - // @todo db_update() should support this. - db_query('UPDATE {comment} SET created = changed'); - - // Recreate the indexes. - // The 'comment_num_new' index is optimized for comment_num_new() - // and comment_new_page_count(). - db_add_index('comment', 'comment_num_new', array('nid', 'status', 'created', 'cid', 'thread')); - db_add_index('comment', 'comment_pid_status', array('pid', 'status')); -} - -/** - * Upgrade the {node_comment_statistics} table. - */ -function comment_update_7004() { - db_add_field('node_comment_statistics', 'cid', array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'The {comment}.cid of the last comment.', - )); - db_add_index('node_comment_statistics', 'cid', array('cid')); - - // Add an index on the comment_count. - db_add_index('node_comment_statistics', 'comment_count', array('comment_count')); -} - -/** - * Create the comment_body field. - */ -function comment_update_7005() { - // Create comment body field. - $field = array( - 'field_name' => 'comment_body', - 'type' => 'text_long', - 'module' => 'text', - 'entity_types' => array( - 'comment', - ), - 'settings' => array(), - 'cardinality' => 1, - ); - _update_7000_field_create_field($field); - - // Add the field to comments for all existing bundles. - $generic_instance = array( - 'entity_type' => 'comment', - 'label' => t('Comment'), - 'settings' => array( - 'text_processing' => 1, - ), - 'required' => TRUE, - 'display' => array( - 'default' => array( - 'label' => 'hidden', - 'type' => 'text_default', - 'weight' => 0, - 'settings' => array(), - 'module' => 'text', - ), - ), - 'widget' => array( - 'type' => 'text_textarea', - 'settings' => array( - 'rows' => 5, - ), - 'weight' => 0, - 'module' => 'text', - ), - 'description' => '', - ); - - $types = _update_7000_node_get_types(); - foreach ($types as $type => $type_object) { - $instance = $generic_instance; - $instance['bundle'] = 'comment_node_' . $type; - _update_7000_field_create_instance($field, $instance); - } -} - -/** - * Migrate data from the comment field to field storage. - */ -function comment_update_7006(&$sandbox) { - // This is a multipass update. First set up some comment variables. - if (empty($sandbox['total'])) { - $comments = (bool) db_query_range('SELECT 1 FROM {comment}', 0, 1)->fetchField(); - $sandbox['types'] = array(); - if ($comments) { - $sandbox['types'] = array_keys(_update_7000_node_get_types()); - } - $sandbox['total'] = count($sandbox['types']); - } - - if (!empty($sandbox['types'])) { - $type = array_shift($sandbox['types']); - - $query = db_select('comment', 'c'); - $query->innerJoin('node', 'n', 'c.nid = n.nid AND n.type = :type', array(':type' => $type)); - $query->addField('c', 'cid', 'entity_id'); - $query->addExpression("'comment_node_$type'", 'bundle'); - $query->addExpression("'comment'", 'entity_type'); - $query->addExpression('0', 'deleted'); - $query->addExpression("'" . LANGUAGE_NONE . "'", 'language'); - $query->addExpression('0', 'delta'); - $query->addField('c', 'comment', 'comment_body_value'); - $query->addField('c', 'format', 'comment_body_format'); - - db_insert('field_data_comment_body') - ->from($query) - ->execute(); - - $sandbox['#finished'] = 1 - count($sandbox['types']) / $sandbox['total']; - } - - // On the last pass of the update, $sandbox['types'] will be empty. - if (empty($sandbox['types'])) { - // Update the comment body text formats. For an explanation of these - // updates, see the code comments in user_update_7010(). - db_update('field_data_comment_body') - ->fields(array('comment_body_format' => NULL)) - ->condition('comment_body_value', '') - ->condition('comment_body_format', 0) - ->execute(); - $existing_formats = db_query("SELECT format FROM {filter_format}")->fetchCol(); - $default_format = variable_get('filter_default_format', 1); - db_update('field_data_comment_body') - ->fields(array('comment_body_format' => $default_format)) - ->isNotNull('comment_body_format') - ->condition('comment_body_format', $existing_formats, 'NOT IN') - ->execute(); - - // Finally, remove the old comment data. - db_drop_field('comment', 'comment'); - db_drop_field('comment', 'format'); - } -} - -/** - * @} End of "addtogroup updates-6.x-to-7.x" - */ - -/** - * Implements hook_schema(). - */ -function comment_schema() { - $schema['comment'] = array( - 'description' => 'Stores comments and associated data.', - 'fields' => array( - 'cid' => array( - 'type' => 'serial', - 'not null' => TRUE, - 'description' => 'Primary Key: Unique comment ID.', - ), - 'pid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'The {comment}.cid to which this comment is a reply. If set to 0, this comment is not a reply to an existing comment.', - ), - 'nid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'The {node}.nid to which this comment is a reply.', - ), - 'uid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'The {users}.uid who authored the comment. If set to 0, this comment was created by an anonymous user.', - ), - 'subject' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - 'description' => 'The comment title.', - ), - 'hostname' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - 'description' => "The author's host name.", - ), - 'created' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'The time that the comment was created, as a Unix timestamp.', - ), - 'changed' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'The time that the comment was last edited, as a Unix timestamp.', - ), - 'status' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 1, - 'size' => 'tiny', - 'description' => 'The published status of a comment. (0 = Not Published, 1 = Published)', - ), - 'thread' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'description' => "The vancode representation of the comment's place in a thread.", - ), - 'name' => array( - 'type' => 'varchar', - 'length' => 60, - 'not null' => FALSE, - 'description' => "The comment author's name. Uses {users}.name if the user is logged in, otherwise uses the value typed into the comment form.", - ), - 'mail' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => FALSE, - 'description' => "The comment author's e-mail address from the comment form, if user is anonymous, and the 'Anonymous users may/must leave their contact information' setting is turned on.", - ), - 'homepage' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => FALSE, - 'description' => "The comment author's home page address from the comment form, if user is anonymous, and the 'Anonymous users may/must leave their contact information' setting is turned on.", - ), - 'language' => array( - 'description' => 'The {languages}.language of this comment.', - 'type' => 'varchar', - 'length' => 12, - 'not null' => TRUE, - 'default' => '', - ), - ), - 'indexes' => array( - 'comment_status_pid' => array('pid', 'status'), - 'comment_num_new' => array('nid', 'status', 'created', 'cid', 'thread'), - 'comment_uid' => array('uid'), - 'comment_nid_language' => array('nid', 'language'), - ), - 'primary key' => array('cid'), - 'foreign keys' => array( - 'comment_node' => array( - 'table' => 'node', - 'columns' => array('nid' => 'nid'), - ), - 'comment_author' => array( - 'table' => 'users', - 'columns' => array('uid' => 'uid'), - ), - ), - ); - - $schema['node_comment_statistics'] = array( - 'description' => 'Maintains statistics of node and comments posts to show "new" and "updated" flags.', - 'fields' => array( - 'nid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - 'description' => 'The {node}.nid for which the statistics are compiled.', - ), - 'cid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'The {comment}.cid of the last comment.', - ), - 'last_comment_timestamp' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'The Unix timestamp of the last comment that was posted within this node, from {comment}.timestamp.', - ), - 'last_comment_name' => array( - 'type' => 'varchar', - 'length' => 60, - 'not null' => FALSE, - 'description' => 'The name of the latest author to post a comment on this node, from {comment}.name.', - ), - 'last_comment_uid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'The user ID of the latest author to post a comment on this node, from {comment}.uid.', - ), - 'comment_count' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - 'description' => 'The total number of comments on this node.', - ), - ), - 'primary key' => array('nid'), - 'indexes' => array( - 'node_comment_timestamp' => array('last_comment_timestamp'), - 'comment_count' => array('comment_count'), - 'last_comment_uid' => array('last_comment_uid'), - ), - 'foreign keys' => array( - 'statistics_node' => array( - 'table' => 'node', - 'columns' => array('nid' => 'nid'), - ), - 'last_comment_author' => array( - 'table' => 'users', - 'columns' => array( - 'last_comment_uid' => 'uid', - ), - ), - ), - ); - - return $schema; -} diff --git modules/contact/contact.install modules/contact/contact.install index 6e8ec70..7ddea45 100644 --- modules/contact/contact.install +++ modules/contact/contact.install @@ -87,63 +87,3 @@ function contact_uninstall() { variable_del('contact_threshold_limit'); variable_del('contact_threshold_window'); } - -/** - * @addtogroup updates-6.x-to-7.x - * @{ - */ - -/** - * Rename the threshold limit variable. - */ -function contact_update_7000() { - variable_set('contact_threshold_limit', variable_get('contact_hourly_threshold', 5)); - variable_del('contact_hourly_threshold'); -} - -/** - * Rename the administer contact forms permission. - */ -function contact_update_7001() { - db_update('role_permission') - ->fields(array('permission' => 'administer contact forms')) - ->condition('permission', 'administer site-wide contact form') - ->execute(); -} - -/** - * Enable the 'access user contact forms' for registered users by default. - */ -function contact_update_7002() { - // Do not use user_role_grant_permission() since it relies on - // hook_permission(), which will not run for contact module if it is - // disabled. - db_merge('role_permission') - ->key(array( - 'rid' => DRUPAL_AUTHENTICATED_RID, - 'permission' => 'access user contact forms', - 'module' => 'contact', - )) - ->execute(); -} - -/** - * Change the weight column to normal int. - */ -function contact_update_7003() { - db_drop_index('contact', 'list'); - db_change_field('contact', 'weight', 'weight', array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => "The category's weight.", - ), array( - 'indexes' => array( - 'list' => array('weight', 'category'), - ), - )); -} - -/** - * @} End of "addtogroup updates-6.x-to-7.x" - */ diff --git modules/dblog/dblog.install modules/dblog/dblog.install index 759c7bc..23f85ba 100644 --- modules/dblog/dblog.install +++ modules/dblog/dblog.install @@ -97,46 +97,3 @@ function dblog_schema() { function dblog_uninstall() { variable_del('dblog_row_limit'); } - -/** - * @addtogroup updates-6.x-to-7.x - * @{ - */ - -/** - * Update the {watchdog} table. - */ -function dblog_update_7001() { - // Allow NULL values for links. - db_change_field('watchdog', 'link', 'link', array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => FALSE, - 'default' => '', - 'description' => 'Link to view the result of the event.', - )); - - // Add an index on uid. - db_add_index('watchdog', 'uid', array('uid')); - - // Allow longer type values. - db_change_field('watchdog', 'type', 'type', array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - 'description' => 'Type of log message, for example "user" or "page not found."', - )); - - // Convert the variables field (that stores serialized variables) from text to blob. - db_change_field('watchdog', 'variables', 'variables', array( - 'type' => 'blob', - 'not null' => TRUE, - 'size' => 'big', - 'description' => 'Serialized array of variables that match the message string and that is passed into the t() function.', - )); -} - -/** - * @} End of "addtogroup updates-6.x-to-7.x" - */ diff --git modules/field/field.install modules/field/field.install index d56eb90..2d7d28f 100644 --- modules/field/field.install +++ modules/field/field.install @@ -170,12 +170,9 @@ function field_schema() { /** * Utility function: create a field by writing directly to the database. * - * This function can be used for databases whose schema is at field module - * version 7000 or higher. - * - * @ingroup update-api-6.x-to-7.x + * @ingroup update-api-7.x-to-8.x */ -function _update_7000_field_create_field(&$field) { +function _update_8000_field_create_field(&$field) { // Merge in default values.` $field += array( 'entity_types' => array(), @@ -246,17 +243,14 @@ function _update_7000_field_create_field(&$field) { * To protect user data, this function can only be used to delete fields once * all information it stored is gone. Delete all data from the * field_data_$field_name table before calling by either manually issuing - * delete queries against it or using _update_7000_field_delete_instance(). - * - * This function can be used for databases whose schema is at field module - * version 7000 or higher. + * delete queries against it or using _update_8000_field_delete_instance(). * * @param $field_name * The field name to delete. * - * @ingroup update-api-6.x-to-7.x + * @ingroup update-api-7.x-to-8.x */ -function _update_7000_field_delete_field($field_name) { +function _update_8000_field_delete_field($field_name) { $table_name = 'field_data_' . $field_name; if (db_select($table_name)->range(0, 1)->countQuery()->execute()->fetchField()) { $t = get_t(); @@ -283,11 +277,9 @@ function _update_7000_field_delete_field($field_name) { * * BEWARE: this function deletes user data from the field storage tables. * - * This function is valid for a database schema version 7000. - * - * @ingroup update-api-6.x-to-7.x + * @ingroup update-api-7.x-to-8.x */ -function _update_7000_field_delete_instance($field_name, $entity_type, $bundle) { +function _update_8000_field_delete_instance($field_name, $entity_type, $bundle) { // Delete field instance configuration data. db_delete('field_config_instance') ->condition('field_name', $field_name) @@ -323,8 +315,9 @@ function _update_7000_field_delete_instance($field_name, $entity_type, $bundle) * @return * An array of fields matching $conditions, keyed by the property specified * by the $key parameter. + * @ingroup update-api-7.x-to-8.x */ -function _update_7000_field_read_fields(array $conditions = array(), $key = 'id') { +function _update_8000_field_read_fields(array $conditions = array(), $key = 'id') { $fields = array(); $query = db_select('field_config', 'fc', array('fetch' => PDO::FETCH_ASSOC)) ->fields('fc'); @@ -354,12 +347,9 @@ function _update_7000_field_read_fields(array $conditions = array(), $key = 'id' /** * Utility function: write a field instance directly to the database. * - * This function can be used for databases whose schema is at field module - * version 7000 or higher. - * - * @ingroup update-api-6.x-to-7.x + * @ingroup update-api-7.x-to-8.x */ -function _update_7000_field_create_instance($field, &$instance) { +function _update_8000_field_create_instance($field, &$instance) { // Merge in defaults. $instance += array( 'field_id' => $field['id'], @@ -385,55 +375,3 @@ function _update_7000_field_create_instance($field, &$instance) { ->fields($record) ->execute(); } - -/** - * @addtogroup updates-6.x-to-7.x - * @{ - */ - -/** - * Field update version placeholder. - */ -function field_update_7000() { - // Some update helper functions (such as _update_7000_field_create_field()) - // modify the database directly. They can be used safely only if the database - // schema matches the field module schema established for Drupal 7.0 (i.e. - // version 7000). This function exists solely to set the schema version to - // 7000, so that update functions calling those helpers can do so safely - // by declaring a dependency on field_update_7000(). -} - -/** - * Fix fields definitions created during the d6 to d7 upgrade path. - */ -function field_update_7001() { - $fields = _update_7000_field_read_fields(); - foreach ($fields as $field) { - // _update_7000_field_create_field() was broken in d7 RC2, and the fields - // created during a d6 to d7 upgrade do not correcly store the 'index' - // entry. See http://drupal.org/node/996160. - - module_load_install($field['module']); - $schema = (array) module_invoke($field['module'], 'field_schema', $field); - $schema += array('indexes' => array()); - // 'indexes' can be both hardcoded in the field type, and specified in the - // incoming $field definition. - $field['indexes'] += $schema['indexes']; - - // Place the updated entries in the existing serialized 'data' column. - $data = db_query("SELECT data FROM {field_config} WHERE id = :id", array(':id' => $field['id']))->fetchField(); - $data = unserialize($data); - $data['columns'] = $field['columns']; - $data['indexes'] = $field['indexes']; - - // Save the new data. - $query = db_update('field_config') - ->condition('id', $field['id']) - ->fields(array('data' => serialize($data))) - ->execute(); - } -} - -/** - * @} End of "addtogroup updates-6.x-to-7.x" - */ diff --git modules/field/modules/field_sql_storage/field_sql_storage.install modules/field/modules/field_sql_storage/field_sql_storage.install index 647296e..930686d 100644 --- modules/field/modules/field_sql_storage/field_sql_storage.install +++ modules/field/modules/field_sql_storage/field_sql_storage.install @@ -27,12 +27,9 @@ function field_sql_storage_schema() { /** * Utility function: write field data directly to SQL storage. * - * This function can be used for databases whose schema is at field module - * version 7000 or higher. - * - * @ingroup update-api-6.x-to-7.x + * @ingroup update-api-7.x-to-8.x */ -function _update_7000_field_sql_storage_write($entity_type, $bundle, $entity_id, $revision_id, $field_name, $data) { +function _update_8000_field_sql_storage_write($entity_type, $bundle, $entity_id, $revision_id, $field_name, $data) { $table_name = "field_data_{$field_name}"; $revision_name = "field_revision_{$field_name}"; @@ -80,136 +77,3 @@ function _update_7000_field_sql_storage_write($entity_type, $bundle, $entity_id, $revision_query->execute(); } } - -/** - * @addtogroup updates-6.x-to-7.x - * @{ - */ - -/** - * Field SQL storage update version placeholder. - */ -function field_sql_storage_update_7000() { - // Some update helper functions (such as - // _update_7000_field_sql_storage_write()) modify the database directly. They - // can be used safely only if the database schema matches the field module - // schema established for Drupal 7.0 (i.e. version 7000). This function exists - // solely to set the schema version to 7000, so that update functions calling - // those helpers can do so safely by declaring a dependency on - // field_sql_storage_update_7000(). -} - -/** - * Remove the field_config_entity_type table and store 'entity_type' strings. - */ -function field_sql_storage_update_7001(&$sandbox) { - if (!isset($sandbox['progress'])) { - // Collect current etids. - $sandbox['etids'] = db_query('SELECT etid, type FROM {field_config_entity_type}')->fetchAllKeyed(); - - // Collect affected tables: field data, field revision data, 'deleted' - // tables. - $sandbox['tables'] = array(); - $results = db_select('field_config', 'fc', array('fetch' => PDO::FETCH_ASSOC)) - ->fields('fc') - ->condition('storage_module', 'field_sql_storage') - ->execute(); - foreach ($results as $field) { - if ($field['deleted']) { - $sandbox['tables']["field_deleted_data_{$field['id']}"] = 'data'; - $sandbox['tables']["field_deleted_revision_{$field['id']}"] = 'revision'; - } - else { - $sandbox['tables']["field_data_{$field['field_name']}"] = 'data'; - $sandbox['tables']["field_revision_{$field['field_name']}"] = 'revision'; - } - } - reset($sandbox['tables']); - - $sandbox['total'] = count($sandbox['tables']); - $sandbox['progress'] = 0; - } - - if ($sandbox['tables']) { - // Grab the next table to process. - $table = key($sandbox['tables']); - $type = array_shift($sandbox['tables']); - - if (db_table_exists($table)) { - // Add the 'entity_type' column. - if (!db_field_exists($table, 'entity_type')) { - $column = array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - 'description' => 'The entity type this data is attached to.', - ); - db_add_field($table, 'entity_type', $column); - - // Populate the 'entity_type' column based on the 'etid' column. - foreach ($sandbox['etids'] as $etid => $entity_type) { - db_update($table) - ->fields(array('entity_type' => $entity_type)) - ->condition('etid', $etid) - ->execute(); - } - - // Index the new column. - db_add_index($table, 'entity_type', array('entity_type')); - } - - // Use the 'entity_type' column in the primary key. - db_drop_primary_key($table); - $primary_keys = array( - 'data' => array('entity_type', 'entity_id', 'deleted', 'delta', 'language'), - 'revision' => array('entity_type', 'entity_id', 'revision_id', 'deleted', 'delta', 'language'), - ); - db_add_primary_key($table, $primary_keys[$type]); - - // Drop the 'etid' column. - if (db_field_exists($table, 'etid')) { - db_drop_field($table, 'etid'); - } - } - - // Report progress. - $sandbox['progress']++; - $sandbox['#finished'] = min(0.99, $sandbox['progress'] / $sandbox['total']); - } - else { - // No more tables left: drop the field_config_entity_type table. - db_drop_table('field_config_entity_type'); - - // Drop the previous 'field_sql_storage_ENTITYTYPE_etid' system variables. - foreach ($sandbox['etids'] as $etid => $entity_type) { - variable_del('field_sql_storage_' . $entity_type . '_etid'); - } - - // We're done. - $sandbox['#finished'] = 1; - } -} - -/** - * Fix primary keys in field revision data tables. - */ -function field_sql_storage_update_7002() { - $results = db_select('field_config', 'fc', array('fetch' => PDO::FETCH_ASSOC)) - ->fields('fc') - ->condition('storage_module', 'field_sql_storage') - ->execute(); - foreach ($results as $field) { - // Revision tables of deleted fields do not need to be fixed, since no new - // data is written to them. - if (!$field['deleted']) { - $table = "field_revision_{$field['field_name']}"; - db_drop_primary_key($table); - db_add_primary_key($table, array('entity_type', 'entity_id', 'revision_id', 'deleted', 'delta', 'language')); - } - } -} - -/** - * @} End of "addtogroup updates-6.x-to-7.x" - */ diff --git modules/field/modules/list/list.install modules/field/modules/list/list.install index 91c7649..c86a219 100644 --- modules/field/modules/list/list.install +++ modules/field/modules/list/list.install @@ -44,86 +44,3 @@ function list_field_schema($field) { ), ); } - -/** - * Rename the list field types and change 'allowed_values' format. - */ -function list_update_7001() { - $fields = _update_7000_field_read_fields(array('module' => 'list')); - foreach ($fields as $field) { - $update = array(); - - // Translate the old string format into the new array format. - $allowed_values = $field['settings']['allowed_values']; - if (is_string($allowed_values)) { - $position_keys = ($field['type'] == 'list'); - $allowed_values = _list_update_7001_extract_allowed_values($allowed_values, $position_keys); - - // Additionally, float keys need to be disambiguated ('.5' is '0.5'). - if ($field['type'] == 'list_number' && !empty($allowed_values)) { - $keys = array_map(create_function('$a', 'return (string) (float) $a;'), array_keys($allowed_values)); - $allowed_values = array_combine($keys, array_values($allowed_values)); - } - - // Place the new setting in the existing serialized 'data' column. - $data = db_query("SELECT data FROM {field_config} WHERE id = :id", array(':id' => $field['id']))->fetchField(); - $data = unserialize($data); - $data['settings']['allowed_values'] = $allowed_values; - $update['data'] = serialize($data); - } - - // Rename field types. - $types = array('list' => 'list_integer', 'list_number' => 'list_float'); - if (isset($types[$field['type']])) { - $update['type'] = $types[$field['type']]; - } - - // Save the new data. - if ($update) { - $query = db_update('field_config') - ->condition('id', $field['id']) - ->fields($update) - ->execute(); - } - } -} - -/** - * Helper function for list_update_7001: extract allowed values from a string. - * - * This reproduces the parsing logic in use before D7 RC2. - */ -function _list_update_7001_extract_allowed_values($string, $position_keys) { - $values = array(); - - $list = explode("\n", $string); - $list = array_map('trim', $list); - $list = array_filter($list, 'strlen'); - - foreach ($list as $key => $value) { - // Check for a manually specified key. - if (strpos($value, '|') !== FALSE) { - list($key, $value) = explode('|', $value); - } - // Otherwise see if we need to use the value as the key. The "list" type - // will automatically convert non-keyed lines to integers. - elseif (!$position_keys) { - $key = $value; - } - $values[$key] = (isset($value) && $value !== '') ? $value : $key; - } - - return $values; -} - -/** - * Re-apply list_update_7001() for deleted fields. - */ -function list_update_7002() { - // See http://drupal.org/node/1022924: list_update_7001() intitally - // overlooked deleted fields, which then caused fatal errors when the fields - // were being purged. - // list_update_7001() has the required checks to ensure it is reentrant, so - // it can simply be executed once more.. - list_update_7001(); -} \ No newline at end of file diff --git modules/field/modules/text/text.install modules/field/modules/text/text.install index b9bd25f..1b8d00b 100644 --- modules/field/modules/text/text.install +++ modules/field/modules/text/text.install @@ -65,44 +65,3 @@ function text_field_schema($field) { ), ); } - -/** - * Implements hook_update_dependencies(). - */ -function text_update_dependencies() { - // Ensure that format columns are only changed after Filter module has changed - // the primary records. - $dependencies['text'][7000] = array( - 'filter' => 7010, - ); - - return $dependencies; -} - -/** - * Change text field 'format' columns into varchar. - */ -function text_update_7000() { - $spec = array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => FALSE, - ); - $fields = _update_7000_field_read_fields(array( - 'module' => 'text', - 'storage_type' => 'field_sql_storage', - )); - foreach ($fields as $field) { - if ($field['deleted']) { - $table = "field_deleted_data_{$field['id']}"; - $revision_table = "field_deleted_revision_{$field['id']}"; - } - else { - $table = "field_data_{$field['field_name']}"; - $revision_table = "field_revision_{$field['field_name']}"; - } - $column = $field['field_name'] . '_' . 'format'; - db_change_field($table, $column, $column, $spec); - db_change_field($revision_table, $column, $column, $spec); - } -} diff --git modules/filter/filter.install modules/filter/filter.install index 84512cd..da9ecb8 100644 --- modules/filter/filter.install +++ modules/filter/filter.install @@ -147,347 +147,3 @@ function filter_install() { // Set the fallback format to plain text. variable_set('filter_fallback_format', $plain_text_format->format); } - -/** - * Implements hook_update_dependencies(). - */ -function filter_update_dependencies() { - // Filter update 7007 migrates permissions and therefore needs to run after - // the {role} table is properly set up. - $dependencies['filter'][7005] = array( - 'user' => 7007, - ); - - return $dependencies; -} -/** - * @addtogroup updates-6.x-to-7.x - * @{ - */ - -/** - * Upgrade the {filter_formats} table and rename it to {filter_format}. - */ -function filter_update_7000() { - db_rename_table('filter_formats', 'filter_format'); - - // Add the new {filter_format}.status and {filter_format}.weight column. - db_add_field('filter_format', 'status', array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 1, - 'size' => 'tiny', - 'description' => 'The status of the text format. (1 = enabled, 0 = disabled)', - )); - db_add_field('filter_format', 'weight', array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'Weight of text format to use when listing.', - ), array( - 'indexes' => array( - 'status_weight' => array('status', 'weight'), - ), - )); -} - -/** - * Break out "escape HTML filter" option to its own filter. - */ -function filter_update_7001() { - $result = db_query("SELECT format FROM {filter_format}")->fetchCol(); - $insert = db_insert('filters')->fields(array('format', 'module', 'delta', 'weight')); - - foreach ($result as $format_id) { - // Deprecated constants FILTER_HTML_STRIP = 1 and FILTER_HTML_ESCAPE = 2. - if (variable_get('filter_html_' . $format_id, 1) == 2) { - $insert->values(array( - 'format' => $format_id, - 'module' => 'filter', - 'delta' => 4, - 'weight' => 0, - )); - } - variable_del('filter_html_' . $format_id); - } - - $insert->execute(); -} - -/** - * Upgrade the {filter} table for core filters. - */ -function filter_update_7003() { - // Duplicates the {filters} table since core cannot take care of the potential - // contributed module filters. - db_rename_table('filters', 'd6_upgrade_filter'); - // Creates the Drupal 7 filter table. - $filter_table = array( - 'description' => 'Table that maps filters (HTML corrector) to text formats (Filtered HTML).', - 'fields' => array( - 'format' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'Foreign key: The {filter_format}.format to which this filter is assigned.', - ), - 'module' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - 'description' => 'The origin module of the filter.', - ), - 'name' => array( - 'type' => 'varchar', - 'length' => 32, - 'not null' => TRUE, - 'default' => '', - 'description' => 'Name of the filter being referenced.', - ), - 'weight' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'Weight of filter within format.', - ), - 'status' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'Filter enabled status. (1 = enabled, 0 = disabled)', - ), - 'settings' => array( - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'big', - 'serialize' => TRUE, - 'description' => 'A serialized array of name value pairs that store the filter settings for the specific format.', - ), - ), - 'primary key' => array('format', 'name'), - 'indexes' => array( - 'list' => array('weight', 'module', 'name'), - ), - ); - db_create_table('filter', $filter_table); - - // Get an array of the renamed filter deltas, organized by module. - $renamed_deltas = array( - 'filter' => array( - '0' => 'filter_html', - '1' => 'filter_autop', - '2' => 'filter_url', - '3' => 'filter_htmlcorrector', - '4' => 'filter_html_escape', - ), - 'php' => array( - '0' => 'php_code', - ), - ); - - // Loop through each filter and make changes to the core filter table by - // each record from the old to the new table. - foreach ($renamed_deltas as $module => $deltas) { - foreach ($deltas as $old_delta => $new_name) { - $query = db_select('d6_upgrade_filter') - ->fields('d6_upgrade_filter', array('format', 'weight')) - ->condition('module', $module) - ->condition('delta', $old_delta) - ->distinct(); - - foreach ($query->execute() as $record) { - // Port the filter settings. - $settings = array(); - if ($new_name == 'filter_html') { - if ($setting = variable_get("allowed_html_{$record->format}", NULL)) { - $settings['allowed_html'] = $setting; - variable_del("allowed_html_{$record->format}"); - } - if ($setting = variable_get("filter_html_help_{$record->format}", NULL)) { - $settings['filter_html_help'] = $setting; - variable_del("filter_html_help_{$record->format}"); - } - if ($setting = variable_get("filter_html_nofollow_{$record->format}", NULL)) { - $settings['filter_html_nofollow'] = $setting; - variable_del("filter_html_nofollow_{$record->format}"); - } - } - elseif ($new_name == 'filter_url') { - if ($setting = variable_get("filter_url_length_{$record->format}", NULL)) { - $settings['filter_url_length'] = $setting; - variable_del("filter_url_length_{$record->format}"); - } - } - - db_insert('filter') - ->fields(array( - 'format' => $record->format, - 'module' => $module, - 'name' => $new_name, - 'weight' => $record->weight, - 'settings' => serialize($settings), - 'status' => 1, - )) - ->execute(); - } - db_delete('d6_upgrade_filter') - ->condition('module', $module) - ->condition('delta', $old_delta) - ->execute(); - } - } -} - -/** - * Integrate text formats with the user permissions system. - * - * This function converts text format role assignments to use the new text - * format permissions introduced in Drupal 7, creates a fallback (plain text) - * format that is available to all users, and explicitly sets the text format - * in cases that used to rely on a single site-wide default. - */ -function filter_update_7005() { - // Move role data from the filter system to the user permission system. - $all_roles = array_keys(user_roles()); - $default_format = variable_get('filter_default_format', 1); - $result = db_query("SELECT * FROM {filter_format}"); - foreach ($result as $format) { - // We need to assign the default format to all roles (regardless of what - // was stored in the database) to preserve the behavior of the site at the - // moment of the upgrade. - $format_roles = ($format->format == $default_format ? $all_roles : explode(',', $format->roles)); - foreach ($format_roles as $format_role) { - if (in_array($format_role, $all_roles)) { - _update_7000_user_role_grant_permissions($format_role, array('use text format ' . $format->format), 'filter'); - } - } - } - - // Drop the roles field from the {filter_format} table. - db_drop_field('filter_format', 'roles'); - - // Add a fallback text format which outputs plain text and appears last on - // the list for all users. Generate a unique name for it, starting with - // "Plain text". - $start_name = 'Plain text'; - $format_name = $start_name; - while ($format = db_query('SELECT format FROM {filter_format} WHERE name = :name', array(':name' => $format_name))->fetchField()) { - $id = empty($id) ? 2 : $id + 1; - $format_name = $start_name . ' ' . $id; - } - - // Insert the filter format. - $format_id = db_insert('filter_format') - ->fields(array( - 'name' => $format_name, - 'cache' => 1, - 'weight' => 1, - 'status' => 1, - )) - ->execute(); - - // This format should output plain text, so we escape all HTML and apply the - // line break and URL filters only. - db_insert('filter') - ->fields(array( - 'format', - 'name', - 'weight', - 'status', - 'module', - 'settings', - )) - ->values(array( - 'format' => $format_id, - 'name' => 'filter_html_escape', - 'weight' => 0, - 'status' => 1, - 'module' => 'filter', - 'settings' => serialize(array()), - )) - ->values(array( - 'format' => $format_id, - 'name' => 'filter_url', - 'weight' => 1, - 'status' => 1, - 'module' => 'filter', - 'settings' => serialize(array()), - )) - ->values(array( - 'format' => $format_id, - 'name' => 'filter_autop', - 'weight' => 2, - 'status' => 1, - 'module' => 'filter', - 'settings' => serialize(array()), - )) - ->execute(); - - variable_set('filter_fallback_format', $format_id); - drupal_set_message('A new Plain text format has been created which will be available to all users. You can configure this text format on the text format configuration page.'); - - // Move the former site-wide default text format to the top of the list, so - // that it continues to be the default text format for all users. - db_update('filter_format') - ->fields(array('weight' => -1)) - ->condition('format', $default_format) - ->execute(); - - // We do not delete the 'filter_default_format' variable, since other modules - // need it in their update functions; for an example, see user_update_7010(). - // @todo This variable can be deleted in Drupal 8. -} - -/** - * Grant usage of all text formats to user roles having the 'administer filters' permission. - */ -function filter_update_7008() { - // Build the list of permissions to grant. - $permissions = array(); - foreach (db_query('SELECT format FROM {filter_format}')->fetchCol() as $format_id) { - if ($format_id != variable_get('filter_fallback_format')) { - $permissions[] = 'use text format ' . $format_id; - } - } - // Grant text format permissions to all roles that can 'administer filters'. - // Albeit anonymous users *should not* have the permission, we cannot presume - // that they do not or must not. - if ($roles = user_roles(FALSE, 'administer filters')) { - foreach ($roles as $rid => $name) { - _update_7000_user_role_grant_permissions($rid, $permissions, 'filter'); - } - } -} - -/** - * Converts fields that store serialized variables from text to blob. - */ -function filter_update_7009() { - $schema = system_schema_cache_7054(); - db_drop_table('cache_filter'); - db_create_table('cache_filter', $schema); -} - -/** - * Change {filter_format}.format and {filter}.format into varchar. - */ -function filter_update_7010() { - db_change_field('filter_format', 'format', 'format', array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'description' => 'Primary Key: Unique machine name of the format.', - )); - db_change_field('filter', 'format', 'format', array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'description' => 'Foreign key: The {filter_format}.format to which this filter is assigned.', - )); -} - -/** - * @} End of "addtogroup updates-6.x-to-7.x" - */ diff --git modules/forum/forum.install modules/forum/forum.install index fe30995..8e41be7 100644 --- modules/forum/forum.install +++ modules/forum/forum.install @@ -234,99 +234,3 @@ function forum_schema() { return $schema; } - -/** - * Add new index to forum table. - */ -function forum_update_7000() { - db_drop_index('forum', 'nid'); - db_add_index('forum', 'forum_topic', array('nid', 'tid')); -} - -/** - * Create new {forum_index} table. - */ -function forum_update_7001() { - $forum_index = array( - 'description' => 'Maintains denormalized information about node/term relationships.', - 'fields' => array( - 'nid' => array( - 'description' => 'The {node}.nid this record tracks.', - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'title' => array( - 'description' => 'The title of this node, always treated as non-markup plain text.', - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'tid' => array( - 'description' => 'The term ID.', - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'sticky' => array( - 'description' => 'Boolean indicating whether the node is sticky.', - 'type' => 'int', - 'not null' => FALSE, - 'default' => 0, - 'size' => 'tiny', - ), - 'created' => array( - 'description' => 'The Unix timestamp when the node was created.', - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default'=> 0, - ), - 'last_comment_timestamp' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'The Unix timestamp of the last comment that was posted within this node, from {comment}.timestamp.', - ), - 'comment_count' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - 'description' => 'The total number of comments on this node.', - ), - ), - 'indexes' => array( - 'forum_topics' => array('tid', 'sticky', 'last_comment_timestamp'), - ), - 'foreign keys' => array( - 'tracked_node' => array( - 'table' => 'node', - 'columns' => array('nid' => 'nid'), - ), - 'term' => array( - 'table' => 'taxonomy_term_data', - 'columns' => array( - 'tid' => 'tid', - ), - ), - ), - ); - db_create_table('forum_index', $forum_index); - - $select = db_select('node', 'n'); - $forum_alias = $select->join('forum', 'f', 'n.vid = f.vid'); - $ncs_alias = $select->join('node_comment_statistics', 'ncs', 'n.nid = ncs.nid'); - $select - ->fields('n', array('nid', 'title', 'sticky', 'created')) - ->fields($forum_alias, array('tid')) - ->fields($ncs_alias, array('last_comment_timestamp', 'comment_count')); - - db_insert('forum_index') - ->fields(array('nid', 'title', 'sticky', 'created', 'tid', 'last_comment_timestamp', 'comment_count')) - ->from($select) - ->execute(); -} diff --git modules/image/image.install modules/image/image.install index fbd20de..fe69561 100644 --- modules/image/image.install +++ modules/image/image.install @@ -142,141 +142,3 @@ function image_field_schema($field) { ), ); } - -/** - * Install the schema for users upgrading from the contributed module. - */ -function image_update_7000() { - if (!db_table_exists('image_styles')) { - $schema = array(); - - $schema['cache_image'] = system_schema_cache_7054(); - $schema['cache_image']['description'] = 'Cache table used to store information about image manipulations that are in-progress.'; - - $schema['image_styles'] = array( - 'description' => 'Stores configuration options for image styles.', - 'fields' => array( - 'isid' => array( - 'description' => 'The primary identifier for an image style.', - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'name' => array( - 'description' => 'The style name.', - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - ), - ), - 'primary key' => array('isid'), - 'unique keys' => array( - 'name' => array('name'), - ), - ); - - $schema['image_effects'] = array( - 'description' => 'Stores configuration options for image effects.', - 'fields' => array( - 'ieid' => array( - 'description' => 'The primary identifier for an image effect.', - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'isid' => array( - 'description' => 'The {image_styles}.isid for an image style.', - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'weight' => array( - 'description' => 'The weight of the effect in the style.', - 'type' => 'int', - 'unsigned' => FALSE, - 'not null' => TRUE, - 'default' => 0, - ), - 'name' => array( - 'description' => 'The unique name of the effect to be executed.', - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - ), - 'data' => array( - 'description' => 'The configuration data for the effect.', - 'type' => 'blob', - 'not null' => TRUE, - 'size' => 'big', - 'serialize' => TRUE, - ), - ), - 'primary key' => array('ieid'), - 'indexes' => array( - 'isid' => array('isid'), - 'weight' => array('weight'), - ), - 'foreign keys' => array( - 'image_style' => array( - 'table' => 'image_styles', - 'columns' => array('isid' => 'isid'), - ), - ), - ); - - db_create_table('cache_image', $schema['cache_image']); - db_create_table('image_styles', $schema['image_styles']); - db_create_table('image_effects', $schema['image_effects']); - } -} - -/** - * Rename possibly misnamed {image_effect} table to {image_effects}. - */ -function image_update_7001() { - // Due to a bug in earlier versions of image_update_7000() it is possible - // to end up with an {image_effect} table where there should be an - // {image_effects} table. - if (!db_table_exists('image_effects') && db_table_exists('image_effect')) { - db_rename_table('image_effect', 'image_effects'); - } -} - -/** - * Implements hook_requirements() to check the PHP GD Library. - * - * @param $phase - */ -function image_requirements($phase) { - $requirements = array(); - - if ($phase == 'runtime') { - // Check for the PHP GD library. - if (function_exists('imagegd2')) { - $info = gd_info(); - $requirements['image_gd'] = array( - 'value' => $info['GD Version'], - ); - - // Check for filter and rotate support. - if (function_exists('imagefilter') && function_exists('imagerotate')) { - $requirements['image_gd']['severity'] = REQUIREMENT_OK; - } - else { - $requirements['image_gd']['severity'] = REQUIREMENT_ERROR; - $requirements['image_gd']['description'] = t('The GD Library for PHP is enabled, but was compiled without support for functions used by the rotate and desaturate effects. It was probably compiled using the official GD libraries from http://www.libgd.org instead of the GD library bundled with PHP. You should recompile PHP --with-gd using the bundled GD library. See the PHP manual.'); - } - } - else { - $requirements['image_gd'] = array( - 'value' => t('Not installed'), - 'severity' => REQUIREMENT_ERROR, - 'description' => t('The GD library for PHP is missing or outdated. Check the PHP image documentation for information on how to correct this.', array('@url' => 'http://www.php.net/manual/book.image.php')), - ); - } - $requirements['image_gd']['title'] = t('GD library rotate and desaturate effects'); - } - - return $requirements; -} diff --git modules/locale/locale.install modules/locale/locale.install index 2abbc53..122b78a 100644 --- modules/locale/locale.install +++ modules/locale/locale.install @@ -25,344 +25,3 @@ function locale_install() { )) ->execute(); } - -/** - * @addtogroup updates-6.x-to-7.x - * @{ - */ - -/** - * Add context field index and allow longer location. - */ -function locale_update_7000() { - db_drop_index('locales_source', 'source'); - db_add_index('locales_source', 'source_context', array(array('source', 30), 'context')); - - // Also drop the 'textgroup_location' index added by the i18nstrings module - // of the i18n project, which prevents the below schema update from running. - if (db_index_exists('locales_source', 'textgroup_location')) { - db_drop_index('locales_source', 'textgroup_location'); - } - - db_change_field('locales_source', 'location', 'location', array( - 'type' => 'text', - 'not null' => FALSE, - 'size' => 'big', - 'description' => 'Drupal path in case of online discovered translations or file path in case of imported strings.', - )); -} - -/** - * Upgrade language negotiation settings. - */ -function locale_update_7001() { - require_once DRUPAL_ROOT . '/includes/language.inc'; - require_once DRUPAL_ROOT . '/includes/locale.inc'; - require_once DRUPAL_ROOT . '/modules/locale/locale.module'; - - switch (variable_get('language_negotiation', 0)) { - // LANGUAGE_NEGOTIATION_NONE. - case 0: - $negotiation = array(); - break; - - // LANGUAGE_NEGOTIATION_PATH_DEFAULT. - case 1: - $negotiation = array(LOCALE_LANGUAGE_NEGOTIATION_URL); - // In Drupal 6 path prefixes are shown for the default language only when - // language negotiation is set to LANGUAGE_NEGOTIATION_PATH, while in - // Drupal 7 path prefixes are always shown if not empty. Hence we need to - // ensure that the default language has an empty prefix to avoid breaking - // the site URLs with a prefix that previously was missing. - $default = language_default(); - $default->prefix = ''; - variable_set('language_default', $default); - db_update('languages') - ->fields(array('prefix' => $default->prefix)) - ->condition('language', $default->language) - ->execute(); - break; - - // LANGUAGE_NEGOTIATION_PATH. - case 2: - $negotiation = array(LOCALE_LANGUAGE_NEGOTIATION_URL, LOCALE_LANGUAGE_NEGOTIATION_USER, LOCALE_LANGUAGE_NEGOTIATION_BROWSER); - break; - - // LANGUAGE_NEGOTIATION_DOMAIN. - case 3: - variable_set('locale_language_negotiation_url_part', LOCALE_LANGUAGE_NEGOTIATION_URL_DOMAIN); - $negotiation = array(LOCALE_LANGUAGE_NEGOTIATION_URL); - break; - } - - // Save the new language negotiation options. - language_negotiation_set(LANGUAGE_TYPE_INTERFACE, array_flip($negotiation)); - language_negotiation_set(LANGUAGE_TYPE_CONTENT, array(LOCALE_LANGUAGE_NEGOTIATION_INTERFACE => 0)); - language_negotiation_set(LANGUAGE_TYPE_URL, array(LOCALE_LANGUAGE_NEGOTIATION_URL => 0)); - - // Save admininstration UI settings. - $type = LANGUAGE_TYPE_INTERFACE; - $provider_weights = array_flip(array_keys(locale_language_negotiation_info())); - variable_set("locale_language_providers_weight_$type", $provider_weights); - - // Unset the old language negotiation system variable. - variable_del('language_negotiation'); - - return array(); -} - -/** - * Updates URL language negotiation by adding the URL fallback detection method. - */ -function locale_update_7002() { - // language.inc may not have been included during bootstrap if there is not - // more than one language currently enabled. - require_once DRUPAL_ROOT . '/includes/language.inc'; - $language_types_info = language_types_info(); - $info = $language_types_info[LANGUAGE_TYPE_URL]; - if (isset($info['fixed'])) { - language_negotiation_set(LANGUAGE_TYPE_URL, array_flip($info['fixed'])); - } -} - -/** - * @} End of "addtogroup updates-6.x-to-7.x" - */ - -/** - * Implements hook_uninstall(). - */ -function locale_uninstall() { - // Delete all JavaScript translation files. - $locale_js_directory = 'public://' . variable_get('locale_js_directory', 'languages'); - - if (is_dir($locale_js_directory)) { - $files = db_query('SELECT language, javascript FROM {languages}'); - foreach ($files as $file) { - if (!empty($file->javascript)) { - file_unmanaged_delete($locale_js_directory . '/' . $file->language . '_' . $file->javascript . '.js'); - } - } - // Delete the JavaScript translations directory if empty. - if (!file_scan_directory($locale_js_directory, '/.*/')) { - drupal_rmdir($locale_js_directory); - } - } - - // Clear variables. - variable_del('language_default'); - variable_del('language_count'); - variable_del('language_types'); - variable_del('locale_language_negotiation_url_part'); - variable_del('locale_language_negotiation_session_param'); - variable_del('language_content_type_default'); - variable_del('language_content_type_negotiation'); - variable_del('locale_cache_strings'); - variable_del('locale_js_directory'); - variable_del('javascript_parsed'); - variable_del('locale_field_language_fallback'); - variable_del('locale_cache_length'); - - foreach (language_types() as $type) { - variable_del("language_negotiation_$type"); - variable_del("locale_language_providers_weight_$type"); - } - - foreach (node_type_get_types() as $type => $content_type) { - $setting = variable_del("language_content_type_$type"); - } - - // Switch back to English: with a $language->language value different from 'en' - // successive calls of t() might result in calling locale(), which in turn might - // try to query the unexisting {locales_source} and {locales_target} tables. - drupal_language_initialize(); - -} - -/** - * Implements hook_schema(). - */ -function locale_schema() { - $schema['languages'] = array( - 'description' => 'List of all available languages in the system.', - 'fields' => array( - 'language' => array( - 'type' => 'varchar', - 'length' => 12, - 'not null' => TRUE, - 'default' => '', - 'description' => "Language code, e.g. 'de' or 'en-US'.", - ), - 'name' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - 'description' => 'Language name in English.', - ), - 'native' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - 'description' => 'Native language name.', - ), - 'direction' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'Direction of language (Left-to-Right = 0, Right-to-Left = 1).', - ), - 'enabled' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'Enabled flag (1 = Enabled, 0 = Disabled).', - ), - 'plurals' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'Number of plural indexes in this language.', - ), - 'formula' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - 'description' => 'Plural formula in PHP code to evaluate to get plural indexes.', - ), - 'domain' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - 'description' => 'Domain to use for this language.', - ), - 'prefix' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - 'description' => 'Path prefix to use for this language.', - ), - 'weight' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'Weight, used in lists of languages.', - ), - 'javascript' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - 'description' => 'Location of JavaScript translation file.', - ), - ), - 'primary key' => array('language'), - 'indexes' => array( - 'list' => array('weight', 'name'), - ), - ); - - $schema['locales_source'] = array( - 'description' => 'List of English source strings.', - 'fields' => array( - 'lid' => array( - 'type' => 'serial', - 'not null' => TRUE, - 'description' => 'Unique identifier of this string.', - ), - 'location' => array( - 'type' => 'text', - 'not null' => FALSE, - 'size' => 'big', - 'description' => 'Drupal path in case of online discovered translations or file path in case of imported strings.', - ), - 'textgroup' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => 'default', - 'description' => 'A module defined group of translations, see hook_locale().', - ), - 'source' => array( - 'type' => 'text', - 'mysql_type' => 'blob', - 'not null' => TRUE, - 'description' => 'The original string in English.', - ), - 'context' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - 'description' => 'The context this string applies to.', - ), - 'version' => array( - 'type' => 'varchar', - 'length' => 20, - 'not null' => TRUE, - 'default' => 'none', - 'description' => 'Version of Drupal, where the string was last used (for locales optimization).', - ), - ), - 'primary key' => array('lid'), - 'indexes' => array( - 'source_context' => array(array('source', 30), 'context'), - ), - ); - - $schema['locales_target'] = array( - 'description' => 'Stores translated versions of strings.', - 'fields' => array( - 'lid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'Source string ID. References {locales_source}.lid.', - ), - 'translation' => array( - 'type' => 'text', - 'mysql_type' => 'blob', - 'not null' => TRUE, - 'description' => 'Translation string value in this language.', - ), - 'language' => array( - 'type' => 'varchar', - 'length' => 12, - 'not null' => TRUE, - 'default' => '', - 'description' => 'Language code. References {languages}.language.', - ), - 'plid' => array( - 'type' => 'int', - 'not null' => TRUE, // This should be NULL for no referenced string, not zero. - 'default' => 0, - 'description' => 'Parent lid (lid of the previous string in the plural chain) in case of plural strings. References {locales_source}.lid.', - ), - 'plural' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'Plural index number in case of plural strings.', - ), - ), - 'primary key' => array('language', 'lid', 'plural'), - 'foreign keys' => array( - 'locales_source' => array( - 'table' => 'locales_source', - 'columns' => array('lid' => 'lid'), - ), - ), - 'indexes' => array( - 'lid' => array('lid'), - 'plid' => array('plid'), - 'plural' => array('plural'), - ), - ); - - return $schema; -} - diff --git modules/node/node.install modules/node/node.install index 44c2350..5ede117 100644 --- modules/node/node.install +++ modules/node/node.install @@ -416,392 +416,10 @@ function node_install() { } /** - * Implements hook_update_dependencies(). - */ -function node_update_dependencies() { - // Node update 7006 migrates node data to fields and therefore must run after - // the Field module has been enabled, but before upgrading field data. - $dependencies['node'][7006] = array( - 'system' => 7049, - // It must also run after filter_update_7000() because it needs to query - // the list of existing text formats. - 'filter' => 7000, - ); - $dependencies['system'][7050] = array( - 'node' => 7006, - ); - return $dependencies; -} - -/** * Utility function: fetch the node types directly from the database. * - * This function is valid for a database schema version 7000. - * - * @ingroup update-api-6.x-to-7.x + * @ingroup update-api-7.x-to-8.x */ -function _update_7000_node_get_types() { +function _update_8000_node_get_types() { return db_query('SELECT * FROM {node_type}')->fetchAllAssoc('type', PDO::FETCH_OBJ); } - -/** - * @addtogroup updates-6.x-to-7.x - * @{ - */ - -/** - * Upgrade the node type table and fix node type 'module' attribute to avoid name-space conflicts. - */ -function node_update_7000() { - // Rename the module column to base. - db_change_field('node_type', 'module', 'base', array('type' => 'varchar', 'length' => 255, 'not null' => TRUE)); - - db_add_field('node_type', 'module', array( - 'description' => 'The module defining this node type.', - 'type' => 'varchar', - 'default' => '', - 'length' => 255, - 'not null' => TRUE, - )); - - db_add_field('node_type', 'disabled', array( - 'description' => 'A boolean indicating whether the node type is disabled.', - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny' - )); - - $modules = db_select('system', 's') - ->fields('s', array('name')) - ->condition('type', 'module'); - db_update('node_type') - ->expression('module', 'base') - ->condition('base', $modules, 'IN') - ->execute(); - - db_update('node_type') - ->fields(array('base' => 'node_content')) - ->condition('base', 'node') - ->execute(); -} - -/** - * Rename {node_revisions} table to {node_revision}. - */ -function node_update_7001() { - db_rename_table('node_revisions', 'node_revision'); -} - -/** - * Extend the node_promote_status index to include all fields required for the node page query. - */ -function node_update_7002() { - db_drop_index('node', 'node_promote_status'); - db_add_index('node', 'node_frontpage', array('promote', 'status', 'sticky', 'created')); -} - -/** - * Remove the node_counter if the statistics module is uninstalled. - */ -function node_update_7003() { - if (drupal_get_installed_schema_version('statistics') == SCHEMA_UNINSTALLED) { - db_drop_table('node_counter'); - } -} - -/** - * Extend the existing default preview and teaser settings to all node types. - */ -function node_update_7004() { - // Get original settings and all types. - $original_length = variable_get('teaser_length', 600); - $original_preview = variable_get('node_preview', 0); - - // Map old preview setting to new values order. - $original_preview ? $original_preview = 2 : $original_preview = 1; - node_type_cache_reset(); - - // Apply original settings to all types. - foreach (_update_7000_node_get_types() as $type => $type_object) { - variable_set('teaser_length_' . $type, $original_length); - variable_set('node_preview_' . $type, $original_preview); - } - // Delete old variable but leave 'teaser_length' for aggregator module upgrade. - variable_del('node_preview'); -} - -/** - * Add status/comment/promote and sticky columns to the {node_revision} table. - */ -function node_update_7005() { - foreach (array('status', 'comment', 'promote', 'sticky') as $column) { - db_add_field('node_revision', $column, array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - )); - } -} - -/** - * Convert body and teaser from node properties to fields, and migrate status/comment/promote and sticky columns to the {node_revision} table. - */ -function node_update_7006(&$sandbox) { - $sandbox['#finished'] = 0; - - // Get node type info for every invocation. - node_type_cache_reset(); - - if (!isset($sandbox['total'])) { - // Initial invocation. - - // First, create the body field. - $body_field = array( - 'field_name' => 'body', - 'type' => 'text_with_summary', - 'module' => 'text', - 'cardinality' => 1, - 'entity_types' => array('node'), - 'translatable' => TRUE, - ); - _update_7000_field_create_field($body_field); - - $default_trim_length = variable_get('teaser_length', 600); - - // Get node type info, specifically the body field settings. - $node_types = _update_7000_node_get_types(); - - // Create default settings for orphan nodes. - $extra_types = db_query('SELECT DISTINCT type FROM {node} WHERE type NOT IN (:types)', array(':types' => array_keys($node_types)))->fetchCol(); - foreach ($extra_types as $type) { - $type_object = new stdClass; - $type_object->type = $type; - // Always create a body. Querying node_revisions for a non-empty body - // would skip creating body fields for types that have a body but - // the nodes of that type so far had empty bodies. - $type_object->has_body = 1; - $type_object->body_label = 'Body'; - $node_types[$type_object->type] = $type_object; - } - - // Add body field instances for existing node types. - foreach ($node_types as $node_type) { - if ($node_type->has_body) { - $trim_length = variable_get('teaser_length_' . $node_type->type, $default_trim_length); - - $instance = array( - 'entity_type' => 'node', - 'bundle' => $node_type->type, - 'label' => $node_type->body_label, - 'widget' => array( - 'type' => 'text_textarea_with_summary', - 'settings' => array( - 'rows' => 20, - 'summary_rows' => 5, - ), - 'weight' => -4, - 'module' => 'text', - ), - 'settings' => array('display_summary' => TRUE), - 'display' => array( - 'default' => array( - 'label' => 'hidden', - 'type' => 'text_default', - ), - 'teaser' => array( - 'label' => 'hidden', - 'type' => 'text_summary_or_trimmed', - 'trim_length' => $trim_length, - ), - ), - ); - _update_7000_field_create_instance($body_field, $instance); - variable_del('teaser_length_' . $node_type->type); - } - // Leave 'teaser_length' variable for aggregator module upgrade. - - $sandbox['node_types_info'][$node_type->type] = array( - 'has_body' => $node_type->has_body, - ); - } - - // Used below when updating the stored text format of each node body. - $sandbox['existing_text_formats'] = db_query("SELECT format FROM {filter_format}")->fetchCol(); - - // Initialize state for future calls. - $sandbox['last'] = 0; - $sandbox['count'] = 0; - - $query = db_select('node', 'n'); - $query->join('node_revision', 'nr', 'n.nid = nr.nid'); - $sandbox['total'] = $query->countQuery()->execute()->fetchField(); - - $sandbox['body_field_id'] = $body_field['id']; - } - else { - // Subsequent invocations. - - $found = FALSE; - if ($sandbox['total']) { - // Operate on every revision of every node (whee!), in batches. - $batch_size = 200; - $query = db_select('node_revision', 'nr'); - $query->innerJoin('node', 'n', 'n.nid = nr.nid'); - $query - ->fields('nr', array('nid', 'vid', 'body', 'teaser', 'format')) - ->fields('n', array('type', 'status', 'comment', 'promote', 'sticky', 'language')) - ->condition('nr.vid', $sandbox['last'], '>') - ->orderBy('nr.vid', 'ASC') - ->range(0, $batch_size); - $revisions = $query->execute(); - - // Load each revision of each node, set up 'body' - // appropriately, and save the node's field data. Note that - // node_load() will not return the body or teaser values from - // {node_revision} because those columns have been removed from the - // schema structure in memory (but not yet from the database), - // so we get the values from the explicit query of the table - // instead. - foreach ($revisions as $revision) { - $found = TRUE; - - if ($sandbox['node_types_info'][$revision->type]['has_body']) { - $node = (object) array( - 'nid' => $revision->nid, - 'vid' => $revision->vid, - 'type' => $revision->type, - ); - // After node_update_7009() we will always have LANGUAGE_NONE as - // language neutral language code, but here we still have empty - // strings. - $langcode = empty($revision->language) ? LANGUAGE_NONE : $revision->language; - if (!empty($revision->teaser) && $revision->teaser != text_summary($revision->body)) { - $node->body[$langcode][0]['summary'] = $revision->teaser; - } - // Do this after text_summary() above. - $break = ''; - if (substr($revision->body, 0, strlen($break)) == $break) { - $revision->body = substr($revision->body, strlen($break)); - } - $node->body[$langcode][0]['value'] = $revision->body; - // Update the revision's text format for the changes to the Drupal 7 - // filter system. This uses the same kind of logic that occurs, for - // example, in user_update_7010(), but we do this here rather than - // via a separate set of database queries, since we are already - // migrating the data. - if (empty($revision->body) && empty($revision->format)) { - $node->body[$langcode][0]['format'] = NULL; - } - elseif (!in_array($revision->format, $sandbox['existing_text_formats'])) { - $node->body[$langcode][0]['format'] = variable_get('filter_default_format', 1); - } - else { - $node->body[$langcode][0]['format'] = $revision->format; - } - // This is a core update and no contrib modules are enabled yet, so - // we can assume default field storage for a faster update. - _update_7000_field_sql_storage_write('node', $node->type, $node->nid, $node->vid, 'body', $node->body); - } - - // Migrate the status columns to the {node_revision} table. - db_update('node_revision') - ->fields(array( - 'status' => $revision->status, - 'comment' => $revision->comment, - 'promote' => $revision->promote, - 'sticky' => $revision->sticky, - )) - ->condition('vid', $revision->vid) - ->execute(); - - $sandbox['last'] = $revision->vid; - $sandbox['count'] += 1; - } - - $sandbox['#finished'] = min(0.99, $sandbox['count'] / $sandbox['total']); - } - - if (!$found) { - // All nodes are processed. - - // Remove the now-obsolete body info from node_revision. - db_drop_field('node_revision', 'body'); - db_drop_field('node_revision', 'teaser'); - db_drop_field('node_revision', 'format'); - - // Remove node_type properties related to the former 'body'. - db_drop_field('node_type', 'has_body'); - db_drop_field('node_type', 'body_label'); - - // We're done. - $sandbox['#finished'] = 1; - } - } -} - -/** - * Remove column min_word_count. - */ -function node_update_7007() { - db_drop_field('node_type', 'min_word_count'); -} - -/** - * Split the 'administer nodes' permission from 'access content overview'. - */ -function node_update_7008() { - $roles = user_roles(FALSE, 'administer nodes'); - foreach ($roles as $rid => $role) { - _update_7000_user_role_grant_permissions($rid, array('access content overview'), 'node'); - } -} - -/** - * Convert node languages from the empty string to LANGUAGE_NONE. - */ -function node_update_7009() { - db_update('node') - ->fields(array('language' => LANGUAGE_NONE)) - ->condition('language', '') - ->execute(); -} - -/** - * Add the {block_node_type} table. - */ -function node_update_7010() { - $schema['block_node_type'] = array( - 'description' => 'Sets up display criteria for blocks based on content types', - 'fields' => array( - 'module' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'description' => "The block's origin module, from {block}.module.", - ), - 'delta' => array( - 'type' => 'varchar', - 'length' => 32, - 'not null' => TRUE, - 'description' => "The block's unique delta within module, from {block}.delta.", - ), - 'type' => array( - 'type' => 'varchar', - 'length' => 32, - 'not null' => TRUE, - 'description' => "The machine-readable name of this type from {node_type}.type.", - ), - ), - 'primary key' => array('module', 'delta', 'type'), - 'indexes' => array( - 'type' => array('type'), - ), - ); - - db_create_table('block_node_type', $schema['block_node_type']); -} - -/** - * @} End of "addtogroup updates-6.x-to-7.x" - */ diff --git modules/poll/poll.install modules/poll/poll.install index d74ff98..c848445 100644 --- modules/poll/poll.install +++ modules/poll/poll.install @@ -147,52 +147,3 @@ function poll_schema() { return $schema; } - -/** - * Use the poll_choice primary key to record votes in poll_votes rather than - * the choice order. Rename chorder to weight. - * - * Rename {poll_choices} table to {poll_choice} and {poll_votes} to {poll_vote}. - */ -function poll_update_7001() { - // Add chid column and convert existing votes. - db_add_field('poll_votes', 'chid', array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0)); - db_add_index('poll_votes', 'chid', array('chid')); - db_update('poll_votes') - ->expression('chid', Database::getConnection()->prefixTables('COALESCE((SELECT chid FROM {poll_choices} c WHERE {poll_votes}.chorder = c.chorder AND {poll_votes}.nid = c.nid), 0)')) - ->execute(); - // Delete invalid votes. - db_delete('poll_votes')->condition('chid', 0)->execute(); - // Remove old chorder column. - db_drop_field('poll_votes', 'chorder'); - - // Change the chorder column to weight in poll_choices. - db_change_field('poll_choices', 'chorder', 'weight', array('type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny')); - - db_rename_table('poll_votes', 'poll_vote'); - db_rename_table('poll_choices', 'poll_choice'); -} - -/** - * Add timestamp field to {poll_vote}. - */ -function poll_update_7002() { - $field = array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ); - db_add_field('poll_vote', 'timestamp', $field); -} - -/** - * Change the weight column to normal int. - */ -function poll_update_7003() { - db_change_field('poll_choice', 'weight', 'weight', array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'The sort order of this choice among all choices for the same node.', - )); -} diff --git modules/profile/profile.install modules/profile/profile.install index 5e4a17c..c5747cf 100644 --- modules/profile/profile.install +++ modules/profile/profile.install @@ -150,23 +150,3 @@ function profile_schema() { return $schema; } - -/** - * Rename {profile_fields} table to {profile_field} and {profile_values} to {profile_value}. - */ -function profile_update_7001() { - db_rename_table('profile_fields', 'profile_field'); - db_rename_table('profile_values', 'profile_value'); -} - -/** - * Change the weight column to normal int. - */ -function profile_update_7002() { - db_change_field('profile_field', 'weight', 'weight', array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'Weight of field in relation to other profile fields.', - )); -} diff --git modules/search/search.install modules/search/search.install index f0113b3..c450f05 100644 --- modules/search/search.install +++ modules/search/search.install @@ -153,30 +153,3 @@ function search_schema() { return $schema; } - -/** - * Replace unique keys in 'search_dataset' and 'search_index' by primary keys. - */ -function search_update_7000() { - db_drop_unique_key('search_dataset', 'sid_type'); - $dataset_type_spec = array( - 'type' => 'varchar', - 'length' => 16, - 'not null' => TRUE, - 'description' => 'Type of item, e.g. node.', - ); - db_change_field('search_dataset', 'type', 'type', $dataset_type_spec); - db_add_primary_key('search_dataset', array('sid', 'type')); - - db_drop_index('search_index', 'word'); - db_drop_unique_key('search_index', 'word_sid_type'); - $index_type_spec = array( - 'type' => 'varchar', - 'length' => 16, - 'not null' => TRUE, - 'description' => 'The {search_dataset}.type of the searchable item to which the word belongs.', - ); - db_change_field('search_index', 'type', 'type', $index_type_spec); - db_add_primary_key('search_index', array('word', 'sid', 'type')); -} - diff --git modules/simpletest/simpletest.info modules/simpletest/simpletest.info index 8545321..fa6a5cc 100644 --- modules/simpletest/simpletest.info +++ modules/simpletest/simpletest.info @@ -36,10 +36,3 @@ files[] = tests/theme.test files[] = tests/unicode.test files[] = tests/update.test files[] = tests/xmlrpc.test -files[] = tests/upgrade/upgrade.test -files[] = tests/upgrade/upgrade.comment.test -files[] = tests/upgrade/upgrade.filter.test -files[] = tests/upgrade/upgrade.node.test -files[] = tests/upgrade/upgrade.taxonomy.test -files[] = tests/upgrade/upgrade.upload.test -files[] = tests/upgrade/upgrade.locale.test diff --git modules/simpletest/tests/update.test modules/simpletest/tests/update.test index 966efff..2f55dc5 100644 --- modules/simpletest/tests/update.test +++ modules/simpletest/tests/update.test @@ -27,12 +27,12 @@ class UpdateDependencyOrderingTestCase extends DrupalWebTestCase { */ function testUpdateOrderingSingleModule() { $starting_updates = array( - 'update_test_1' => 7000, + 'update_test_1' => 8000, ); $expected_updates = array( - 'update_test_1_update_7000', - 'update_test_1_update_7001', - 'update_test_1_update_7002', + 'update_test_1_update_8000', + 'update_test_1_update_8001', + 'update_test_1_update_8002', ); $actual_updates = array_keys(update_resolve_dependencies($starting_updates)); $this->assertEqual($expected_updates, $actual_updates, t('Updates within a single module run in the correct order.')); @@ -43,14 +43,14 @@ class UpdateDependencyOrderingTestCase extends DrupalWebTestCase { */ function testUpdateOrderingModuleInterdependency() { $starting_updates = array( - 'update_test_2' => 7000, - 'update_test_3' => 7000, + 'update_test_2' => 8000, + 'update_test_3' => 8000, ); $update_order = array_keys(update_resolve_dependencies($starting_updates)); // Make sure that each dependency is satisfied. - $first_dependency_satisfied = array_search('update_test_2_update_7000', $update_order) < array_search('update_test_3_update_7000', $update_order); + $first_dependency_satisfied = array_search('update_test_2_update_8000', $update_order) < array_search('update_test_3_update_8000', $update_order); $this->assertTrue($first_dependency_satisfied, t('The dependency of the second module on the first module is respected by the update function order.')); - $second_dependency_satisfied = array_search('update_test_3_update_7000', $update_order) < array_search('update_test_2_update_7001', $update_order); + $second_dependency_satisfied = array_search('update_test_3_update_8000', $update_order) < array_search('update_test_2_update_8001', $update_order); $this->assertTrue($second_dependency_satisfied, t('The dependency of the first module on the second module is respected by the update function order.')); } } @@ -76,12 +76,12 @@ class UpdateDependencyMissingTestCase extends DrupalWebTestCase { function testMissingUpdate() { $starting_updates = array( - 'update_test_2' => 7000, + 'update_test_2' => 8000, ); $update_graph = update_resolve_dependencies($starting_updates); - $this->assertTrue($update_graph['update_test_2_update_7000']['allowed'], t("The module's first update function is allowed to run, since it does not have any missing dependencies.")); - $this->assertFalse($update_graph['update_test_2_update_7001']['allowed'], t("The module's second update function is not allowed to run, since it has a direct dependency on a missing update.")); - $this->assertFalse($update_graph['update_test_2_update_7002']['allowed'], t("The module's third update function is not allowed to run, since it has an indirect dependency on a missing update.")); + $this->assertTrue($update_graph['update_test_2_update_8000']['allowed'], t("The module's first update function is allowed to run, since it does not have any missing dependencies.")); + $this->assertFalse($update_graph['update_test_2_update_8001']['allowed'], t("The module's second update function is not allowed to run, since it has a direct dependency on a missing update.")); + $this->assertFalse($update_graph['update_test_2_update_8002']['allowed'], t("The module's third update function is not allowed to run, since it has an indirect dependency on a missing update.")); } } @@ -107,9 +107,9 @@ class UpdateDependencyHookInvocationTestCase extends DrupalWebTestCase { */ function testHookUpdateDependencies() { $update_dependencies = update_retrieve_dependencies(); - $this->assertTrue($update_dependencies['system'][7000]['update_test_1'] == 7000, t('An update function that has a dependency on two separate modules has the first dependency recorded correctly.')); - $this->assertTrue($update_dependencies['system'][7000]['update_test_2'] == 7001, t('An update function that has a dependency on two separate modules has the second dependency recorded correctly.')); - $this->assertTrue($update_dependencies['system'][7001]['update_test_1'] == 7002, t('An update function that depends on more than one update from the same module only has the dependency on the higher-numbered update function recorded.')); + $this->assertTrue($update_dependencies['system'][8000]['update_test_1'] == 8000, t('An update function that has a dependency on two separate modules has the first dependency recorded correctly.')); + $this->assertTrue($update_dependencies['system'][8000]['update_test_2'] == 8001, t('An update function that has a dependency on two separate modules has the second dependency recorded correctly.')); + $this->assertTrue($update_dependencies['system'][8001]['update_test_1'] == 8002, t('An update function that depends on more than one update from the same module only has the dependency on the higher-numbered update function recorded.')); } } diff --git modules/simpletest/tests/update_test_1.install modules/simpletest/tests/update_test_1.install index f4a86c7..22398a3 100644 --- modules/simpletest/tests/update_test_1.install +++ modules/simpletest/tests/update_test_1.install @@ -17,37 +17,37 @@ function update_test_1_update_dependencies() { // the correct array structure. Therefore, we use updates from System module // (which have already run), so that they will not get in the way of other // tests. - $dependencies['system'][7000] = array( + $dependencies['system'][8000] = array( // Compare to update_test_2_update_dependencies(), where the same System // module update function is forced to depend on an update function from a // different module. This allows us to test that both dependencies are // correctly recorded. - 'update_test_1' => 7000, + 'update_test_1' => 8000, ); - $dependencies['system'][7001] = array( + $dependencies['system'][8001] = array( // Compare to update_test_2_update_dependencies(), where the same System // module update function is forced to depend on a different update // function within the same module. This allows us to test that only the // dependency on the higher-numbered update function is recorded. - 'update_test_1' => 7002, + 'update_test_1' => 8002, ); return $dependencies; } /** - * Dummy update_test_1 update 7000. + * Dummy update_test_1 update 8000. */ -function update_test_1_update_7000() { +function update_test_1_update_8000() { } /** - * Dummy update_test_1 update 7001. + * Dummy update_test_1 update 8001. */ -function update_test_1_update_7001() { +function update_test_1_update_8001() { } /** - * Dummy update_test_1 update 7002. + * Dummy update_test_1 update 8002. */ -function update_test_1_update_7002() { +function update_test_1_update_8002() { } diff --git modules/simpletest/tests/update_test_2.install modules/simpletest/tests/update_test_2.install index 9c076ff..c73271a 100644 --- modules/simpletest/tests/update_test_2.install +++ modules/simpletest/tests/update_test_2.install @@ -14,40 +14,40 @@ function update_test_2_update_dependencies() { // Combined with update_test_3_update_dependencies(), we are declaring here // that these two modules run updates in the following order: - // 1. update_test_2_update_7000() - // 2. update_test_3_update_7000() - // 3. update_test_2_update_7001() - // 4. update_test_2_update_7002() - $dependencies['update_test_2'][7001] = array( - 'update_test_3' => 7000, + // 1. update_test_2_update_8000() + // 2. update_test_3_update_8000() + // 3. update_test_2_update_8001() + // 4. update_test_2_update_8002() + $dependencies['update_test_2'][8001] = array( + 'update_test_3' => 8000, ); // These are coordinated with the corresponding dependencies declared in // update_test_1_update_dependencies(). - $dependencies['system'][7000] = array( - 'update_test_2' => 7001, + $dependencies['system'][8000] = array( + 'update_test_2' => 8001, ); - $dependencies['system'][7001] = array( - 'update_test_1' => 7001, + $dependencies['system'][8001] = array( + 'update_test_1' => 8001, ); return $dependencies; } /** - * Dummy update_test_2 update 7000. + * Dummy update_test_2 update 8000. */ -function update_test_2_update_7000() { +function update_test_2_update_8000() { } /** - * Dummy update_test_2 update 7001. + * Dummy update_test_2 update 8001. */ -function update_test_2_update_7001() { +function update_test_2_update_8001() { } /** - * Dummy update_test_2 update 7002. + * Dummy update_test_2 update 8002. */ -function update_test_2_update_7002() { +function update_test_2_update_8002() { } diff --git modules/simpletest/tests/update_test_3.install modules/simpletest/tests/update_test_3.install index c3f6b75..96830c8 100644 --- modules/simpletest/tests/update_test_3.install +++ modules/simpletest/tests/update_test_3.install @@ -11,14 +11,14 @@ * @see update_test_2_update_dependencies() */ function update_test_3_update_dependencies() { - $dependencies['update_test_3'][7000] = array( - 'update_test_2' => 7000, + $dependencies['update_test_3'][8000] = array( + 'update_test_2' => 8000, ); return $dependencies; } /** - * Dummy update_test_3 update 7000. + * Dummy update_test_3 update 8000. */ -function update_test_3_update_7000() { +function update_test_3_update_8000() { } diff --git modules/simpletest/tests/upgrade/drupal-6.bare.database.php modules/simpletest/tests/upgrade/drupal-6.bare.database.php deleted file mode 100644 index 40c7562..0000000 --- modules/simpletest/tests/upgrade/drupal-6.bare.database.php +++ /dev/null @@ -1,8131 +0,0 @@ - array( - 'aid' => array( - 'type' => 'serial', - 'not null' => TRUE, - ), - 'mask' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'type' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'status' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - ), - 'primary key' => array( - 'aid', - ), - 'module' => 'user', - 'name' => 'access', -)); - -db_create_table('actions', array( - 'fields' => array( - 'aid' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '0', - ), - 'type' => array( - 'type' => 'varchar', - 'length' => 32, - 'not null' => TRUE, - 'default' => '', - ), - 'callback' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'parameters' => array( - 'type' => 'text', - 'not null' => TRUE, - 'size' => 'big', - ), - 'description' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '0', - ), - ), - 'primary key' => array( - 'aid', - ), - 'module' => 'system', - 'name' => 'actions', -)); -db_insert('actions')->fields(array( - 'aid', - 'type', - 'callback', - 'parameters', - 'description', -)) -->values(array( - 'aid' => 'node_make_sticky_action', - 'type' => 'node', - 'callback' => 'node_make_sticky_action', - 'parameters' => '', - 'description' => 'Make post sticky', -)) -->values(array( - 'aid' => 'node_make_unsticky_action', - 'type' => 'node', - 'callback' => 'node_make_unsticky_action', - 'parameters' => '', - 'description' => 'Make post unsticky', -)) -->values(array( - 'aid' => 'node_promote_action', - 'type' => 'node', - 'callback' => 'node_promote_action', - 'parameters' => '', - 'description' => 'Promote post to front page', -)) -->values(array( - 'aid' => 'node_publish_action', - 'type' => 'node', - 'callback' => 'node_publish_action', - 'parameters' => '', - 'description' => 'Publish post', -)) -->values(array( - 'aid' => 'node_save_action', - 'type' => 'node', - 'callback' => 'node_save_action', - 'parameters' => '', - 'description' => 'Save post', -)) -->values(array( - 'aid' => 'node_unpromote_action', - 'type' => 'node', - 'callback' => 'node_unpromote_action', - 'parameters' => '', - 'description' => 'Remove post from front page', -)) -->values(array( - 'aid' => 'node_unpublish_action', - 'type' => 'node', - 'callback' => 'node_unpublish_action', - 'parameters' => '', - 'description' => 'Unpublish post', -)) -->values(array( - 'aid' => 'user_block_ip_action', - 'type' => 'user', - 'callback' => 'user_block_ip_action', - 'parameters' => '', - 'description' => 'Ban IP address of current user', -)) -->values(array( - 'aid' => 'user_block_user_action', - 'type' => 'user', - 'callback' => 'user_block_user_action', - 'parameters' => '', - 'description' => 'Block current user', -)) -->execute(); - -db_create_table('actions_aid', array( - 'fields' => array( - 'aid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - ), - 'primary key' => array( - 'aid', - ), - 'module' => 'system', - 'name' => 'actions_aid', -)); - -db_create_table('authmap', array( - 'fields' => array( - 'aid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'uid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'authname' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - 'module' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - ), - 'unique keys' => array( - 'authname' => array( - 'authname', - ), - ), - 'primary key' => array( - 'aid', - ), - 'module' => 'user', - 'name' => 'authmap', -)); - -db_create_table('batch', array( - 'fields' => array( - 'bid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'token' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - ), - 'timestamp' => array( - 'type' => 'int', - 'not null' => TRUE, - ), - 'batch' => array( - 'type' => 'text', - 'not null' => FALSE, - 'size' => 'big', - ), - ), - 'primary key' => array( - 'bid', - ), - 'indexes' => array( - 'token' => array( - 'token', - ), - ), - 'module' => 'system', - 'name' => 'batch', -)); - -db_create_table('blocks', array( - 'fields' => array( - 'bid' => array( - 'type' => 'serial', - 'not null' => TRUE, - ), - 'module' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - ), - 'delta' => array( - 'type' => 'varchar', - 'length' => 32, - 'not null' => TRUE, - 'default' => '0', - ), - 'theme' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - ), - 'status' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'weight' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'region' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - ), - 'custom' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'throttle' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'visibility' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'pages' => array( - 'type' => 'text', - 'not null' => TRUE, - ), - 'title' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - ), - 'cache' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 1, - 'size' => 'tiny', - ), - ), - 'primary key' => array( - 'bid', - ), - 'unique keys' => array( - 'tmd' => array( - 'theme', - 'module', - 'delta', - ), - ), - 'indexes' => array( - 'list' => array( - 'theme', - 'status', - 'region', - 'weight', - 'module', - ), - ), - 'module' => 'block', - 'name' => 'blocks', -)); -db_insert('blocks')->fields(array( - 'bid', - 'module', - 'delta', - 'theme', - 'status', - 'weight', - 'region', - 'custom', - 'throttle', - 'visibility', - 'pages', - 'title', - 'cache', -)) -->values(array( - 'bid' => '1', - 'module' => 'user', - 'delta' => '0', - 'theme' => 'garland', - 'status' => '1', - 'weight' => '0', - 'region' => 'left', - 'custom' => '0', - 'throttle' => '0', - 'visibility' => '0', - 'pages' => '', - 'title' => '', - 'cache' => '-1', -)) -->values(array( - 'bid' => '2', - 'module' => 'user', - 'delta' => '1', - 'theme' => 'garland', - 'status' => '1', - 'weight' => '0', - 'region' => 'left', - 'custom' => '0', - 'throttle' => '0', - 'visibility' => '0', - 'pages' => '', - 'title' => '', - 'cache' => '-1', -)) -->values(array( - 'bid' => '3', - 'module' => 'system', - 'delta' => '0', - 'theme' => 'garland', - 'status' => '1', - 'weight' => '10', - 'region' => 'footer', - 'custom' => '0', - 'throttle' => '0', - 'visibility' => '0', - 'pages' => '', - 'title' => '', - 'cache' => '-1', -)) -->execute(); - -db_create_table('blocks_roles', array( - 'fields' => array( - 'module' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - ), - 'delta' => array( - 'type' => 'varchar', - 'length' => 32, - 'not null' => TRUE, - ), - 'rid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - ), - 'primary key' => array( - 'module', - 'delta', - 'rid', - ), - 'indexes' => array( - 'rid' => array( - 'rid', - ), - ), - 'module' => 'block', - 'name' => 'blocks_roles', -)); - -db_create_table('boxes', array( - 'fields' => array( - 'bid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'body' => array( - 'type' => 'text', - 'not null' => FALSE, - 'size' => 'big', - ), - 'info' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - 'format' => array( - 'type' => 'int', - 'size' => 'small', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'unique keys' => array( - 'info' => array( - 'info', - ), - ), - 'primary key' => array( - 'bid', - ), - 'module' => 'block', - 'name' => 'boxes', -)); - -db_create_table('cache', array( - 'fields' => array( - 'cid' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'data' => array( - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'big', - ), - 'expire' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'created' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'headers' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - 'serialized' => array( - 'type' => 'int', - 'size' => 'small', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'expire' => array( - 'expire', - ), - ), - 'primary key' => array( - 'cid', - ), - 'module' => 'system', - 'name' => 'cache', -)); - -db_create_table('cache_block', array( - 'fields' => array( - 'cid' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'data' => array( - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'big', - ), - 'expire' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'created' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'headers' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - 'serialized' => array( - 'type' => 'int', - 'size' => 'small', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'expire' => array( - 'expire', - ), - ), - 'primary key' => array( - 'cid', - ), - 'module' => 'block', - 'name' => 'cache_block', -)); - -db_create_table('cache_filter', array( - 'fields' => array( - 'cid' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'data' => array( - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'big', - ), - 'expire' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'created' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'headers' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - 'serialized' => array( - 'type' => 'int', - 'size' => 'small', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'expire' => array( - 'expire', - ), - ), - 'primary key' => array( - 'cid', - ), - 'module' => 'filter', - 'name' => 'cache_filter', -)); - -db_create_table('cache_form', array( - 'fields' => array( - 'cid' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'data' => array( - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'big', - ), - 'expire' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'created' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'headers' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - 'serialized' => array( - 'type' => 'int', - 'size' => 'small', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'expire' => array( - 'expire', - ), - ), - 'primary key' => array( - 'cid', - ), - 'module' => 'system', - 'name' => 'cache_form', -)); - -db_create_table('cache_menu', array( - 'fields' => array( - 'cid' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'data' => array( - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'big', - ), - 'expire' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'created' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'headers' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - 'serialized' => array( - 'type' => 'int', - 'size' => 'small', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'expire' => array( - 'expire', - ), - ), - 'primary key' => array( - 'cid', - ), - 'module' => 'system', - 'name' => 'cache_menu', -)); - -db_create_table('cache_page', array( - 'fields' => array( - 'cid' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'data' => array( - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'big', - ), - 'expire' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'created' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'headers' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - 'serialized' => array( - 'type' => 'int', - 'size' => 'small', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'expire' => array( - 'expire', - ), - ), - 'primary key' => array( - 'cid', - ), - 'module' => 'system', - 'name' => 'cache_page', -)); - -db_create_table('cache_update', array( - 'fields' => array( - 'cid' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'data' => array( - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'big', - ), - 'expire' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'created' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'headers' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - 'serialized' => array( - 'type' => 'int', - 'size' => 'small', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'expire' => array( - 'expire', - ), - ), - 'primary key' => array( - 'cid', - ), - 'module' => 'update', - 'name' => 'cache_update', -)); - -db_create_table('files', array( - 'fields' => array( - 'fid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'uid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'filename' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'filepath' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'filemime' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'filesize' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'status' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'timestamp' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'uid' => array( - 'uid', - ), - 'status' => array( - 'status', - ), - 'timestamp' => array( - 'timestamp', - ), - ), - 'primary key' => array( - 'fid', - ), - 'module' => 'system', - 'name' => 'files', -)); - -db_create_table('filter_formats', array( - 'fields' => array( - 'format' => array( - 'type' => 'serial', - 'not null' => TRUE, - ), - 'name' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'roles' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'cache' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - ), - 'primary key' => array( - 'format', - ), - 'unique keys' => array( - 'name' => array( - 'name', - ), - ), - 'module' => 'filter', - 'name' => 'filter_formats', -)); -db_insert('filter_formats')->fields(array( - 'format', - 'name', - 'roles', - 'cache', -)) -->values(array( - 'format' => '1', - 'name' => 'Filtered HTML', - 'roles' => ',1,2,', - 'cache' => '1', -)) -->values(array( - 'format' => '2', - 'name' => 'Full HTML', - 'roles' => '', - 'cache' => '1', -)) -->execute(); - -db_create_table('filters', array( - 'fields' => array( - 'fid' => array( - 'type' => 'serial', - 'not null' => TRUE, - ), - 'format' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'module' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - ), - 'delta' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'weight' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - ), - 'primary key' => array( - 'fid', - ), - 'unique keys' => array( - 'fmd' => array( - 'format', - 'module', - 'delta', - ), - ), - 'indexes' => array( - 'list' => array( - 'format', - 'weight', - 'module', - 'delta', - ), - ), - 'module' => 'filter', - 'name' => 'filters', -)); -db_insert('filters')->fields(array( - 'fid', - 'format', - 'module', - 'delta', - 'weight', -)) -->values(array( - 'fid' => '1', - 'format' => '1', - 'module' => 'filter', - 'delta' => '2', - 'weight' => '0', -)) -->values(array( - 'fid' => '2', - 'format' => '1', - 'module' => 'filter', - 'delta' => '0', - 'weight' => '1', -)) -->values(array( - 'fid' => '3', - 'format' => '1', - 'module' => 'filter', - 'delta' => '1', - 'weight' => '2', -)) -->values(array( - 'fid' => '4', - 'format' => '1', - 'module' => 'filter', - 'delta' => '3', - 'weight' => '10', -)) -->values(array( - 'fid' => '5', - 'format' => '2', - 'module' => 'filter', - 'delta' => '2', - 'weight' => '0', -)) -->values(array( - 'fid' => '6', - 'format' => '2', - 'module' => 'filter', - 'delta' => '1', - 'weight' => '1', -)) -->values(array( - 'fid' => '7', - 'format' => '2', - 'module' => 'filter', - 'delta' => '3', - 'weight' => '10', -)) -->execute(); - -db_create_table('flood', array( - 'fields' => array( - 'fid' => array( - 'type' => 'serial', - 'not null' => TRUE, - ), - 'event' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - ), - 'hostname' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - 'timestamp' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'primary key' => array( - 'fid', - ), - 'indexes' => array( - 'allow' => array( - 'event', - 'hostname', - 'timestamp', - ), - ), - 'module' => 'system', - 'name' => 'flood', -)); - -db_create_table('history', array( - 'fields' => array( - 'uid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'nid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'timestamp' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'primary key' => array( - 'uid', - 'nid', - ), - 'indexes' => array( - 'nid' => array( - 'nid', - ), - ), - 'module' => 'system', - 'name' => 'history', -)); - -db_create_table('menu_links', array( - 'fields' => array( - 'menu_name' => array( - 'type' => 'varchar', - 'length' => 32, - 'not null' => TRUE, - 'default' => '', - ), - 'mlid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'plid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'link_path' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'router_path' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'link_title' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'options' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - 'module' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => 'system', - ), - 'hidden' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'small', - ), - 'external' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'small', - ), - 'has_children' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'small', - ), - 'expanded' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'small', - ), - 'weight' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'depth' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'small', - ), - 'customized' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'small', - ), - 'p1' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'p2' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'p3' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'p4' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'p5' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'p6' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'p7' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'p8' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'p9' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'updated' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'small', - ), - ), - 'indexes' => array( - 'path_menu' => array( - array( - 'link_path', - 128, - ), - 'menu_name', - ), - 'menu_plid_expand_child' => array( - 'menu_name', - 'plid', - 'expanded', - 'has_children', - ), - 'menu_parents' => array( - 'menu_name', - 'p1', - 'p2', - 'p3', - 'p4', - 'p5', - 'p6', - 'p7', - 'p8', - 'p9', - ), - 'router_path' => array( - array( - 'router_path', - 128, - ), - ), - ), - 'primary key' => array( - 'mlid', - ), - 'module' => 'system', - 'name' => 'menu_links', -)); -db_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' => 'navigation', - 'mlid' => '1', - 'plid' => '0', - 'link_path' => 'batch', - 'router_path' => 'batch', - 'link_title' => '', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - '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' => 'navigation', - 'mlid' => '2', - 'plid' => '0', - 'link_path' => 'admin', - 'router_path' => 'admin', - 'link_title' => 'Administer', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '9', - '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' => 'node', - 'router_path' => 'node', - 'link_title' => 'Content', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - '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' => 'logout', - 'router_path' => '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' => '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' => 'rss.xml', - 'router_path' => 'rss.xml', - 'link_title' => 'RSS feed', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - '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' => 'user', - 'router_path' => 'user', - 'link_title' => 'User account', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - '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' => 'navigation', - 'mlid' => '7', - 'plid' => '0', - 'link_path' => 'node/%', - 'router_path' => 'node/%', - 'link_title' => '', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '7', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '8', - 'plid' => '2', - 'link_path' => 'admin/compact', - 'router_path' => 'admin/compact', - 'link_title' => 'Compact mode', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '2', - 'p2' => '8', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '9', - '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' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '9', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '10', - 'plid' => '2', - 'link_path' => 'admin/content', - 'router_path' => 'admin/content', - 'link_title' => 'Content management', - 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:27:\"Manage your site's content.\";}}", - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '-10', - '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' => 'navigation', - 'mlid' => '11', - 'plid' => '0', - 'link_path' => 'node/add', - 'router_path' => 'node/add', - 'link_title' => 'Create content', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '1', - 'depth' => '1', - 'customized' => '0', - 'p1' => '11', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '12', - 'plid' => '0', - 'link_path' => 'system/files', - 'router_path' => 'system/files', - 'link_title' => 'File download', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '12', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '13', - 'plid' => '2', - 'link_path' => 'admin/reports', - 'router_path' => 'admin/reports', - 'link_title' => 'Reports', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:59:"View reports from system logs and other status information.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '5', - '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' => 'navigation', - 'mlid' => '14', - 'plid' => '2', - 'link_path' => 'admin/build', - 'router_path' => 'admin/build', - 'link_title' => 'Site building', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:38:"Control how your site looks and feels.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '-10', - 'depth' => '2', - 'customized' => '0', - 'p1' => '2', - 'p2' => '14', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '15', - 'plid' => '2', - 'link_path' => 'admin/settings', - 'router_path' => 'admin/settings', - 'link_title' => 'Site configuration', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:40:"Adjust basic site configuration options.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '-5', - 'depth' => '2', - 'customized' => '0', - 'p1' => '2', - '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/autocomplete', - 'router_path' => 'user/autocomplete', - 'link_title' => 'User autocomplete', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - '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' => 'navigation', - 'mlid' => '17', - 'plid' => '2', - 'link_path' => 'admin/user', - 'router_path' => 'admin/user', - 'link_title' => 'User management', - 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:61:\"Manage your site's users, groups and access to site features.\";}}", - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '18', - 'plid' => '0', - 'link_path' => 'user/%', - 'router_path' => 'user/%', - 'link_title' => 'My account', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '18', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '19', - 'plid' => '17', - 'link_path' => 'admin/user/rules', - 'router_path' => 'admin/user/rules', - 'link_title' => 'Access rules', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:80:"List and create rules to disallow usernames, e-mail addresses, and IP addresses.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '19', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '20', - 'plid' => '15', - 'link_path' => 'admin/settings/actions', - 'router_path' => 'admin/settings/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' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '20', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '21', - 'plid' => '15', - 'link_path' => 'admin/settings/admin', - 'router_path' => 'admin/settings/admin', - 'link_title' => 'Administration theme', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:55:"Settings for how your administrative pages should look.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '21', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '22', - 'plid' => '14', - 'link_path' => 'admin/build/block', - 'router_path' => 'admin/build/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' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '14', - 'p3' => '22', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '23', - 'plid' => '15', - 'link_path' => 'admin/settings/clean-urls', - 'router_path' => 'admin/settings/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' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '23', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '24', - 'plid' => '10', - 'link_path' => 'admin/content/node', - 'router_path' => 'admin/content/node', - 'link_title' => 'Content', - 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View, edit, and delete your site's content.\";}}", - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '10', - 'p3' => '24', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '25', - 'plid' => '10', - 'link_path' => 'admin/content/types', - 'router_path' => 'admin/content/types', - 'link_title' => 'Content types', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:82:"Manage posts by content type, including default status, front page promotion, etc.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '10', - 'p3' => '25', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '26', - 'plid' => '15', - 'link_path' => 'admin/settings/date-time', - 'router_path' => 'admin/settings/date-time', - 'link_title' => 'Date and time', - 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:89:\"Settings for how Drupal displays date and time, as well as the system's default timezone.\";}}", - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '26', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '27', - 'plid' => '0', - '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' => '1', - 'customized' => '0', - 'p1' => '27', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '28', - 'plid' => '18', - 'link_path' => 'user/%/delete', - 'router_path' => 'user/%/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' => '18', - 'p2' => '28', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '29', - 'plid' => '15', - 'link_path' => 'admin/settings/error-reporting', - 'router_path' => 'admin/settings/error-reporting', - 'link_title' => 'Error reporting', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:93:"Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '29', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '30', - 'plid' => '15', - 'link_path' => 'admin/settings/file-system', - 'router_path' => 'admin/settings/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' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '30', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '31', - 'plid' => '15', - 'link_path' => 'admin/settings/image-toolkit', - 'router_path' => 'admin/settings/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' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '31', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '32', - 'plid' => '15', - 'link_path' => 'admin/settings/filters', - 'router_path' => 'admin/settings/filters', - 'link_title' => 'Input 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' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '32', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '33', - 'plid' => '15', - 'link_path' => 'admin/settings/logging', - 'router_path' => 'admin/settings/logging', - 'link_title' => 'Logging and alerts', - 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:156:\"Settings for logging and alerts modules. Various modules can route Drupal's system events to different destination, such as syslog, database, email, ...etc.\";}}", - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '33', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '34', - 'plid' => '14', - 'link_path' => 'admin/build/modules', - 'router_path' => 'admin/build/modules', - 'link_title' => 'Modules', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:47:"Enable or disable add-on modules for your site.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '14', - 'p3' => '34', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '35', - 'plid' => '15', - 'link_path' => 'admin/settings/performance', - 'router_path' => 'admin/settings/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' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '35', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '36', - 'plid' => '17', - 'link_path' => 'admin/user/permissions', - 'router_path' => 'admin/user/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' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '36', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '37', - 'plid' => '10', - 'link_path' => 'admin/content/node-settings', - 'router_path' => 'admin/content/node-settings', - 'link_title' => 'Post settings', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:126:"Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '10', - 'p3' => '37', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '38', - 'plid' => '10', - 'link_path' => 'admin/content/rss-publishing', - 'router_path' => 'admin/content/rss-publishing', - 'link_title' => 'RSS publishing', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:92:"Configure the number of items per feed and whether feeds should be titles/teasers/full-text.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '10', - 'p3' => '38', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '39', - 'plid' => '13', - 'link_path' => 'admin/reports/dblog', - 'router_path' => 'admin/reports/dblog', - 'link_title' => 'Recent log entries', - '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' => '2', - 'p2' => '13', - 'p3' => '39', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '40', - 'plid' => '17', - 'link_path' => 'admin/user/roles', - 'router_path' => 'admin/user/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' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '40', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '41', - 'plid' => '15', - 'link_path' => 'admin/settings/site-information', - 'router_path' => 'admin/settings/site-information', - 'link_title' => 'Site information', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:107:"Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '41', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '42', - 'plid' => '15', - 'link_path' => 'admin/settings/site-maintenance', - 'router_path' => 'admin/settings/site-maintenance', - 'link_title' => 'Site maintenance', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:63:"Take the site off-line for maintenance or bring it back online.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '42', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '43', - 'plid' => '13', - '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' => '10', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '13', - 'p3' => '43', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '44', - 'plid' => '14', - 'link_path' => 'admin/build/themes', - 'router_path' => 'admin/build/themes', - 'link_title' => 'Themes', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:57:"Change which theme your site uses or allows users to set.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '14', - 'p3' => '44', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '45', - 'plid' => '13', - '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' => '2', - 'p2' => '13', - 'p3' => '45', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '46', - 'plid' => '13', - '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' => '2', - 'p2' => '13', - 'p3' => '46', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '47', - 'plid' => '17', - 'link_path' => 'admin/user/settings', - 'router_path' => 'admin/user/settings', - 'link_title' => 'User settings', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:101:"Configure default behavior of users, including registration requirements, e-mails, and user pictures.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '47', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '48', - 'plid' => '17', - 'link_path' => 'admin/user/user', - 'router_path' => 'admin/user/user', - 'link_title' => 'Users', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:26:"List, add, and edit users.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '48', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '49', - 'plid' => '32', - 'link_path' => 'admin/settings/filters/%', - 'router_path' => 'admin/settings/filters/%', - 'link_title' => '', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '32', - 'p4' => '49', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '50', - 'plid' => '23', - 'link_path' => 'admin/settings/clean-urls/check', - 'router_path' => 'admin/settings/clean-urls/check', - 'link_title' => 'Clean URL check', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '23', - 'p4' => '50', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '51', - 'plid' => '20', - 'link_path' => 'admin/settings/actions/configure', - 'router_path' => 'admin/settings/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' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '20', - 'p4' => '51', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '52', - 'plid' => '22', - 'link_path' => 'admin/build/block/configure', - 'router_path' => 'admin/build/block/configure', - 'link_title' => 'Configure block', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '14', - 'p3' => '22', - 'p4' => '52', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '53', - 'plid' => '33', - 'link_path' => 'admin/settings/logging/dblog', - 'router_path' => 'admin/settings/logging/dblog', - 'link_title' => 'Database logging', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:169:"Settings for logging to the Drupal database logs. This is the most common method for small to medium sites on shared hosting. The logs are viewable from the admin pages.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '33', - 'p4' => '53', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '54', - 'plid' => '26', - 'link_path' => 'admin/settings/date-time/lookup', - 'router_path' => 'admin/settings/date-time/lookup', - 'link_title' => 'Date and time lookup', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '26', - 'p4' => '54', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '55', - 'plid' => '22', - 'link_path' => 'admin/build/block/delete', - 'router_path' => 'admin/build/block/delete', - 'link_title' => 'Delete block', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '14', - 'p3' => '22', - 'p4' => '55', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '56', - 'plid' => '32', - 'link_path' => 'admin/settings/filters/delete', - 'router_path' => 'admin/settings/filters/delete', - 'link_title' => 'Delete input format', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '32', - 'p4' => '56', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '57', - 'plid' => '19', - 'link_path' => 'admin/user/rules/delete', - 'router_path' => 'admin/user/rules/delete', - 'link_title' => 'Delete rule', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '19', - 'p4' => '57', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '58', - 'plid' => '13', - 'link_path' => 'admin/reports/event/%', - 'router_path' => 'admin/reports/event/%', - 'link_title' => 'Details', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '13', - 'p3' => '58', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '59', - 'plid' => '40', - 'link_path' => 'admin/user/roles/edit', - 'router_path' => 'admin/user/roles/edit', - 'link_title' => 'Edit role', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '40', - 'p4' => '59', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '60', - 'plid' => '19', - 'link_path' => 'admin/user/rules/edit', - 'router_path' => 'admin/user/rules/edit', - 'link_title' => 'Edit rule', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '19', - 'p4' => '60', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '61', - 'plid' => '43', - 'link_path' => 'admin/reports/status/php', - 'router_path' => 'admin/reports/status/php', - 'link_title' => 'PHP', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '13', - 'p3' => '43', - 'p4' => '61', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '62', - 'plid' => '37', - 'link_path' => 'admin/content/node-settings/rebuild', - 'router_path' => 'admin/content/node-settings/rebuild', - 'link_title' => 'Rebuild permissions', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '10', - 'p3' => '37', - 'p4' => '62', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '63', - 'plid' => '20', - 'link_path' => 'admin/settings/actions/orphan', - 'router_path' => 'admin/settings/actions/orphan', - 'link_title' => 'Remove orphans', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '20', - 'p4' => '63', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '64', - 'plid' => '43', - 'link_path' => 'admin/reports/status/run-cron', - 'router_path' => 'admin/reports/status/run-cron', - 'link_title' => 'Run cron', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '13', - 'p3' => '43', - 'p4' => '64', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '65', - 'plid' => '43', - 'link_path' => 'admin/reports/status/sql', - 'router_path' => 'admin/reports/status/sql', - 'link_title' => 'SQL', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '13', - 'p3' => '43', - 'p4' => '65', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '66', - 'plid' => '20', - 'link_path' => 'admin/settings/actions/delete/%', - 'router_path' => 'admin/settings/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' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '20', - 'p4' => '66', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '67', - 'plid' => '22', - 'link_path' => 'admin/build/block/list/js', - 'router_path' => 'admin/build/block/list/js', - 'link_title' => 'JavaScript List Form', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '14', - 'p3' => '22', - 'p4' => '67', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '68', - 'plid' => '34', - 'link_path' => 'admin/build/modules/list/confirm', - 'router_path' => 'admin/build/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' => '2', - 'p2' => '14', - 'p3' => '34', - 'p4' => '68', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '69', - 'plid' => '0', - 'link_path' => 'user/reset/%/%/%', - 'router_path' => 'user/reset/%/%/%', - 'link_title' => 'Reset password', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '69', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '70', - 'plid' => '34', - 'link_path' => 'admin/build/modules/uninstall/confirm', - 'router_path' => 'admin/build/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' => '2', - 'p2' => '14', - 'p3' => '34', - 'p4' => '70', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '71', - 'plid' => '0', - 'link_path' => 'node/%/revisions/%/delete', - 'router_path' => 'node/%/revisions/%/delete', - 'link_title' => 'Delete earlier revision', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '71', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '72', - 'plid' => '0', - 'link_path' => 'node/%/revisions/%/revert', - 'router_path' => 'node/%/revisions/%/revert', - 'link_title' => 'Revert to earlier revision', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '72', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '73', - 'plid' => '0', - 'link_path' => 'node/%/revisions/%/view', - 'router_path' => 'node/%/revisions/%/view', - 'link_title' => 'Revisions', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '73', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '74', - 'plid' => '13', - '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' => '10', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '13', - 'p3' => '74', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '75', - 'plid' => '11', - 'link_path' => 'node/add/page', - 'router_path' => 'node/add/page', - 'link_title' => 'Page', - 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:296:\"A page, similar in form to a story, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a page entry does not allow visitor comments and is not featured on the site's initial home page.\";}}", - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '11', - 'p2' => '75', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '76', - 'plid' => '11', - 'link_path' => 'node/add/story', - 'router_path' => 'node/add/story', - 'link_title' => 'Story', - 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:392:\"A story, similar in form to a page, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a story entry. By default, a story entry is automatically featured on the site's initial home page, and provides the ability to post comments.\";}}", - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '11', - 'p2' => '76', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '77', - 'plid' => '74', - 'link_path' => 'admin/reports/updates/check', - 'router_path' => 'admin/reports/updates/check', - 'link_title' => 'Manual update check', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '13', - 'p3' => '74', - 'p4' => '77', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '78', - 'plid' => '10', - 'link_path' => 'admin/content/node-type/page', - 'router_path' => 'admin/content/node-type/page', - 'link_title' => 'Page', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '10', - 'p3' => '78', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '79', - 'plid' => '10', - 'link_path' => 'admin/content/node-type/story', - 'router_path' => 'admin/content/node-type/story', - 'link_title' => 'Story', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '10', - 'p3' => '79', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '80', - 'plid' => '0', - 'link_path' => 'admin/content/node-type/page/delete', - 'router_path' => 'admin/content/node-type/page/delete', - 'link_title' => 'Delete', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '80', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '81', - 'plid' => '0', - 'link_path' => 'admin/content/node-type/story/delete', - 'router_path' => 'admin/content/node-type/story/delete', - 'link_title' => 'Delete', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '81', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->execute(); - -db_create_table('menu_router', array( - 'fields' => array( - 'path' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'load_functions' => array( - 'type' => 'text', - 'not null' => TRUE, - ), - 'to_arg_functions' => array( - 'type' => 'text', - 'not null' => TRUE, - ), - 'access_callback' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'access_arguments' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - 'page_callback' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'page_arguments' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - 'fit' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'number_parts' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'small', - ), - 'tab_parent' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'tab_root' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'title' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'title_callback' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'title_arguments' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'type' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'block_callback' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'description' => array( - 'type' => 'text', - 'not null' => TRUE, - ), - 'position' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'weight' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'file' => array( - 'type' => 'text', - 'size' => 'medium', - ), - ), - 'indexes' => array( - 'fit' => array( - 'fit', - ), - 'tab_parent' => array( - 'tab_parent', - ), - 'tab_root_weight_title' => array( - array( - 'tab_root', - 64, - ), - 'weight', - 'title', - ), - ), - 'primary key' => array( - 'path', - ), - 'module' => 'system', - 'name' => 'menu_router', -)); -db_insert('menu_router')->fields(array( - 'path', - 'load_functions', - 'to_arg_functions', - 'access_callback', - 'access_arguments', - 'page_callback', - 'page_arguments', - 'fit', - 'number_parts', - 'tab_parent', - 'tab_root', - 'title', - 'title_callback', - 'title_arguments', - 'type', - 'block_callback', - 'description', - 'position', - 'weight', - '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_main_admin_page', - 'page_arguments' => 'a:0:{}', - 'fit' => '1', - 'number_parts' => '1', - 'tab_parent' => '', - 'tab_root' => 'admin', - 'title' => 'Administer', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '9', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build', - '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:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'admin/build', - 'title' => 'Site building', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Control how your site looks and feels.', - 'position' => 'right', - 'weight' => '-10', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/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:0:{}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/build/block', - 'title' => 'Blocks', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => "Configure what block content appears in your site's sidebars and other regions.", - 'position' => '', - 'weight' => '0', - 'file' => 'modules/block/block.admin.inc', -)) -->values(array( - 'path' => 'admin/build/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";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/build/block', - 'tab_root' => 'admin/build/block', - 'title' => 'Add block', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/block/block.admin.inc', -)) -->values(array( - 'path' => 'admin/build/block/configure', - '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:21:"block_admin_configure";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/build/block/configure', - 'title' => 'Configure block', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/block/block.admin.inc', -)) -->values(array( - 'path' => 'admin/build/block/delete', - '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:16:"block_box_delete";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/build/block/delete', - 'title' => 'Delete block', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/block/block.admin.inc', -)) -->values(array( - 'path' => 'admin/build/block/list', - '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:0:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/build/block', - 'tab_root' => 'admin/build/block', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'file' => 'modules/block/block.admin.inc', -)) -->values(array( - 'path' => 'admin/build/block/list/bluemarine', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_block_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/bluemarine/bluemarine.info";s:4:"name";s:10:"bluemarine";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:10:"Bluemarine";s:11:"description";s:66:"Table-based multi-column theme with a marine and ash color scheme.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/bluemarine/script.js";}s:10:"screenshot";s:32:"themes/bluemarine/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:6:"engine";s:11:"phptemplate";}}', - 'page_callback' => 'block_admin_display', - 'page_arguments' => 'a:1:{i:0;s:10:"bluemarine";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/block/list', - 'tab_root' => 'admin/build/block', - 'title' => 'Bluemarine', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/block/block.admin.inc', -)) -->values(array( - 'path' => 'admin/build/block/list/chameleon', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_block_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:31:"themes/chameleon/chameleon.info";s:4:"name";s:9:"chameleon";s:4:"type";s:5:"theme";s:5:"owner";s:32:"themes/chameleon/chameleon.theme";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:12:{s:4:"name";s:9:"Chameleon";s:11:"description";s:42:"Minimalist tabled theme with light colors.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:8:"features";a:4:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"scripts";a:1:{s:9:"script.js";s:26:"themes/chameleon/script.js";}s:10:"screenshot";s:31:"themes/chameleon/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}}}', - 'page_callback' => 'block_admin_display', - 'page_arguments' => 'a:1:{i:0;s:9:"chameleon";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/block/list', - 'tab_root' => 'admin/build/block', - 'title' => 'Chameleon', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/block/block.admin.inc', -)) -->values(array( - 'path' => 'admin/build/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:"1";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:24:"themes/garland/script.js";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}', - 'page_callback' => 'block_admin_display', - 'page_arguments' => 'a:1:{i:0;s:7:"garland";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/block/list', - 'tab_root' => 'admin/build/block', - 'title' => 'Garland', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'file' => 'modules/block/block.admin.inc', -)) -->values(array( - 'path' => 'admin/build/block/list/js', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}', - 'page_callback' => 'block_admin_display_js', - 'page_arguments' => 'a:0:{}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => '', - 'tab_root' => 'admin/build/block/list/js', - 'title' => 'JavaScript List Form', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/block/block.admin.inc', -)) -->values(array( - 'path' => 'admin/build/block/list/marvin', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_block_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:35:"themes/chameleon/marvin/marvin.info";s:4:"name";s:6:"marvin";s:4:"type";s:5:"theme";s:5:"owner";s:0:"";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:6:"Marvin";s:11:"description";s:31:"Boxy tabled theme in all grays.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/chameleon/marvin/script.js";}s:10:"screenshot";s:38:"themes/chameleon/marvin/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:10:"base_theme";s:9:"chameleon";}}', - 'page_callback' => 'block_admin_display', - 'page_arguments' => 'a:1:{i:0;s:6:"marvin";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/block/list', - 'tab_root' => 'admin/build/block', - 'title' => 'Marvin', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/block/block.admin.inc', -)) -->values(array( - 'path' => 'admin/build/block/list/minnelli', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_block_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":13:{s:8:"filename";s:37:"themes/garland/minnelli/minnelli.info";s:4:"name";s:8:"minnelli";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:14:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:10:"base theme";s:7:"garland";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/garland/minnelli/script.js";}s:10:"screenshot";s:38:"themes/garland/minnelli/screenshot.png";s:3:"php";s:5:"4.3.5";s:6:"engine";s:11:"phptemplate";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:6:"engine";s:11:"phptemplate";s:10:"base_theme";s:7:"garland";}}', - 'page_callback' => 'block_admin_display', - 'page_arguments' => 'a:1:{i:0;s:8:"minnelli";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/block/list', - 'tab_root' => 'admin/build/block', - 'title' => 'Minnelli', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/block/block.admin.inc', -)) -->values(array( - 'path' => 'admin/build/block/list/pushbutton', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_block_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/pushbutton/pushbutton.info";s:4:"name";s:10:"pushbutton";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/pushbutton/script.js";}s:10:"screenshot";s:32:"themes/pushbutton/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:6:"engine";s:11:"phptemplate";}}', - 'page_callback' => 'block_admin_display', - 'page_arguments' => 'a:1:{i:0;s:10:"pushbutton";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/block/list', - 'tab_root' => 'admin/build/block', - 'title' => 'Pushbutton', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/block/block.admin.inc', -)) -->values(array( - 'path' => 'admin/build/modules', - '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:14:"system_modules";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/build/modules', - 'title' => 'Modules', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Enable or disable add-on modules for your site.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/modules/list', - '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:14:"system_modules";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/build/modules', - 'tab_root' => 'admin/build/modules', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/modules/list/confirm', - '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:14:"system_modules";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => '', - 'tab_root' => 'admin/build/modules/list/confirm', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/modules/uninstall', - '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_modules_uninstall";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/build/modules', - 'tab_root' => 'admin/build/modules', - 'title' => 'Uninstall', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/modules/uninstall/confirm', - '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_modules_uninstall";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => '', - 'tab_root' => 'admin/build/modules/uninstall/confirm', - 'title' => 'Uninstall', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/themes', - '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:"system_themes_form";i:1;N;}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/build/themes', - 'title' => 'Themes', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Change which theme your site uses or allows users to set.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/themes/select', - '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:"system_themes_form";i:1;N;}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/build/themes', - 'tab_root' => 'admin/build/themes', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => 'Select the default theme.', - 'position' => '', - 'weight' => '-1', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/themes/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:21:"system_theme_settings";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/build/themes', - 'tab_root' => 'admin/build/themes', - 'title' => 'Configure', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/themes/settings/bluemarine', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_system_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/bluemarine/bluemarine.info";s:4:"name";s:10:"bluemarine";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:10:"Bluemarine";s:11:"description";s:66:"Table-based multi-column theme with a marine and ash color scheme.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/bluemarine/script.js";}s:10:"screenshot";s:32:"themes/bluemarine/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:6:"engine";s:11:"phptemplate";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"bluemarine";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/themes/settings', - 'tab_root' => 'admin/build/themes', - 'title' => 'Bluemarine', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/themes/settings/chameleon', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_system_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:31:"themes/chameleon/chameleon.info";s:4:"name";s:9:"chameleon";s:4:"type";s:5:"theme";s:5:"owner";s:32:"themes/chameleon/chameleon.theme";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:12:{s:4:"name";s:9:"Chameleon";s:11:"description";s:42:"Minimalist tabled theme with light colors.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:8:"features";a:4:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"scripts";a:1:{s:9:"script.js";s:26:"themes/chameleon/script.js";}s:10:"screenshot";s:31:"themes/chameleon/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:9:"chameleon";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/themes/settings', - 'tab_root' => 'admin/build/themes', - 'title' => 'Chameleon', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/themes/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:"1";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:24:"themes/garland/script.js";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:7:"garland";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/themes/settings', - 'tab_root' => 'admin/build/themes', - 'title' => 'Garland', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/themes/settings/global', - '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:21:"system_theme_settings";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/themes/settings', - 'tab_root' => 'admin/build/themes', - 'title' => 'Global settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '-1', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/themes/settings/marvin', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_system_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:35:"themes/chameleon/marvin/marvin.info";s:4:"name";s:6:"marvin";s:4:"type";s:5:"theme";s:5:"owner";s:0:"";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:6:"Marvin";s:11:"description";s:31:"Boxy tabled theme in all grays.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/chameleon/marvin/script.js";}s:10:"screenshot";s:38:"themes/chameleon/marvin/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:10:"base_theme";s:9:"chameleon";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:6:"marvin";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/themes/settings', - 'tab_root' => 'admin/build/themes', - 'title' => 'Marvin', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/themes/settings/minnelli', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_system_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":13:{s:8:"filename";s:37:"themes/garland/minnelli/minnelli.info";s:4:"name";s:8:"minnelli";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:14:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:10:"base theme";s:7:"garland";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/garland/minnelli/script.js";}s:10:"screenshot";s:38:"themes/garland/minnelli/screenshot.png";s:3:"php";s:5:"4.3.5";s:6:"engine";s:11:"phptemplate";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:6:"engine";s:11:"phptemplate";s:10:"base_theme";s:7:"garland";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:8:"minnelli";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/themes/settings', - 'tab_root' => 'admin/build/themes', - 'title' => 'Minnelli', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/themes/settings/pushbutton', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_system_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/pushbutton/pushbutton.info";s:4:"name";s:10:"pushbutton";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/pushbutton/script.js";}s:10:"screenshot";s:32:"themes/pushbutton/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:6:"engine";s:11:"phptemplate";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"pushbutton";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/themes/settings', - 'tab_root' => 'admin/build/themes', - 'title' => 'Pushbutton', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/by-module', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'system_admin_by_module', - 'page_arguments' => 'a:0:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => 'admin', - 'tab_root' => 'admin', - 'title' => 'By module', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '2', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/by-task', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'system_main_admin_page', - 'page_arguments' => 'a:0:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => 'admin', - 'tab_root' => 'admin', - 'title' => 'By task', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->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:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'admin/compact', - 'title' => 'Compact mode', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/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:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'admin/content', - 'title' => 'Content management', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => "Manage your site's content.", - 'position' => 'left', - 'weight' => '-10', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/content/node', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/content/node', - 'title' => 'Content', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => "View, edit, and delete your site's content.", - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/node.admin.inc', -)) -->values(array( - 'path' => 'admin/content/node-settings', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:14:"node_configure";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/content/node-settings', - 'title' => 'Post settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/node.admin.inc', -)) -->values(array( - 'path' => 'admin/content/node-settings/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";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/content/node-settings/rebuild', - 'title' => 'Rebuild permissions', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/node.admin.inc', -)) -->values(array( - 'path' => 'admin/content/node-type/page', - '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:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:4:\"page\";s:4:\"name\";s:4:\"Page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"A page, similar in form to a story, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a page entry does not allow visitor comments and is not featured on the site's initial home page.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";}}", - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/content/node-type/page', - 'title' => 'Page', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/content_types.inc', -)) -->values(array( - 'path' => 'admin/content/node-type/page/delete', - '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:2:{i:0;s:24:\"node_type_delete_confirm\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:4:\"page\";s:4:\"name\";s:4:\"Page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"A page, similar in form to a story, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a page entry does not allow visitor comments and is not featured on the site's initial home page.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";}}", - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => '', - 'tab_root' => 'admin/content/node-type/page/delete', - 'title' => 'Delete', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/content_types.inc', -)) -->values(array( - 'path' => 'admin/content/node-type/page/edit', - '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:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:4:\"page\";s:4:\"name\";s:4:\"Page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"A page, similar in form to a story, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a page entry does not allow visitor comments and is not featured on the site's initial home page.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";}}", - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/content/node-type/page', - 'tab_root' => 'admin/content/node-type/page', - 'title' => 'Edit', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/content_types.inc', -)) -->values(array( - 'path' => 'admin/content/node-type/story', - '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:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:5:\"story\";s:4:\"name\";s:5:\"Story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A story, similar in form to a page, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a story entry. By default, a story entry is automatically featured on the site's initial home page, and provides the ability to post comments.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:5:\"story\";}}", - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/content/node-type/story', - 'title' => 'Story', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/content_types.inc', -)) -->values(array( - 'path' => 'admin/content/node-type/story/delete', - '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:2:{i:0;s:24:\"node_type_delete_confirm\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:5:\"story\";s:4:\"name\";s:5:\"Story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A story, similar in form to a page, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a story entry. By default, a story entry is automatically featured on the site's initial home page, and provides the ability to post comments.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:5:\"story\";}}", - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => '', - 'tab_root' => 'admin/content/node-type/story/delete', - 'title' => 'Delete', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/content_types.inc', -)) -->values(array( - 'path' => 'admin/content/node-type/story/edit', - '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:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:5:\"story\";s:4:\"name\";s:5:\"Story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A story, similar in form to a page, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a story entry. By default, a story entry is automatically featured on the site's initial home page, and provides the ability to post comments.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:5:\"story\";}}", - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/content/node-type/story', - 'tab_root' => 'admin/content/node-type/story', - 'title' => 'Edit', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/content_types.inc', -)) -->values(array( - 'path' => 'admin/content/node/overview', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/content/node', - 'tab_root' => 'admin/content/node', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'file' => 'modules/node/node.admin.inc', -)) -->values(array( - 'path' => 'admin/content/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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/content/rss-publishing', - 'title' => 'RSS publishing', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Configure the number of items per feed and whether feeds should be titles/teasers/full-text.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/content/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:{}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/content/types', - 'title' => 'Content types', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Manage posts by content type, including default status, front page promotion, etc.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/content_types.inc', -)) -->values(array( - 'path' => 'admin/content/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";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/content/types', - 'tab_root' => 'admin/content/types', - 'title' => 'Add content type', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/content_types.inc', -)) -->values(array( - 'path' => 'admin/content/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:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/content/types', - 'tab_root' => 'admin/content/types', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'file' => 'modules/node/content_types.inc', -)) -->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:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'admin/reports', - 'title' => 'Reports', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'View reports from system logs and other status information.', - 'position' => 'left', - 'weight' => '5', - 'file' => 'modules/system/system.admin.inc', -)) -->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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/access-denied', - 'title' => "Top 'access denied' errors", - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => "View 'access denied' errors (403s).", - 'position' => '', - 'weight' => '0', - 'file' => 'modules/dblog/dblog.admin.inc', -)) -->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:{}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/dblog', - 'title' => 'Recent log entries', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'View events that have recently been logged.', - 'position' => '', - 'weight' => '-1', - 'file' => 'modules/dblog/dblog.admin.inc', -)) -->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;}', - 'fit' => '14', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/event/%', - 'title' => 'Details', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/dblog/dblog.admin.inc', -)) -->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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/page-not-found', - 'title' => "Top 'page not found' errors", - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => "View 'page not found' errors (404s).", - 'position' => '', - 'weight' => '0', - 'file' => 'modules/dblog/dblog.admin.inc', -)) -->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:{}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/status', - 'title' => 'Status report', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => "Get a status report about your site's operation and any detected problems.", - 'position' => '', - 'weight' => '10', - 'file' => 'modules/system/system.admin.inc', -)) -->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:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/status/php', - 'title' => 'PHP', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->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:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/status/run-cron', - 'title' => 'Run cron', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/reports/status/sql', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'system_sql', - 'page_arguments' => 'a:0:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/status/sql', - 'title' => 'SQL', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->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:{}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/updates', - 'title' => 'Available updates', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Get a status report about available updates for your installed modules and themes.', - 'position' => '', - 'weight' => '10', - 'file' => 'modules/update/update.report.inc', -)) -->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:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/updates/check', - 'title' => 'Manual update check', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/update/update.fetch.inc', -)) -->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:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/reports/updates', - 'tab_root' => 'admin/reports/updates', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/update/update.report.inc', -)) -->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";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/reports/updates', - 'tab_root' => 'admin/reports/updates', - 'title' => 'Settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/update/update.settings.inc', -)) -->values(array( - 'path' => 'admin/settings', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'system_settings_overview', - 'page_arguments' => 'a:0:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'admin/settings', - 'title' => 'Site configuration', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Adjust basic site configuration options.', - 'position' => 'right', - 'weight' => '-5', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/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:{}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/actions', - 'title' => 'Actions', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Manage the actions defined for your site.', - 'position' => '', - 'weight' => '0', - 'file' => '', -)) -->values(array( - 'path' => 'admin/settings/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";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/actions/configure', - 'title' => 'Configure an advanced action', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => '', -)) -->values(array( - 'path' => 'admin/settings/actions/delete/%', - 'load_functions' => 'a:1:{i:4;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:4;}', - 'fit' => '30', - 'number_parts' => '5', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/actions/delete/%', - 'title' => 'Delete action', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => 'Delete an action.', - 'position' => '', - 'weight' => '0', - 'file' => '', -)) -->values(array( - 'path' => 'admin/settings/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:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/settings/actions', - 'tab_root' => 'admin/settings/actions', - 'title' => 'Manage actions', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => 'Manage the actions defined for your site.', - 'position' => '', - 'weight' => '-2', - 'file' => '', -)) -->values(array( - 'path' => 'admin/settings/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:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/actions/orphan', - 'title' => 'Remove orphans', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => '', -)) -->values(array( - 'path' => 'admin/settings/admin', - '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_admin_theme_settings";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/admin', - 'title' => 'Administration theme', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => 'system_admin_theme_settings', - 'description' => 'Settings for how your administrative pages should look.', - 'position' => 'left', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/clean-urls', - 'title' => 'Clean URLs', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Enable or disable clean URLs for your site.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/clean-urls/check', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'drupal_json', - 'page_arguments' => 'a:1:{i:0;a:1:{s:6:"status";b:1;}}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/clean-urls/check', - 'title' => 'Clean URL check', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => '', -)) -->values(array( - 'path' => 'admin/settings/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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/date-time', - 'title' => 'Date and time', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => "Settings for how Drupal displays date and time, as well as the system's default timezone.", - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/date-time/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:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/date-time/lookup', - 'title' => 'Date and time lookup', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/error-reporting', - '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:31:"system_error_reporting_settings";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/error-reporting', - 'title' => 'Error reporting', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/file-system', - 'title' => 'File system', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Tell Drupal where to store uploaded files and how they are accessed.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/filters', - '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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/filters', - 'title' => 'Input formats', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/filter/filter.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/filters/%', - 'load_functions' => 'a:1:{i:3;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:3;}', - 'fit' => '14', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/filters/%', - 'title' => '', - 'title_callback' => 'filter_admin_format_title', - 'title_arguments' => 'a:1:{i:0;i:3;}', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/filter/filter.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/filters/%/configure', - 'load_functions' => 'a:1:{i:3;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_configure_page', - 'page_arguments' => 'a:1:{i:0;i:3;}', - 'fit' => '29', - 'number_parts' => '5', - 'tab_parent' => 'admin/settings/filters/%', - 'tab_root' => 'admin/settings/filters/%', - 'title' => 'Configure', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '1', - 'file' => 'modules/filter/filter.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/filters/%/edit', - 'load_functions' => 'a:1:{i:3;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:3;}', - 'fit' => '29', - 'number_parts' => '5', - 'tab_parent' => 'admin/settings/filters/%', - 'tab_root' => 'admin/settings/filters/%', - 'title' => 'Edit', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/filter/filter.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/filters/%/order', - 'load_functions' => 'a:1:{i:3;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_order_page', - 'page_arguments' => 'a:1:{i:0;i:3;}', - 'fit' => '29', - 'number_parts' => '5', - 'tab_parent' => 'admin/settings/filters/%', - 'tab_root' => 'admin/settings/filters/%', - 'title' => 'Rearrange', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '2', - 'file' => 'modules/filter/filter.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/filters/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:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/settings/filters', - 'tab_root' => 'admin/settings/filters', - 'title' => 'Add input format', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '1', - 'file' => 'modules/filter/filter.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/filters/delete', - '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:19:"filter_admin_delete";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/filters/delete', - 'title' => 'Delete input format', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/filter/filter.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/filters/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";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/settings/filters', - 'tab_root' => 'admin/settings/filters', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/filter/filter.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/image-toolkit', - 'title' => 'Image toolkit', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Choose which image toolkit to use if you have installed optional toolkits.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/logging', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'system_logging_overview', - 'page_arguments' => 'a:0:{}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/logging', - 'title' => 'Logging and alerts', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => "Settings for logging and alerts modules. Various modules can route Drupal's system events to different destination, such as syslog, database, email, ...etc.", - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/logging/dblog', - '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:"dblog_admin_settings";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/logging/dblog', - 'title' => 'Database logging', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Settings for logging to the Drupal database logs. This is the most common method for small to medium sites on shared hosting. The logs are viewable from the admin pages.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/dblog/dblog.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/performance', - 'title' => 'Performance', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/site-information', - 'title' => 'Site information', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/site-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:32:"system_site_maintenance_settings";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/site-maintenance', - 'title' => 'Site maintenance', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Take the site off-line for maintenance or bring it back online.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/user', - '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:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'admin/user', - 'title' => 'User management', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => "Manage your site's users, groups and access to site features.", - 'position' => 'left', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/user/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:15:"user_admin_perm";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/user/permissions', - 'title' => 'Permissions', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Determine access to features by selecting permissions for roles.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'admin/user/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:19:"user_admin_new_role";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/user/roles', - 'title' => 'Roles', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'List, edit, or add user roles.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'admin/user/roles/edit', - '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:15:"user_admin_role";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/user/roles/edit', - 'title' => 'Edit role', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'admin/user/rules', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}', - 'page_callback' => 'user_admin_access', - 'page_arguments' => 'a:0:{}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/user/rules', - 'title' => 'Access rules', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'List and create rules to disallow usernames, e-mail addresses, and IP addresses.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'admin/user/rules/add', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}', - 'page_callback' => 'user_admin_access_add', - 'page_arguments' => 'a:0:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/user/rules', - 'tab_root' => 'admin/user/rules', - 'title' => 'Add rule', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'admin/user/rules/check', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}', - 'page_callback' => 'user_admin_access_check', - 'page_arguments' => 'a:0:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/user/rules', - 'tab_root' => 'admin/user/rules', - 'title' => 'Check rules', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'admin/user/rules/delete', - '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:32:"user_admin_access_delete_confirm";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/user/rules/delete', - 'title' => 'Delete rule', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'admin/user/rules/edit', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}', - 'page_callback' => 'user_admin_access_edit', - 'page_arguments' => 'a:0:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/user/rules/edit', - 'title' => 'Edit rule', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'admin/user/rules/list', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}', - 'page_callback' => 'user_admin_access', - 'page_arguments' => 'a:0:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/user/rules', - 'tab_root' => 'admin/user/rules', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'admin/user/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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/user/settings', - 'title' => 'User settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Configure default behavior of users, including registration requirements, e-mails, and user pictures.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'admin/user/user', - '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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/user/user', - 'title' => 'Users', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'List, add, and edit users.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'admin/user/user/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";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/user/user', - 'tab_root' => 'admin/user/user', - 'title' => 'Add user', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'admin/user/user/list', - '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";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/user/user', - 'tab_root' => 'admin/user/user', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'batch', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'system_batch_page', - 'page_arguments' => 'a:0:{}', - 'fit' => '1', - 'number_parts' => '1', - 'tab_parent' => '', - 'tab_root' => 'batch', - 'title' => '', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'filter/tips', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'filter_tips_long', - 'page_arguments' => 'a:0:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'filter/tips', - 'title' => 'Compose tips', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '20', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/filter/filter.pages.inc', -)) -->values(array( - 'path' => 'logout', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_is_logged_in', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'user_logout', - 'page_arguments' => 'a:0:{}', - 'fit' => '1', - 'number_parts' => '1', - 'tab_parent' => '', - 'tab_root' => 'logout', - 'title' => 'Log out', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '10', - 'file' => 'modules/user/user.pages.inc', -)) -->values(array( - '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:{}', - 'fit' => '1', - 'number_parts' => '1', - 'tab_parent' => '', - 'tab_root' => 'node', - 'title' => 'Content', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => '', -)) -->values(array( - '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;}', - 'fit' => '2', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'node/%', - 'title' => '', - 'title_callback' => 'node_page_title', - 'title_arguments' => 'a:1:{i:0;i:1;}', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - '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;}', - 'fit' => '5', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'node/%/delete', - 'title' => 'Delete', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '1', - 'file' => 'modules/node/node.pages.inc', -)) -->values(array( - '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;}', - 'fit' => '5', - 'number_parts' => '3', - 'tab_parent' => 'node/%', - 'tab_root' => 'node/%', - 'title' => 'Edit', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '1', - 'file' => 'modules/node/node.pages.inc', -)) -->values(array( - '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;}', - 'fit' => '5', - 'number_parts' => '3', - 'tab_parent' => 'node/%', - 'tab_root' => 'node/%', - 'title' => 'Revisions', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '2', - 'file' => 'modules/node/node.pages.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;}', - '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;}', - 'fit' => '21', - 'number_parts' => '5', - 'tab_parent' => '', - 'tab_root' => 'node/%/revisions/%/delete', - 'title' => 'Delete earlier revision', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/node.pages.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;}', - '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;}', - 'fit' => '21', - 'number_parts' => '5', - 'tab_parent' => '', - 'tab_root' => 'node/%/revisions/%/revert', - 'title' => 'Revert to earlier revision', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/node.pages.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;}', - 'to_arg_functions' => '', - 'access_callback' => '_node_revision_access', - 'access_arguments' => 'a:1:{i:0;i:1;}', - 'page_callback' => 'node_show', - 'page_arguments' => 'a:3:{i:0;i:1;i:1;N;i:2;b:1;}', - 'fit' => '21', - 'number_parts' => '5', - 'tab_parent' => '', - 'tab_root' => 'node/%/revisions/%/view', - 'title' => 'Revisions', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => '', -)) -->values(array( - '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;}', - 'fit' => '5', - 'number_parts' => '3', - 'tab_parent' => 'node/%', - 'tab_root' => 'node/%', - 'title' => 'View', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'file' => '', -)) -->values(array( - '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:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'node/add', - 'title' => 'Create content', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '1', - 'file' => 'modules/node/node.pages.inc', -)) -->values(array( - '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;i:2;}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'node/add/page', - 'title' => 'Page', - 'title_callback' => 'check_plain', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => "A page, similar in form to a story, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a page entry does not allow visitor comments and is not featured on the site's initial home page.", - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/node.pages.inc', -)) -->values(array( - 'path' => 'node/add/story', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'node_access', - 'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:5:"story";}', - 'page_callback' => 'node_add', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'node/add/story', - 'title' => 'Story', - 'title_callback' => 'check_plain', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => "A story, similar in form to a page, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a story entry. By default, a story entry is automatically featured on the site's initial home page, and provides the ability to post comments.", - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/node.pages.inc', -)) -->values(array( - '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:0:{}', - 'fit' => '1', - 'number_parts' => '1', - 'tab_parent' => '', - 'tab_root' => 'rss.xml', - 'title' => 'RSS feed', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => '', -)) -->values(array( - 'path' => 'system/files', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'file_download', - 'page_arguments' => 'a:0:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'system/files', - 'title' => 'File download', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => '', -)) -->values(array( - 'path' => 'user', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'user_page', - 'page_arguments' => 'a:0:{}', - 'fit' => '1', - 'number_parts' => '1', - 'tab_parent' => '', - 'tab_root' => 'user', - 'title' => 'User account', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.pages.inc', -)) -->values(array( - 'path' => 'user/%', - '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' => 'user_view_access', - 'access_arguments' => 'a:1:{i:0;i:1;}', - 'page_callback' => 'user_view', - 'page_arguments' => 'a:1:{i:0;i:1;}', - 'fit' => '2', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'user/%', - 'title' => 'My account', - 'title_callback' => 'user_page_title', - 'title_arguments' => 'a:1:{i:0;i:1;}', - 'type' => '6', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.pages.inc', -)) -->values(array( - 'path' => 'user/%/delete', - 'load_functions' => 'a:1:{i:1;s:9:"user_load";}', - '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:2:{i:0;s:19:"user_confirm_delete";i:1;i:1;}', - 'fit' => '5', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'user/%/delete', - 'title' => 'Delete', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.pages.inc', -)) -->values(array( - 'path' => 'user/%/edit', - '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' => 'user_edit', - 'page_arguments' => 'a:1:{i:0;i:1;}', - 'fit' => '5', - 'number_parts' => '3', - 'tab_parent' => 'user/%', - 'tab_root' => 'user/%', - 'title' => 'Edit', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - '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' => 'user_edit', - 'page_arguments' => 'a:1:{i:0;i:1;}', - 'fit' => '11', - 'number_parts' => '4', - 'tab_parent' => 'user/%/edit', - 'tab_root' => 'user/%', - 'title' => 'Account', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.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_arguments' => 'a:1:{i:0;i:1;}', - 'fit' => '5', - 'number_parts' => '3', - 'tab_parent' => 'user/%', - 'tab_root' => 'user/%', - 'title' => 'View', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'file' => 'modules/user/user.pages.inc', -)) -->values(array( - '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:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'user/autocomplete', - 'title' => 'User autocomplete', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.pages.inc', -)) -->values(array( - '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:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => 'user', - 'tab_root' => 'user', - 'title' => 'Log in', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.pages.inc', -)) -->values(array( - 'path' => 'user/password', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_is_anonymous', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:9:"user_pass";}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => 'user', - 'tab_root' => 'user', - 'title' => 'Request new password', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.pages.inc', -)) -->values(array( - '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:13:"user_register";}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => 'user', - 'tab_root' => 'user', - 'title' => 'Create new account', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.pages.inc', -)) -->values(array( - '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;}', - 'fit' => '24', - 'number_parts' => '5', - 'tab_parent' => '', - 'tab_root' => 'user/reset/%/%/%', - 'title' => 'Reset password', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.pages.inc', -)) -->execute(); - -db_create_table('node', array( - 'fields' => array( - 'nid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'vid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'type' => array( - 'type' => 'varchar', - 'length' => 32, - 'not null' => TRUE, - 'default' => '', - ), - 'language' => array( - 'type' => 'varchar', - 'length' => 12, - 'not null' => TRUE, - 'default' => '', - ), - 'title' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'uid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'status' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 1, - ), - 'created' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'changed' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'comment' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'promote' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'moderate' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'sticky' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'tnid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'translate' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'node_changed' => array( - 'changed', - ), - 'node_created' => array( - 'created', - ), - 'node_moderate' => array( - 'moderate', - ), - 'node_promote_status' => array( - 'promote', - 'status', - ), - 'node_status_type' => array( - 'status', - 'type', - 'nid', - ), - 'node_title_type' => array( - 'title', - array( - 'type', - 4, - ), - ), - 'node_type' => array( - array( - 'type', - 4, - ), - ), - 'uid' => array( - 'uid', - ), - 'tnid' => array( - 'tnid', - ), - 'translate' => array( - 'translate', - ), - ), - 'unique keys' => array( - 'vid' => array( - 'vid', - ), - ), - 'primary key' => array( - 'nid', - ), - 'module' => 'node', - 'name' => 'node', -)); - -db_create_table('node_access', array( - 'fields' => array( - 'nid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'gid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'realm' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'grant_view' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'grant_update' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'grant_delete' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - ), - 'primary key' => array( - 'nid', - 'gid', - 'realm', - ), - 'module' => 'node', - 'name' => 'node_access', -)); -db_insert('node_access')->fields(array( - 'nid', - 'gid', - 'realm', - 'grant_view', - 'grant_update', - 'grant_delete', -)) -->values(array( - 'nid' => '0', - 'gid' => '0', - 'realm' => 'all', - 'grant_view' => '1', - 'grant_update' => '0', - 'grant_delete' => '0', -)) -->execute(); - -db_create_table('node_counter', array( - 'fields' => array( - 'nid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'totalcount' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - 'size' => 'big', - ), - 'daycount' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - 'size' => 'medium', - ), - 'timestamp' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'primary key' => array( - 'nid', - ), - 'module' => 'node', - 'name' => 'node_counter', -)); - -db_create_table('node_revisions', array( - 'fields' => array( - 'nid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'vid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'uid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'title' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'body' => array( - 'type' => 'text', - 'not null' => TRUE, - 'size' => 'big', - ), - 'teaser' => array( - 'type' => 'text', - 'not null' => TRUE, - 'size' => 'big', - ), - 'log' => array( - 'type' => 'text', - 'not null' => TRUE, - 'size' => 'big', - ), - 'timestamp' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'format' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'nid' => array( - 'nid', - ), - 'uid' => array( - 'uid', - ), - ), - 'primary key' => array( - 'vid', - ), - 'module' => 'node', - 'name' => 'node_revisions', -)); - -db_create_table('node_type', array( - 'fields' => array( - 'type' => array( - 'type' => 'varchar', - 'length' => 32, - 'not null' => TRUE, - ), - 'name' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'module' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - ), - 'description' => array( - 'type' => 'text', - 'not null' => TRUE, - 'size' => 'medium', - ), - 'help' => array( - 'type' => 'text', - 'not null' => TRUE, - 'size' => 'medium', - ), - 'has_title' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'size' => 'tiny', - ), - 'title_label' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'has_body' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'size' => 'tiny', - ), - 'body_label' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'min_word_count' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'size' => 'small', - ), - 'custom' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'modified' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'locked' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'orig_type' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - ), - 'primary key' => array( - 'type', - ), - 'module' => 'node', - 'name' => 'node_type', -)); -db_insert('node_type')->fields(array( - 'type', - 'name', - 'module', - 'description', - 'help', - 'has_title', - 'title_label', - 'has_body', - 'body_label', - 'min_word_count', - 'custom', - 'modified', - 'locked', - 'orig_type', -)) -->values(array( - 'type' => 'page', - 'name' => 'Page', - 'module' => 'node', - 'description' => "A page, similar in form to a story, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a page entry does not allow visitor comments and is not featured on the site's initial home page.", - 'help' => '', - 'has_title' => '1', - 'title_label' => 'Title', - 'has_body' => '1', - 'body_label' => 'Body', - 'min_word_count' => '0', - 'custom' => '1', - 'modified' => '1', - 'locked' => '0', - 'orig_type' => 'page', -)) -->values(array( - 'type' => 'story', - 'name' => 'Story', - 'module' => 'node', - 'description' => "A story, similar in form to a page, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a story entry. By default, a story entry is automatically featured on the site's initial home page, and provides the ability to post comments.", - 'help' => '', - 'has_title' => '1', - 'title_label' => 'Title', - 'has_body' => '1', - 'body_label' => 'Body', - 'min_word_count' => '0', - 'custom' => '1', - 'modified' => '1', - 'locked' => '0', - 'orig_type' => 'story', -)) -->execute(); - -db_create_table('permission', array( - 'fields' => array( - 'pid' => array( - 'type' => 'serial', - 'not null' => TRUE, - ), - 'rid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'perm' => array( - 'type' => 'text', - 'not null' => FALSE, - 'size' => 'big', - ), - 'tid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'primary key' => array( - 'pid', - ), - 'indexes' => array( - 'rid' => array( - 'rid', - ), - ), - 'module' => 'user', - 'name' => 'permission', -)); -db_insert('permission')->fields(array( - 'pid', - 'rid', - 'perm', - 'tid', -)) -->values(array( - 'pid' => '1', - 'rid' => '1', - 'perm' => 'access content', - 'tid' => '0', -)) -->values(array( - 'pid' => '2', - 'rid' => '2', - 'perm' => 'access comments, access content, post comments, post comments without approval', - 'tid' => '0', -)) -->execute(); - -db_create_table('role', array( - 'fields' => array( - 'rid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'name' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - ), - ), - 'unique keys' => array( - 'name' => array( - 'name', - ), - ), - 'primary key' => array( - 'rid', - ), - 'module' => 'user', - 'name' => 'role', -)); -db_insert('role')->fields(array( - 'rid', - 'name', -)) -->values(array( - 'rid' => '1', - 'name' => 'anonymous user', -)) -->values(array( - 'rid' => '2', - 'name' => 'authenticated user', -)) -->execute(); - -db_create_table('semaphore', array( - 'fields' => array( - 'name' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'value' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'expire' => array( - 'type' => 'float', - 'size' => 'big', - 'not null' => TRUE, - ), - ), - 'indexes' => array( - 'expire' => array( - 'expire', - ), - ), - 'primary key' => array( - 'name', - ), - 'module' => 'system', - 'name' => 'semaphore', -)); - -db_create_table('sessions', array( - 'fields' => array( - 'uid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'sid' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - ), - 'hostname' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - 'timestamp' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'cache' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'session' => array( - 'type' => 'text', - 'not null' => FALSE, - 'size' => 'big', - ), - ), - 'primary key' => array( - 'sid', - ), - 'indexes' => array( - 'timestamp' => array( - 'timestamp', - ), - 'uid' => array( - 'uid', - ), - ), - 'module' => 'system', - 'name' => 'sessions', -)); - -db_create_table('system', array( - 'fields' => array( - 'filename' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'name' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'type' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'owner' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'status' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'throttle' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'bootstrap' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'schema_version' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => -1, - 'size' => 'small', - ), - 'weight' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'info' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - ), - 'primary key' => array( - 'filename', - ), - 'indexes' => array( - 'modules' => array( - array( - 'type', - 12, - ), - 'status', - 'weight', - 'filename', - ), - 'bootstrap' => array( - array( - 'type', - 12, - ), - 'status', - 'bootstrap', - 'weight', - 'filename', - ), - 'type_name' => array( - array( - 'type', - 12, - ), - 'name', - ), - ), - 'module' => 'system', - 'name' => 'system', -)); -db_insert('system')->fields(array( - 'filename', - 'name', - 'type', - 'owner', - 'status', - 'throttle', - 'bootstrap', - 'schema_version', - 'weight', - 'info', -)) -->values(array( - 'filename' => 'modules/aggregator/aggregator.module', - 'name' => 'aggregator', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:10:"Aggregator";s:11:"description";s:57:"Aggregates syndicated content (RSS, RDF, and Atom feeds).";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/block/block.module', - 'name' => 'block', - 'type' => 'module', - 'owner' => '', - 'status' => '1', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '0', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:5:"Block";s:11:"description";s:62:"Controls the boxes that are displayed around the main content.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/blog/blog.module', - 'name' => 'blog', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:4:"Blog";s:11:"description";s:69:"Enables keeping easily and regularly updated user web pages or blogs.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/blogapi/blogapi.module', - 'name' => 'blogapi', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:8:"Blog API";s:11:"description";s:79:"Allows users to post content using applications that support XML-RPC blog APIs.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/book/book.module', - 'name' => 'book', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:4:"Book";s:11:"description";s:63:"Allows users to structure site pages in a hierarchy or outline.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/color/color.module', - 'name' => 'color', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:5:"Color";s:11:"description";s:61:"Allows the user to change the color scheme of certain themes.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/comment/comment.module', - 'name' => 'comment', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:7:"Comment";s:11:"description";s:57:"Allows users to comment on and discuss published content.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/contact/contact.module', - 'name' => 'contact', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:7:"Contact";s:11:"description";s:61:"Enables the use of both personal and site-wide contact forms.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/dblog/dblog.module', - 'name' => 'dblog', - 'type' => 'module', - 'owner' => '', - 'status' => '1', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '6000', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:16:"Database logging";s:11:"description";s:47:"Logs and records system events to the database.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/filter/filter.module', - 'name' => 'filter', - 'type' => 'module', - 'owner' => '', - 'status' => '1', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '0', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:6:"Filter";s:11:"description";s:60:"Handles the filtering of content in preparation for display.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/forum/forum.module', - 'name' => 'forum', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:5:"Forum";s:11:"description";s:50:"Enables threaded discussions about general topics.";s:12:"dependencies";a:2:{i:0;s:8:"taxonomy";i:1;s:7:"comment";}s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/help/help.module', - 'name' => 'help', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:4:"Help";s:11:"description";s:35:"Manages the display of online help.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/locale/locale.module', - 'name' => 'locale', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:6:"Locale";s:11:"description";s:119:"Adds language handling functionality and enables the translation of the user interface to languages other than English.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/menu/menu.module', - 'name' => 'menu', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:4:"Menu";s:11:"description";s:60:"Allows administrators to customize the site navigation menu.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/node/node.module', - 'name' => 'node', - 'type' => 'module', - 'owner' => '', - 'status' => '1', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '0', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:4:"Node";s:11:"description";s:66:"Allows content to be submitted to the site and displayed on pages.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/openid/openid.module', - 'name' => 'openid', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:6:"OpenID";s:11:"description";s:48:"Allows users to log into your site using OpenID.";s:7:"version";s:4:"6.17";s:7:"package";s:15:"Core - optional";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/path/path.module', - 'name' => 'path', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:4:"Path";s:11:"description";s:28:"Allows users to rename URLs.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/php/php.module', - 'name' => 'php', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:10:"PHP filter";s:11:"description";s:50:"Allows embedded PHP code/snippets to be evaluated.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/ping/ping.module', - 'name' => 'ping', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:4:"Ping";s:11:"description";s:51:"Alerts other sites when your site has been updated.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/poll/poll.module', - 'name' => 'poll', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:4:"Poll";s:11:"description";s:95:"Allows your site to capture votes on different topics in the form of multiple choice questions.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/profile/profile.module', - 'name' => 'profile', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:7:"Profile";s:11:"description";s:36:"Supports configurable user profiles.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/search/search.module', - 'name' => 'search', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:6:"Search";s:11:"description";s:36:"Enables site-wide keyword searching.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/statistics/statistics.module', - 'name' => 'statistics', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:10:"Statistics";s:11:"description";s:37:"Logs access statistics for your site.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/syslog/syslog.module', - 'name' => 'syslog', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:6:"Syslog";s:11:"description";s:41:"Logs and records system events to syslog.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/system/system.module', - 'name' => 'system', - 'type' => 'module', - 'owner' => '', - 'status' => '1', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '6055', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:6:"System";s:11:"description";s:54:"Handles general site configuration for administrators.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/taxonomy/taxonomy.module', - 'name' => 'taxonomy', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:8:"Taxonomy";s:11:"description";s:38:"Enables the categorization of content.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/throttle/throttle.module', - 'name' => 'throttle', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:8:"Throttle";s:11:"description";s:66:"Handles the auto-throttling mechanism, to control site congestion.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/tracker/tracker.module', - 'name' => 'tracker', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:7:"Tracker";s:11:"description";s:43:"Enables tracking of recent posts for users.";s:12:"dependencies";a:1:{i:0;s:7:"comment";}s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/translation/translation.module', - 'name' => 'translation', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:19:"Content translation";s:11:"description";s:57:"Allows content to be translated into different languages.";s:12:"dependencies";a:1:{i:0;s:6:"locale";}s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/trigger/trigger.module', - 'name' => 'trigger', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:7:"Trigger";s:11:"description";s:90:"Enables actions to be fired on certain system events, such as when new content is created.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/update/update.module', - 'name' => 'update', - 'type' => 'module', - 'owner' => '', - 'status' => '1', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '6000', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:13:"Update status";s:11:"description";s:88:"Checks the status of available updates for Drupal and your installed modules and themes.";s:7:"version";s:4:"6.17";s:7:"package";s:15:"Core - optional";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/upload/upload.module', - 'name' => 'upload', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:6:"Upload";s:11:"description";s:51:"Allows users to upload and attach files to content.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/user/user.module', - 'name' => 'user', - 'type' => 'module', - 'owner' => '', - 'status' => '1', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '0', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:4:"User";s:11:"description";s:47:"Manages the user registration and login system.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'themes/bluemarine/bluemarine.info', - 'name' => 'bluemarine', - 'type' => 'theme', - 'owner' => 'themes/engines/phptemplate/phptemplate.engine', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:13:{s:4:"name";s:10:"Bluemarine";s:11:"description";s:66:"Table-based multi-column theme with a marine and ash color scheme.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/bluemarine/script.js";}s:10:"screenshot";s:32:"themes/bluemarine/screenshot.png";s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'themes/chameleon/chameleon.info', - 'name' => 'chameleon', - 'type' => 'theme', - 'owner' => 'themes/chameleon/chameleon.theme', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:12:{s:4:"name";s:9:"Chameleon";s:11:"description";s:42:"Minimalist tabled theme with light colors.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:8:"features";a:4:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"scripts";a:1:{s:9:"script.js";s:26:"themes/chameleon/script.js";}s:10:"screenshot";s:31:"themes/chameleon/screenshot.png";s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'themes/chameleon/marvin/marvin.info', - 'name' => 'marvin', - 'type' => 'theme', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:13:{s:4:"name";s:6:"Marvin";s:11:"description";s:31:"Boxy tabled theme in all grays.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/chameleon/marvin/script.js";}s:10:"screenshot";s:38:"themes/chameleon/marvin/screenshot.png";s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'themes/garland/garland.info', - 'name' => 'garland', - 'type' => 'theme', - 'owner' => 'themes/engines/phptemplate/phptemplate.engine', - 'status' => '1', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:13:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:24:"themes/garland/script.js";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'themes/garland/minnelli/minnelli.info', - 'name' => 'minnelli', - 'type' => 'theme', - 'owner' => 'themes/engines/phptemplate/phptemplate.engine', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:14:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:10:"base theme";s:7:"garland";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/garland/minnelli/script.js";}s:10:"screenshot";s:38:"themes/garland/minnelli/screenshot.png";s:3:"php";s:5:"4.3.5";s:6:"engine";s:11:"phptemplate";}', -)) -->values(array( - 'filename' => 'themes/pushbutton/pushbutton.info', - 'name' => 'pushbutton', - 'type' => 'theme', - 'owner' => 'themes/engines/phptemplate/phptemplate.engine', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:13:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:4:"6.17";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1275505216";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/pushbutton/script.js";}s:10:"screenshot";s:32:"themes/pushbutton/screenshot.png";s:3:"php";s:5:"4.3.5";}', -)) -->execute(); - -db_create_table('url_alias', array( - 'fields' => array( - 'pid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'src' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - 'dst' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - 'language' => array( - 'type' => 'varchar', - 'length' => 12, - 'not null' => TRUE, - 'default' => '', - ), - ), - 'unique keys' => array( - 'dst_language_pid' => array( - 'dst', - 'language', - 'pid', - ), - ), - 'primary key' => array( - 'pid', - ), - 'indexes' => array( - 'src_language_pid' => array( - 'src', - 'language', - 'pid', - ), - ), - 'module' => 'system', - 'name' => 'url_alias', -)); - -db_create_table('users', array( - 'fields' => array( - 'uid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'name' => array( - 'type' => 'varchar', - 'length' => 60, - 'not null' => TRUE, - 'default' => '', - ), - 'pass' => array( - 'type' => 'varchar', - 'length' => 32, - 'not null' => TRUE, - 'default' => '', - ), - 'mail' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => FALSE, - 'default' => '', - ), - 'mode' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'sort' => array( - 'type' => 'int', - 'not null' => FALSE, - 'default' => 0, - 'size' => 'tiny', - ), - 'threshold' => array( - 'type' => 'int', - 'not null' => FALSE, - 'default' => 0, - 'size' => 'tiny', - ), - 'theme' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'signature' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'signature_format' => array( - 'type' => 'int', - 'size' => 'small', - 'not null' => TRUE, - 'default' => 0, - ), - 'created' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'access' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'login' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'status' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'timezone' => array( - 'type' => 'varchar', - 'length' => 8, - 'not null' => FALSE, - ), - 'language' => array( - 'type' => 'varchar', - 'length' => 12, - 'not null' => TRUE, - 'default' => '', - ), - 'picture' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'init' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => FALSE, - 'default' => '', - ), - 'data' => array( - 'type' => 'text', - 'not null' => FALSE, - 'size' => 'big', - ), - ), - 'indexes' => array( - 'access' => array( - 'access', - ), - 'created' => array( - 'created', - ), - 'mail' => array( - 'mail', - ), - ), - 'unique keys' => array( - 'name' => array( - 'name', - ), - ), - 'primary key' => array( - 'uid', - ), - 'module' => 'user', - 'name' => 'users', -)); -db_insert('users')->fields(array( - 'uid', - 'name', - 'pass', - 'mail', - 'mode', - 'sort', - 'threshold', - 'theme', - 'signature', - 'signature_format', - 'created', - 'access', - 'login', - 'status', - 'timezone', - 'language', - 'picture', - 'init', - 'data', -)) -->values(array( - 'uid' => 1, - 'name' => '', - 'pass' => '', - 'mail' => '', - 'mode' => '0', - 'sort' => '0', - 'threshold' => '0', - 'theme' => '', - 'signature' => '', - 'signature_format' => '0', - 'created' => '0', - 'access' => '0', - 'login' => '0', - 'status' => '0', - 'timezone' => '-21600', - 'language' => '', - 'picture' => '', - 'init' => '', - 'data' => NULL, -)) -->values(array( - 'uid' => 2, - 'name' => 'admin', - 'pass' => '21232f297a57a5a743894a0e4a801fc3', - 'mail' => 'admin@example.com', - 'mode' => '0', - 'sort' => '0', - 'threshold' => '0', - 'theme' => '', - 'signature' => '', - 'signature_format' => '0', - 'created' => '1277671599', - 'access' => '1277671612', - 'login' => '1277671612', - 'status' => '1', - 'timezone' => '-21600', - 'language' => '', - 'picture' => '', - 'init' => 'admin@example.com', - 'data' => 'a:0:{}', -)) -->execute(); -db_query('UPDATE {users} SET uid = uid - 1'); - -db_create_table('users_roles', array( - 'fields' => array( - 'uid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'rid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'primary key' => array( - 'uid', - 'rid', - ), - 'indexes' => array( - 'rid' => array( - 'rid', - ), - ), - 'module' => 'user', - 'name' => 'users_roles', -)); - -db_create_table('variable', array( - 'fields' => array( - 'name' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - 'value' => array( - 'type' => 'text', - 'not null' => TRUE, - 'size' => 'big', - ), - ), - 'primary key' => array( - 'name', - ), - 'module' => 'system', - 'name' => 'variable', -)); -db_insert('variable')->fields(array( - 'name', - 'value', -)) -->values(array( - 'name' => 'clean_url', - 'value' => 's:1:"1";', -)) -->values(array( - 'name' => 'comment_page', - 'value' => 's:21:"COMMENT_NODE_DISABLED";', -)) -->values(array( - 'name' => 'css_js_query_string', - 'value' => 's:20:"D0000000000000000000";', -)) -->values(array( - 'name' => 'date_default_timezone', - 'value' => 's:1:"0";', -)) -->values(array( - 'name' => 'drupal_private_key', - 'value' => 's:64:"3848c2187413fa0ce132f8e222fdb6893b386ed133e8cf602bd3e40dc9dc12db";', -)) -->values(array( - 'name' => 'filter_html_1', - 'value' => 'i:1;', -)) -->values(array( - 'name' => 'install_profile', - 'value' => 's:7:"default";', -)) -->values(array( - 'name' => 'install_task', - 'value' => 's:4:"done";', -)) -->values(array( - 'name' => 'install_time', - 'value' => 'i:1277671612;', -)) -->values(array( - 'name' => 'menu_expanded', - 'value' => 'a:0:{}', -)) -->values(array( - 'name' => 'menu_masks', - 'value' => 'a:13:{i:0;i:31;i:1;i:30;i:2;i:29;i:3;i:24;i:4;i:21;i:5;i:15;i:6;i:14;i:7;i:11;i:8;i:7;i:9;i:5;i:10;i:3;i:11;i:2;i:12;i:1;}', -)) -->values(array( - 'name' => 'node_options_forum', - 'value' => 'a:1:{i:0;s:6:"status";}', -)) -->values(array( - 'name' => 'node_options_page', - 'value' => 'a:1:{i:0;s:6:"status";}', -)) -->values(array( - 'name' => 'site_mail', - 'value' => 's:17:"admin@example.com";', -)) -->values(array( - 'name' => 'site_name', - 'value' => 's:8:"Drupal 6";', -)) -->values(array( - 'name' => 'theme_default', - 'value' => 's:7:"garland";', -)) -->values(array( - 'name' => 'theme_settings', - 'value' => 'a:1:{s:21:"toggle_node_info_page";b:0;}', -)) -->values(array( - 'name' => 'user_email_verification', - 'value' => 'b:1;', -)) -->execute(); - -db_create_table('watchdog', array( - 'fields' => array( - 'wid' => array( - 'type' => 'serial', - 'not null' => TRUE, - ), - 'uid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'type' => array( - 'type' => 'varchar', - 'length' => 16, - 'not null' => TRUE, - 'default' => '', - ), - 'message' => array( - 'type' => 'text', - 'not null' => TRUE, - 'size' => 'big', - ), - 'variables' => array( - 'type' => 'text', - 'not null' => TRUE, - 'size' => 'big', - ), - 'severity' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'link' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'location' => array( - 'type' => 'text', - 'not null' => TRUE, - ), - 'referer' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - 'hostname' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - 'timestamp' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'primary key' => array( - 'wid', - ), - 'indexes' => array( - 'type' => array( - 'type', - ), - ), - 'module' => 'dblog', - 'name' => 'watchdog', -)); - diff --git modules/simpletest/tests/upgrade/drupal-6.comments.database.php modules/simpletest/tests/upgrade/drupal-6.comments.database.php deleted file mode 100644 index 7da2504..0000000 --- modules/simpletest/tests/upgrade/drupal-6.comments.database.php +++ /dev/null @@ -1,40 +0,0 @@ -fields(array( - 'comment' => 2 - )) - ->condition('nid', 1) - ->execute(); - -db_insert('comments')->fields(array( - 'cid', - 'pid', - 'nid', - 'uid', - 'subject', - 'comment', - 'hostname', - 'timestamp', - 'status', - 'format', - 'thread', - 'name', - 'mail', - 'homepage', -)) -->values(array( - 'cid' => 1, - 'pid' => 0, - 'nid' => 1, - 'uid' => 3, - 'subject' => 'Comment title 1', - 'comment' => 'Comment body 1 - Comment body 1 - Comment body 1 - Comment body 1 - Comment body 1 - Comment body 1 - Comment body 1 - Comment body 1', - 'hostname' => '127.0.0.1', - 'timestamp' => 1008617630, - 'status' => 0, - 'format' => 1, - 'thread' => '01/', - 'name' => NULL, - 'mail' => NULL, - 'homepage' => '', -)) -->execute(); diff --git modules/simpletest/tests/upgrade/drupal-6.filled.database.php modules/simpletest/tests/upgrade/drupal-6.filled.database.php deleted file mode 100644 index da7f00e..0000000 --- modules/simpletest/tests/upgrade/drupal-6.filled.database.php +++ /dev/null @@ -1,20384 +0,0 @@ - array( - 'aid' => array( - 'type' => 'serial', - 'not null' => TRUE, - ), - 'mask' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'type' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'status' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - ), - 'primary key' => array( - 'aid', - ), - 'module' => 'user', - 'name' => 'access', -)); - -db_create_table('actions', array( - 'fields' => array( - 'aid' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '0', - ), - 'type' => array( - 'type' => 'varchar', - 'length' => 32, - 'not null' => TRUE, - 'default' => '', - ), - 'callback' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'parameters' => array( - 'type' => 'text', - 'not null' => TRUE, - 'size' => 'big', - ), - 'description' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '0', - ), - ), - 'primary key' => array( - 'aid', - ), - 'module' => 'system', - 'name' => 'actions', -)); -db_insert('actions')->fields(array( - 'aid', - 'type', - 'callback', - 'parameters', - 'description', -)) -->values(array( - 'aid' => 'comment_publish_action', - 'type' => 'comment', - 'callback' => 'comment_publish_action', - 'parameters' => '', - 'description' => 'Publish comment', -)) -->values(array( - 'aid' => 'comment_unpublish_action', - 'type' => 'comment', - 'callback' => 'comment_unpublish_action', - 'parameters' => '', - 'description' => 'Unpublish comment', -)) -->values(array( - 'aid' => 'node_make_sticky_action', - 'type' => 'node', - 'callback' => 'node_make_sticky_action', - 'parameters' => '', - 'description' => 'Make post sticky', -)) -->values(array( - 'aid' => 'node_make_unsticky_action', - 'type' => 'node', - 'callback' => 'node_make_unsticky_action', - 'parameters' => '', - 'description' => 'Make post unsticky', -)) -->values(array( - 'aid' => 'node_promote_action', - 'type' => 'node', - 'callback' => 'node_promote_action', - 'parameters' => '', - 'description' => 'Promote post to front page', -)) -->values(array( - 'aid' => 'node_publish_action', - 'type' => 'node', - 'callback' => 'node_publish_action', - 'parameters' => '', - 'description' => 'Publish post', -)) -->values(array( - 'aid' => 'node_save_action', - 'type' => 'node', - 'callback' => 'node_save_action', - 'parameters' => '', - 'description' => 'Save post', -)) -->values(array( - 'aid' => 'node_unpromote_action', - 'type' => 'node', - 'callback' => 'node_unpromote_action', - 'parameters' => '', - 'description' => 'Remove post from front page', -)) -->values(array( - 'aid' => 'node_unpublish_action', - 'type' => 'node', - 'callback' => 'node_unpublish_action', - 'parameters' => '', - 'description' => 'Unpublish post', -)) -->values(array( - 'aid' => 'user_block_ip_action', - 'type' => 'user', - 'callback' => 'user_block_ip_action', - 'parameters' => '', - 'description' => 'Ban IP address of current user', -)) -->values(array( - 'aid' => 'user_block_user_action', - 'type' => 'user', - 'callback' => 'user_block_user_action', - 'parameters' => '', - 'description' => 'Block current user', -)) -->execute(); - -db_create_table('actions_aid', array( - 'fields' => array( - 'aid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - ), - 'primary key' => array( - 'aid', - ), - 'module' => 'system', - 'name' => 'actions_aid', -)); - -db_create_table('authmap', array( - 'fields' => array( - 'aid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'uid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'authname' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - 'module' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - ), - 'unique keys' => array( - 'authname' => array( - 'authname', - ), - ), - 'primary key' => array( - 'aid', - ), - 'module' => 'user', - 'name' => 'authmap', -)); - -db_create_table('batch', array( - 'fields' => array( - 'bid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'token' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - ), - 'timestamp' => array( - 'type' => 'int', - 'not null' => TRUE, - ), - 'batch' => array( - 'type' => 'text', - 'not null' => FALSE, - 'size' => 'big', - ), - ), - 'primary key' => array( - 'bid', - ), - 'indexes' => array( - 'token' => array( - 'token', - ), - ), - 'module' => 'system', - 'name' => 'batch', -)); - -db_create_table('blocks', array( - 'fields' => array( - 'bid' => array( - 'type' => 'serial', - 'not null' => TRUE, - ), - 'module' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - ), - 'delta' => array( - 'type' => 'varchar', - 'length' => 32, - 'not null' => TRUE, - 'default' => '0', - ), - 'theme' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - ), - 'status' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'weight' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'region' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - ), - 'custom' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'throttle' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'visibility' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'pages' => array( - 'type' => 'text', - 'not null' => TRUE, - ), - 'title' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - ), - 'cache' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 1, - 'size' => 'tiny', - ), - ), - 'primary key' => array( - 'bid', - ), - 'unique keys' => array( - 'tmd' => array( - 'theme', - 'module', - 'delta', - ), - ), - 'indexes' => array( - 'list' => array( - 'theme', - 'status', - 'region', - 'weight', - 'module', - ), - ), - 'module' => 'block', - 'name' => 'blocks', -)); -db_insert('blocks')->fields(array( - 'bid', - 'module', - 'delta', - 'theme', - 'status', - 'weight', - 'region', - 'custom', - 'throttle', - 'visibility', - 'pages', - 'title', - 'cache', -)) -->values(array( - 'bid' => '1', - 'module' => 'user', - 'delta' => '0', - 'theme' => 'garland', - 'status' => '1', - 'weight' => '0', - 'region' => 'left', - 'custom' => '0', - 'throttle' => '0', - 'visibility' => '0', - 'pages' => '', - 'title' => '', - 'cache' => '-1', -)) -->values(array( - 'bid' => '2', - 'module' => 'user', - 'delta' => '1', - 'theme' => 'garland', - 'status' => '1', - 'weight' => '0', - 'region' => 'left', - 'custom' => '0', - 'throttle' => '0', - 'visibility' => '0', - 'pages' => '', - 'title' => '', - 'cache' => '-1', -)) -->values(array( - 'bid' => '3', - 'module' => 'system', - 'delta' => '0', - 'theme' => 'garland', - 'status' => '1', - 'weight' => '10', - 'region' => 'footer', - 'custom' => '0', - 'throttle' => '0', - 'visibility' => '0', - 'pages' => '', - 'title' => '', - 'cache' => '-1', -)) -->execute(); - -db_create_table('blocks_roles', array( - 'fields' => array( - 'module' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - ), - 'delta' => array( - 'type' => 'varchar', - 'length' => 32, - 'not null' => TRUE, - ), - 'rid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - ), - 'primary key' => array( - 'module', - 'delta', - 'rid', - ), - 'indexes' => array( - 'rid' => array( - 'rid', - ), - ), - 'module' => 'block', - 'name' => 'blocks_roles', -)); - -db_create_table('boxes', array( - 'fields' => array( - 'bid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'body' => array( - 'type' => 'text', - 'not null' => FALSE, - 'size' => 'big', - ), - 'info' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - 'format' => array( - 'type' => 'int', - 'size' => 'small', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'unique keys' => array( - 'info' => array( - 'info', - ), - ), - 'primary key' => array( - 'bid', - ), - 'module' => 'block', - 'name' => 'boxes', -)); - -db_create_table('cache', array( - 'fields' => array( - 'cid' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'data' => array( - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'big', - ), - 'expire' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'created' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'headers' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - 'serialized' => array( - 'type' => 'int', - 'size' => 'small', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'expire' => array( - 'expire', - ), - ), - 'primary key' => array( - 'cid', - ), - 'module' => 'system', - 'name' => 'cache', -)); - -db_create_table('cache_block', array( - 'fields' => array( - 'cid' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'data' => array( - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'big', - ), - 'expire' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'created' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'headers' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - 'serialized' => array( - 'type' => 'int', - 'size' => 'small', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'expire' => array( - 'expire', - ), - ), - 'primary key' => array( - 'cid', - ), - 'module' => 'block', - 'name' => 'cache_block', -)); - -db_create_table('cache_filter', array( - 'fields' => array( - 'cid' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'data' => array( - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'big', - ), - 'expire' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'created' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'headers' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - 'serialized' => array( - 'type' => 'int', - 'size' => 'small', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'expire' => array( - 'expire', - ), - ), - 'primary key' => array( - 'cid', - ), - 'module' => 'filter', - 'name' => 'cache_filter', -)); - -db_create_table('cache_form', array( - 'fields' => array( - 'cid' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'data' => array( - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'big', - ), - 'expire' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'created' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'headers' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - 'serialized' => array( - 'type' => 'int', - 'size' => 'small', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'expire' => array( - 'expire', - ), - ), - 'primary key' => array( - 'cid', - ), - 'module' => 'system', - 'name' => 'cache_form', -)); - -db_create_table('cache_menu', array( - 'fields' => array( - 'cid' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'data' => array( - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'big', - ), - 'expire' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'created' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'headers' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - 'serialized' => array( - 'type' => 'int', - 'size' => 'small', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'expire' => array( - 'expire', - ), - ), - 'primary key' => array( - 'cid', - ), - 'module' => 'system', - 'name' => 'cache_menu', -)); - -db_create_table('cache_page', array( - 'fields' => array( - 'cid' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'data' => array( - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'big', - ), - 'expire' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'created' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'headers' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - 'serialized' => array( - 'type' => 'int', - 'size' => 'small', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'expire' => array( - 'expire', - ), - ), - 'primary key' => array( - 'cid', - ), - 'module' => 'system', - 'name' => 'cache_page', -)); - -db_create_table('cache_update', array( - 'fields' => array( - 'cid' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'data' => array( - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'big', - ), - 'expire' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'created' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'headers' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - 'serialized' => array( - 'type' => 'int', - 'size' => 'small', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'expire' => array( - 'expire', - ), - ), - 'primary key' => array( - 'cid', - ), - 'module' => 'update', - 'name' => 'cache_update', -)); - -db_create_table('comments', array( - 'fields' => array( - 'cid' => array( - 'type' => 'serial', - 'not null' => TRUE, - ), - 'pid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'nid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'uid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'subject' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - ), - 'comment' => array( - 'type' => 'text', - 'not null' => TRUE, - 'size' => 'big', - ), - 'hostname' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - 'timestamp' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'status' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'format' => array( - 'type' => 'int', - 'size' => 'small', - 'not null' => TRUE, - 'default' => 0, - ), - 'thread' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - ), - 'name' => array( - 'type' => 'varchar', - 'length' => 60, - 'not null' => FALSE, - ), - 'mail' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => FALSE, - ), - 'homepage' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => FALSE, - ), - ), - 'indexes' => array( - 'pid' => array( - 'pid', - ), - 'nid' => array( - 'nid', - ), - 'status' => array( - 'status', - ), - ), - 'primary key' => array( - 'cid', - ), - 'module' => 'comment', - 'name' => 'comments', -)); - -db_create_table('files', array( - 'fields' => array( - 'fid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'uid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'filename' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'filepath' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'filemime' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'filesize' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'status' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'timestamp' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'uid' => array( - 'uid', - ), - 'status' => array( - 'status', - ), - 'timestamp' => array( - 'timestamp', - ), - ), - 'primary key' => array( - 'fid', - ), - 'module' => 'system', - 'name' => 'files', -)); - -db_create_table('filter_formats', array( - 'fields' => array( - 'format' => array( - 'type' => 'serial', - 'not null' => TRUE, - ), - 'name' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'roles' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'cache' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - ), - 'primary key' => array( - 'format', - ), - 'unique keys' => array( - 'name' => array( - 'name', - ), - ), - 'module' => 'filter', - 'name' => 'filter_formats', -)); -db_insert('filter_formats')->fields(array( - 'format', - 'name', - 'roles', - 'cache', -)) -->values(array( - 'format' => '1', - 'name' => 'Filtered HTML', - 'roles' => ',1,2,', - 'cache' => '1', -)) -->values(array( - 'format' => '2', - 'name' => 'Full HTML', - 'roles' => '', - 'cache' => '1', -)) -->values(array( - 'format' => '3', - 'name' => 'Escape HTML Filter', - 'roles' => '', - 'cache' => '1', -)) -->execute(); - -db_create_table('filters', array( - 'fields' => array( - 'fid' => array( - 'type' => 'serial', - 'not null' => TRUE, - ), - 'format' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'module' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - ), - 'delta' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'weight' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - ), - 'primary key' => array( - 'fid', - ), - 'unique keys' => array( - 'fmd' => array( - 'format', - 'module', - 'delta', - ), - ), - 'indexes' => array( - 'list' => array( - 'format', - 'weight', - 'module', - 'delta', - ), - ), - 'module' => 'filter', - 'name' => 'filters', -)); -db_insert('filters')->fields(array( - 'fid', - 'format', - 'module', - 'delta', - 'weight', -)) -->values(array( - 'fid' => '1', - 'format' => '1', - 'module' => 'filter', - 'delta' => '2', - 'weight' => '0', -)) -->values(array( - 'fid' => '2', - 'format' => '1', - 'module' => 'filter', - 'delta' => '0', - 'weight' => '1', -)) -->values(array( - 'fid' => '3', - 'format' => '1', - 'module' => 'filter', - 'delta' => '1', - 'weight' => '2', -)) -->values(array( - 'fid' => '4', - 'format' => '1', - 'module' => 'filter', - 'delta' => '3', - 'weight' => '10', -)) -->values(array( - 'fid' => '5', - 'format' => '2', - 'module' => 'filter', - 'delta' => '2', - 'weight' => '0', -)) -->values(array( - 'fid' => '6', - 'format' => '2', - 'module' => 'filter', - 'delta' => '1', - 'weight' => '1', -)) -->values(array( - 'fid' => '7', - 'format' => '2', - 'module' => 'filter', - 'delta' => '3', - 'weight' => '10', -)) -->execute(); - -db_create_table('flood', array( - 'fields' => array( - 'fid' => array( - 'type' => 'serial', - 'not null' => TRUE, - ), - 'event' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - ), - 'hostname' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - 'timestamp' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'primary key' => array( - 'fid', - ), - 'indexes' => array( - 'allow' => array( - 'event', - 'hostname', - 'timestamp', - ), - ), - 'module' => 'system', - 'name' => 'flood', -)); - -db_create_table('history', array( - 'fields' => array( - 'uid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'nid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'timestamp' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'primary key' => array( - 'uid', - 'nid', - ), - 'indexes' => array( - 'nid' => array( - 'nid', - ), - ), - 'module' => 'system', - 'name' => 'history', -)); - -db_create_table('menu_custom', array( - 'fields' => array( - 'menu_name' => array( - 'type' => 'varchar', - 'length' => 32, - 'not null' => TRUE, - 'default' => '', - ), - 'title' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'description' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - ), - 'primary key' => array( - 'menu_name', - ), - 'module' => 'menu', - 'name' => 'menu_custom', -)); -db_insert('menu_custom')->fields(array( - 'menu_name', - 'title', - 'description', -)) -->values(array( - 'menu_name' => 'navigation', - 'title' => 'Navigation', - 'description' => 'The navigation menu is provided by Drupal and is the main interactive menu for any site. It is usually the only menu that contains personalized links for authenticated users, and is often not even visible to anonymous users.', -)) -->values(array( - 'menu_name' => 'primary-links', - 'title' => 'Primary links', - 'description' => 'Primary links are often used at the theme layer to show the major sections of a site. A typical representation for primary links would be tabs along the top.', -)) -->values(array( - 'menu_name' => 'secondary-links', - 'title' => 'Secondary links', - 'description' => 'Secondary links are often used for pages like legal notices, contact details, and other secondary navigation items that play a lesser role than primary links', -)) -->execute(); - -db_create_table('menu_links', array( - 'fields' => array( - 'menu_name' => array( - 'type' => 'varchar', - 'length' => 32, - 'not null' => TRUE, - 'default' => '', - ), - 'mlid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'plid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'link_path' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'router_path' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'link_title' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'options' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - 'module' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => 'system', - ), - 'hidden' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'small', - ), - 'external' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'small', - ), - 'has_children' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'small', - ), - 'expanded' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'small', - ), - 'weight' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'depth' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'small', - ), - 'customized' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'small', - ), - 'p1' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'p2' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'p3' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'p4' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'p5' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'p6' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'p7' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'p8' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'p9' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'updated' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'small', - ), - ), - 'indexes' => array( - 'path_menu' => array( - array( - 'link_path', - 128, - ), - 'menu_name', - ), - 'menu_plid_expand_child' => array( - 'menu_name', - 'plid', - 'expanded', - 'has_children', - ), - 'menu_parents' => array( - 'menu_name', - 'p1', - 'p2', - 'p3', - 'p4', - 'p5', - 'p6', - 'p7', - 'p8', - 'p9', - ), - 'router_path' => array( - array( - 'router_path', - 128, - ), - ), - ), - 'primary key' => array( - 'mlid', - ), - 'module' => 'system', - 'name' => 'menu_links', -)); -db_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' => 'navigation', - 'mlid' => '1', - 'plid' => '0', - 'link_path' => 'batch', - 'router_path' => 'batch', - 'link_title' => '', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - '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' => 'navigation', - 'mlid' => '2', - 'plid' => '0', - 'link_path' => 'admin', - 'router_path' => 'admin', - 'link_title' => 'Administer', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '9', - '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' => 'node', - 'router_path' => 'node', - 'link_title' => 'Content', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - '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' => 'logout', - 'router_path' => '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' => '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' => 'rss.xml', - 'router_path' => 'rss.xml', - 'link_title' => 'RSS feed', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - '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' => 'user', - 'router_path' => 'user', - 'link_title' => 'User account', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - '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' => 'navigation', - 'mlid' => '7', - 'plid' => '0', - 'link_path' => 'node/%', - 'router_path' => 'node/%', - 'link_title' => '', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '7', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '8', - 'plid' => '2', - 'link_path' => 'admin/compact', - 'router_path' => 'admin/compact', - 'link_title' => 'Compact mode', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '2', - 'p2' => '8', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '9', - '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' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '9', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '10', - 'plid' => '2', - 'link_path' => 'admin/content', - 'router_path' => 'admin/content', - 'link_title' => 'Content management', - 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:27:\"Manage your site's content.\";}}", - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '-10', - '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' => 'navigation', - 'mlid' => '11', - 'plid' => '0', - 'link_path' => 'node/add', - 'router_path' => 'node/add', - 'link_title' => 'Create content', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '1', - 'depth' => '1', - 'customized' => '0', - 'p1' => '11', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '12', - 'plid' => '0', - 'link_path' => 'comment/delete', - 'router_path' => 'comment/delete', - 'link_title' => 'Delete comment', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '12', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '13', - 'plid' => '0', - 'link_path' => 'comment/edit', - 'router_path' => 'comment/edit', - 'link_title' => 'Edit comment', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '13', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '14', - 'plid' => '0', - 'link_path' => 'system/files', - 'router_path' => 'system/files', - 'link_title' => 'File download', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - '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' => 'navigation', - 'mlid' => '15', - 'plid' => '2', - 'link_path' => 'admin/reports', - 'router_path' => 'admin/reports', - 'link_title' => 'Reports', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:59:"View reports from system logs and other status information.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '5', - 'depth' => '2', - 'customized' => '0', - 'p1' => '2', - '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' => '2', - 'link_path' => 'admin/build', - 'router_path' => 'admin/build', - 'link_title' => 'Site building', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:38:"Control how your site looks and feels.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '-10', - 'depth' => '2', - 'customized' => '0', - 'p1' => '2', - 'p2' => '16', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '17', - 'plid' => '2', - 'link_path' => 'admin/settings', - 'router_path' => 'admin/settings', - 'link_title' => 'Site configuration', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:40:"Adjust basic site configuration options.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '-5', - 'depth' => '2', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '18', - 'plid' => '0', - 'link_path' => 'user/autocomplete', - 'router_path' => 'user/autocomplete', - 'link_title' => 'User autocomplete', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '18', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '19', - 'plid' => '2', - 'link_path' => 'admin/user', - 'router_path' => 'admin/user', - 'link_title' => 'User management', - 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:61:\"Manage your site's users, groups and access to site features.\";}}", - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - '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' => 'navigation', - 'mlid' => '20', - 'plid' => '0', - 'link_path' => 'user/%', - 'router_path' => 'user/%', - 'link_title' => 'My account', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '20', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '21', - 'plid' => '19', - 'link_path' => 'admin/user/rules', - 'router_path' => 'admin/user/rules', - 'link_title' => 'Access rules', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:80:"List and create rules to disallow usernames, e-mail addresses, and IP addresses.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '19', - 'p3' => '21', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '22', - 'plid' => '17', - 'link_path' => 'admin/settings/actions', - 'router_path' => 'admin/settings/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' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '22', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '23', - 'plid' => '17', - 'link_path' => 'admin/settings/admin', - 'router_path' => 'admin/settings/admin', - 'link_title' => 'Administration theme', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:55:"Settings for how your administrative pages should look.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '23', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '24', - 'plid' => '16', - 'link_path' => 'admin/build/block', - 'router_path' => 'admin/build/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' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '16', - 'p3' => '24', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '25', - 'plid' => '17', - 'link_path' => 'admin/settings/clean-urls', - 'router_path' => 'admin/settings/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' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '25', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '26', - 'plid' => '10', - '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:61:"List and edit site comments and the comment moderation queue.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '10', - 'p3' => '26', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '27', - 'plid' => '10', - 'link_path' => 'admin/content/node', - 'router_path' => 'admin/content/node', - 'link_title' => 'Content', - 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:43:\"View, edit, and delete your site's content.\";}}", - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '10', - 'p3' => '27', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '28', - 'plid' => '10', - 'link_path' => 'admin/content/types', - 'router_path' => 'admin/content/types', - 'link_title' => 'Content types', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:82:"Manage posts by content type, including default status, front page promotion, etc.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '10', - 'p3' => '28', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '29', - 'plid' => '17', - 'link_path' => 'admin/settings/date-time', - 'router_path' => 'admin/settings/date-time', - 'link_title' => 'Date and time', - 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:89:\"Settings for how Drupal displays date and time, as well as the system's default timezone.\";}}", - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '29', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '30', - 'plid' => '0', - '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' => '1', - 'customized' => '0', - 'p1' => '30', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '31', - 'plid' => '20', - 'link_path' => 'user/%/delete', - 'router_path' => 'user/%/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' => '20', - 'p2' => '31', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '32', - 'plid' => '17', - 'link_path' => 'admin/settings/error-reporting', - 'router_path' => 'admin/settings/error-reporting', - 'link_title' => 'Error reporting', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:93:"Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '32', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '33', - 'plid' => '17', - 'link_path' => 'admin/settings/file-system', - 'router_path' => 'admin/settings/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' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '33', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '34', - 'plid' => '17', - 'link_path' => 'admin/settings/image-toolkit', - 'router_path' => 'admin/settings/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' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '34', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '35', - 'plid' => '17', - 'link_path' => 'admin/settings/filters', - 'router_path' => 'admin/settings/filters', - 'link_title' => 'Input 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' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '35', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '36', - 'plid' => '17', - 'link_path' => 'admin/settings/logging', - 'router_path' => 'admin/settings/logging', - 'link_title' => 'Logging and alerts', - 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:156:\"Settings for logging and alerts modules. Various modules can route Drupal's system events to different destination, such as syslog, database, email, ...etc.\";}}", - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '36', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '37', - 'plid' => '16', - 'link_path' => 'admin/build/menu', - 'router_path' => 'admin/build/menu', - 'link_title' => 'Menus', - 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:116:\"Control your site's navigation menu, primary links and secondary links. as well as rename and reorganize menu items.\";}}", - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '1', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '16', - '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' => 'admin/build/modules', - 'router_path' => 'admin/build/modules', - 'link_title' => 'Modules', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:47:"Enable or disable add-on modules for your site.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '16', - 'p3' => '38', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '39', - 'plid' => '17', - 'link_path' => 'admin/settings/performance', - 'router_path' => 'admin/settings/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' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '39', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '40', - 'plid' => '19', - 'link_path' => 'admin/user/permissions', - 'router_path' => 'admin/user/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' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '19', - 'p3' => '40', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '41', - 'plid' => '10', - 'link_path' => 'admin/content/node-settings', - 'router_path' => 'admin/content/node-settings', - 'link_title' => 'Post settings', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:126:"Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '10', - 'p3' => '41', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '42', - 'plid' => '10', - 'link_path' => 'admin/content/rss-publishing', - 'router_path' => 'admin/content/rss-publishing', - 'link_title' => 'RSS publishing', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:92:"Configure the number of items per feed and whether feeds should be titles/teasers/full-text.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '10', - 'p3' => '42', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '43', - 'plid' => '0', - 'link_path' => 'comment/reply/%', - 'router_path' => 'comment/reply/%', - 'link_title' => 'Reply to comment', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '43', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '44', - 'plid' => '19', - 'link_path' => 'admin/user/roles', - 'router_path' => 'admin/user/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' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '19', - 'p3' => '44', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '45', - 'plid' => '17', - 'link_path' => 'admin/settings/site-information', - 'router_path' => 'admin/settings/site-information', - 'link_title' => 'Site information', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:107:"Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '45', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '46', - 'plid' => '17', - 'link_path' => 'admin/settings/site-maintenance', - 'router_path' => 'admin/settings/site-maintenance', - 'link_title' => 'Site maintenance', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:63:"Take the site off-line for maintenance or bring it back online.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '46', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '47', - 'plid' => '15', - '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' => '10', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '47', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '48', - 'plid' => '16', - 'link_path' => 'admin/build/themes', - 'router_path' => 'admin/build/themes', - 'link_title' => 'Themes', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:57:"Change which theme your site uses or allows users to set.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '16', - 'p3' => '48', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '49', - 'plid' => '19', - 'link_path' => 'admin/user/settings', - 'router_path' => 'admin/user/settings', - 'link_title' => 'User settings', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:101:"Configure default behavior of users, including registration requirements, e-mails, and user pictures.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '19', - 'p3' => '49', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '50', - 'plid' => '19', - 'link_path' => 'admin/user/user', - 'router_path' => 'admin/user/user', - 'link_title' => 'Users', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:26:"List, add, and edit users.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '19', - 'p3' => '50', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '51', - 'plid' => '35', - 'link_path' => 'admin/settings/filters/%', - 'router_path' => 'admin/settings/filters/%', - 'link_title' => '', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '35', - 'p4' => '51', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '52', - 'plid' => '25', - 'link_path' => 'admin/settings/clean-urls/check', - 'router_path' => 'admin/settings/clean-urls/check', - 'link_title' => 'Clean URL check', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '25', - 'p4' => '52', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '53', - 'plid' => '22', - 'link_path' => 'admin/settings/actions/configure', - 'router_path' => 'admin/settings/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' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '22', - 'p4' => '53', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '54', - 'plid' => '24', - 'link_path' => 'admin/build/block/configure', - 'router_path' => 'admin/build/block/configure', - 'link_title' => 'Configure block', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '16', - 'p3' => '24', - 'p4' => '54', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '55', - 'plid' => '16', - 'link_path' => 'admin/build/menu-customize/%', - 'router_path' => 'admin/build/menu-customize/%', - 'link_title' => 'Customize menu', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '16', - 'p3' => '55', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '56', - 'plid' => '29', - 'link_path' => 'admin/settings/date-time/lookup', - 'router_path' => 'admin/settings/date-time/lookup', - 'link_title' => 'Date and time lookup', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '29', - 'p4' => '56', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '57', - 'plid' => '24', - 'link_path' => 'admin/build/block/delete', - 'router_path' => 'admin/build/block/delete', - 'link_title' => 'Delete block', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '16', - 'p3' => '24', - 'p4' => '57', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '58', - 'plid' => '35', - 'link_path' => 'admin/settings/filters/delete', - 'router_path' => 'admin/settings/filters/delete', - 'link_title' => 'Delete input format', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '35', - 'p4' => '58', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '59', - 'plid' => '21', - 'link_path' => 'admin/user/rules/delete', - 'router_path' => 'admin/user/rules/delete', - 'link_title' => 'Delete rule', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '19', - 'p3' => '21', - 'p4' => '59', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '60', - 'plid' => '44', - 'link_path' => 'admin/user/roles/edit', - 'router_path' => 'admin/user/roles/edit', - 'link_title' => 'Edit role', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '19', - 'p3' => '44', - 'p4' => '60', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '61', - 'plid' => '21', - 'link_path' => 'admin/user/rules/edit', - 'router_path' => 'admin/user/rules/edit', - 'link_title' => 'Edit rule', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '19', - 'p3' => '21', - 'p4' => '61', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '62', - 'plid' => '47', - 'link_path' => 'admin/reports/status/php', - 'router_path' => 'admin/reports/status/php', - 'link_title' => 'PHP', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '47', - 'p4' => '62', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '63', - 'plid' => '41', - 'link_path' => 'admin/content/node-settings/rebuild', - 'router_path' => 'admin/content/node-settings/rebuild', - 'link_title' => 'Rebuild permissions', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '10', - 'p3' => '41', - 'p4' => '63', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '64', - 'plid' => '22', - 'link_path' => 'admin/settings/actions/orphan', - 'router_path' => 'admin/settings/actions/orphan', - 'link_title' => 'Remove orphans', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '22', - 'p4' => '64', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '65', - 'plid' => '47', - 'link_path' => 'admin/reports/status/run-cron', - 'router_path' => 'admin/reports/status/run-cron', - 'link_title' => 'Run cron', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '47', - 'p4' => '65', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '66', - 'plid' => '47', - 'link_path' => 'admin/reports/status/sql', - 'router_path' => 'admin/reports/status/sql', - 'link_title' => 'SQL', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '47', - 'p4' => '66', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '67', - 'plid' => '22', - 'link_path' => 'admin/settings/actions/delete/%', - 'router_path' => 'admin/settings/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' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '22', - 'p4' => '67', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '68', - 'plid' => '0', - 'link_path' => 'admin/build/menu-customize/%/delete', - 'router_path' => 'admin/build/menu-customize/%/delete', - 'link_title' => 'Delete menu', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '68', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '69', - 'plid' => '24', - 'link_path' => 'admin/build/block/list/js', - 'router_path' => 'admin/build/block/list/js', - 'link_title' => 'JavaScript List Form', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '16', - 'p3' => '24', - 'p4' => '69', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '70', - 'plid' => '38', - 'link_path' => 'admin/build/modules/list/confirm', - 'router_path' => 'admin/build/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' => '2', - 'p2' => '16', - 'p3' => '38', - 'p4' => '70', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '71', - 'plid' => '0', - 'link_path' => 'user/reset/%/%/%', - 'router_path' => 'user/reset/%/%/%', - 'link_title' => 'Reset password', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '71', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '72', - 'plid' => '38', - 'link_path' => 'admin/build/modules/uninstall/confirm', - 'router_path' => 'admin/build/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' => '2', - 'p2' => '16', - 'p3' => '38', - 'p4' => '72', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '73', - 'plid' => '0', - 'link_path' => 'node/%/revisions/%/delete', - 'router_path' => 'node/%/revisions/%/delete', - 'link_title' => 'Delete earlier revision', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '73', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '74', - 'plid' => '0', - 'link_path' => 'node/%/revisions/%/revert', - 'router_path' => 'node/%/revisions/%/revert', - 'link_title' => 'Revert to earlier revision', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '74', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '75', - 'plid' => '0', - 'link_path' => 'node/%/revisions/%/view', - 'router_path' => 'node/%/revisions/%/view', - 'link_title' => 'Revisions', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '75', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '76', - 'plid' => '37', - 'link_path' => 'admin/build/menu/item/%/delete', - 'router_path' => 'admin/build/menu/item/%/delete', - 'link_title' => 'Delete menu item', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '16', - 'p3' => '37', - 'p4' => '76', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '77', - 'plid' => '37', - 'link_path' => 'admin/build/menu/item/%/edit', - 'router_path' => 'admin/build/menu/item/%/edit', - 'link_title' => 'Edit menu item', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '16', - 'p3' => '37', - 'p4' => '77', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '78', - 'plid' => '37', - 'link_path' => 'admin/build/menu/item/%/reset', - 'router_path' => 'admin/build/menu/item/%/reset', - 'link_title' => 'Reset menu item', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '16', - 'p3' => '37', - 'p4' => '78', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '79', - 'plid' => '37', - 'link_path' => 'admin/build/menu-customize/navigation', - 'router_path' => 'admin/build/menu-customize/%', - 'link_title' => 'Navigation', - 'options' => 'a:0:{}', - 'module' => 'menu', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '16', - 'p3' => '37', - 'p4' => '79', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '80', - 'plid' => '37', - 'link_path' => 'admin/build/menu-customize/primary-links', - 'router_path' => 'admin/build/menu-customize/%', - 'link_title' => 'Primary links', - 'options' => 'a:0:{}', - 'module' => 'menu', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '16', - 'p3' => '37', - 'p4' => '80', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '81', - 'plid' => '37', - 'link_path' => 'admin/build/menu-customize/secondary-links', - 'router_path' => 'admin/build/menu-customize/%', - 'link_title' => 'Secondary links', - 'options' => 'a:0:{}', - 'module' => 'menu', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '16', - 'p3' => '37', - 'p4' => '81', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '82', - 'plid' => '0', - 'link_path' => 'taxonomy/autocomplete', - 'router_path' => 'taxonomy/autocomplete', - 'link_title' => 'Autocomplete taxonomy', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '82', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '83', - 'plid' => '15', - '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' => '10', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '83', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '84', - 'plid' => '11', - 'link_path' => 'node/add/page', - 'router_path' => 'node/add/page', - 'link_title' => 'Page', - 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:296:\"A page, similar in form to a story, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a page entry does not allow visitor comments and is not featured on the site's initial home page.\";}}", - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '11', - 'p2' => '84', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '85', - 'plid' => '15', - 'link_path' => 'admin/reports/dblog', - 'router_path' => 'admin/reports/dblog', - 'link_title' => 'Recent log entries', - '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' => '2', - 'p2' => '15', - 'p3' => '85', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '86', - 'plid' => '11', - 'link_path' => 'node/add/story', - 'router_path' => 'node/add/story', - 'link_title' => 'Story', - 'options' => "a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:392:\"A story, similar in form to a page, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a story entry. By default, a story entry is automatically featured on the site's initial home page, and provides the ability to post comments.\";}}", - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '11', - 'p2' => '86', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '87', - 'plid' => '10', - 'link_path' => 'admin/content/taxonomy', - 'router_path' => 'admin/content/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' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '10', - 'p3' => '87', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '88', - 'plid' => '0', - 'link_path' => 'taxonomy/term/%', - 'router_path' => 'taxonomy/term/%', - 'link_title' => 'Taxonomy term', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '88', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '89', - 'plid' => '15', - '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' => '2', - 'p2' => '15', - 'p3' => '89', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '90', - 'plid' => '15', - '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' => '2', - 'p2' => '15', - 'p3' => '90', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '91', - 'plid' => '16', - 'link_path' => 'admin/build/path', - 'router_path' => 'admin/build/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' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '16', - 'p3' => '91', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '92', - 'plid' => '36', - 'link_path' => 'admin/settings/logging/dblog', - 'router_path' => 'admin/settings/logging/dblog', - 'link_title' => 'Database logging', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:169:"Settings for logging to the Drupal database logs. This is the most common method for small to medium sites on shared hosting. The logs are viewable from the admin pages.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '17', - 'p3' => '36', - 'p4' => '92', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '93', - 'plid' => '91', - 'link_path' => 'admin/build/path/delete', - 'router_path' => 'admin/build/path/delete', - 'link_title' => 'Delete alias', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '16', - 'p3' => '91', - 'p4' => '93', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '94', - 'plid' => '15', - 'link_path' => 'admin/reports/event/%', - 'router_path' => 'admin/reports/event/%', - 'link_title' => 'Details', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '94', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '95', - 'plid' => '91', - 'link_path' => 'admin/build/path/edit', - 'router_path' => 'admin/build/path/edit', - 'link_title' => 'Edit alias', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '16', - 'p3' => '91', - 'p4' => '95', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '96', - 'plid' => '87', - 'link_path' => 'admin/content/taxonomy/%', - 'router_path' => 'admin/content/taxonomy/%', - 'link_title' => 'List terms', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '10', - 'p3' => '87', - 'p4' => '96', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '97', - 'plid' => '83', - 'link_path' => 'admin/reports/updates/check', - 'router_path' => 'admin/reports/updates/check', - 'link_title' => 'Manual update check', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '15', - 'p3' => '83', - 'p4' => '97', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '98', - 'plid' => '10', - 'link_path' => 'admin/content/node-type/page', - 'router_path' => 'admin/content/node-type/page', - 'link_title' => 'Page', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '10', - 'p3' => '98', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '99', - 'plid' => '10', - 'link_path' => 'admin/content/node-type/story', - 'router_path' => 'admin/content/node-type/story', - 'link_title' => 'Story', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '10', - 'p3' => '99', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '100', - 'plid' => '0', - 'link_path' => 'admin/content/node-type/page/delete', - 'router_path' => 'admin/content/node-type/page/delete', - 'link_title' => 'Delete', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '100', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '101', - 'plid' => '0', - 'link_path' => 'admin/content/node-type/story/delete', - 'router_path' => 'admin/content/node-type/story/delete', - 'link_title' => 'Delete', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '101', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '102', - 'plid' => '87', - 'link_path' => 'admin/content/taxonomy/edit/term', - 'router_path' => 'admin/content/taxonomy/edit/term', - 'link_title' => 'Edit term', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '10', - 'p3' => '87', - 'p4' => '102', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '103', - 'plid' => '87', - 'link_path' => 'admin/content/taxonomy/edit/vocabulary/%', - 'router_path' => 'admin/content/taxonomy/edit/vocabulary/%', - 'link_title' => 'Edit vocabulary', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '4', - 'customized' => '0', - 'p1' => '2', - 'p2' => '10', - 'p3' => '87', - 'p4' => '103', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '104', - 'plid' => '0', - 'link_path' => 'poll', - 'router_path' => 'poll', - 'link_title' => 'Polls', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '104', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '105', - 'plid' => '104', - 'link_path' => 'poll/js', - 'router_path' => 'poll/js', - 'link_title' => 'Javascript Choice Form', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '104', - 'p2' => '105', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '106', - 'plid' => '11', - 'link_path' => 'node/add/poll', - 'router_path' => 'node/add/poll', - 'link_title' => 'Poll', - 'options' => 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:191:"A poll is a question with a set of possible responses. A poll, once created, automatically provides a simple running count of the number of votes received for each response.";}}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '2', - 'customized' => '0', - 'p1' => '11', - 'p2' => '106', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '107', - 'plid' => '10', - 'link_path' => 'admin/content/node-type/poll', - 'router_path' => 'admin/content/node-type/poll', - 'link_title' => 'Poll', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '10', - 'p3' => '107', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '108', - 'plid' => '0', - 'link_path' => 'admin/content/node-type/poll/delete', - 'router_path' => 'admin/content/node-type/poll/delete', - 'link_title' => 'Delete', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '1', - 'customized' => '0', - 'p1' => '108', - 'p2' => '0', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '109', - 'plid' => '2', - 'link_path' => 'admin/help', - 'router_path' => 'admin/help', - 'link_title' => 'Help', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '0', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '9', - 'depth' => '2', - 'customized' => '0', - 'p1' => '2', - 'p2' => '109', - 'p3' => '0', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '110', - 'plid' => '109', - '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' => '2', - 'p2' => '109', - 'p3' => '110', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '111', - 'plid' => '109', - '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' => '2', - 'p2' => '109', - 'p3' => '111', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '112', - 'plid' => '109', - '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' => '2', - 'p2' => '109', - 'p3' => '112', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '113', - 'plid' => '109', - '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' => '2', - 'p2' => '109', - 'p3' => '113', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '114', - 'plid' => '109', - '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' => '2', - 'p2' => '109', - 'p3' => '114', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '115', - 'plid' => '109', - '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' => '2', - 'p2' => '109', - 'p3' => '115', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '116', - 'plid' => '109', - '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' => '2', - 'p2' => '109', - 'p3' => '116', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '117', - 'plid' => '109', - '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' => '2', - 'p2' => '109', - 'p3' => '117', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '118', - 'plid' => '109', - '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' => '2', - 'p2' => '109', - 'p3' => '118', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '119', - 'plid' => '109', - 'link_path' => 'admin/help/poll', - 'router_path' => 'admin/help/poll', - 'link_title' => 'poll', - 'options' => 'a:0:{}', - 'module' => 'system', - 'hidden' => '-1', - 'external' => '0', - 'has_children' => '0', - 'expanded' => '0', - 'weight' => '0', - 'depth' => '3', - 'customized' => '0', - 'p1' => '2', - 'p2' => '109', - 'p3' => '119', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '120', - 'plid' => '109', - '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' => '2', - 'p2' => '109', - 'p3' => '120', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '121', - 'plid' => '109', - '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' => '2', - 'p2' => '109', - 'p3' => '121', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '122', - 'plid' => '109', - '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' => '2', - 'p2' => '109', - 'p3' => '122', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->values(array( - 'menu_name' => 'navigation', - 'mlid' => '123', - 'plid' => '109', - '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' => '2', - 'p2' => '109', - 'p3' => '123', - 'p4' => '0', - 'p5' => '0', - 'p6' => '0', - 'p7' => '0', - 'p8' => '0', - 'p9' => '0', - 'updated' => '0', -)) -->execute(); - -db_create_table('menu_router', array( - 'fields' => array( - 'path' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'load_functions' => array( - 'type' => 'text', - 'not null' => TRUE, - ), - 'to_arg_functions' => array( - 'type' => 'text', - 'not null' => TRUE, - ), - 'access_callback' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'access_arguments' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - 'page_callback' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'page_arguments' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - 'fit' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'number_parts' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'small', - ), - 'tab_parent' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'tab_root' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'title' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'title_callback' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'title_arguments' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'type' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'block_callback' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'description' => array( - 'type' => 'text', - 'not null' => TRUE, - ), - 'position' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'weight' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'file' => array( - 'type' => 'text', - 'size' => 'medium', - ), - ), - 'indexes' => array( - 'fit' => array( - 'fit', - ), - 'tab_parent' => array( - 'tab_parent', - ), - 'tab_root_weight_title' => array( - array( - 'tab_root', - 64, - ), - 'weight', - 'title', - ), - ), - 'primary key' => array( - 'path', - ), - 'module' => 'system', - 'name' => 'menu_router', -)); -db_insert('menu_router')->fields(array( - 'path', - 'load_functions', - 'to_arg_functions', - 'access_callback', - 'access_arguments', - 'page_callback', - 'page_arguments', - 'fit', - 'number_parts', - 'tab_parent', - 'tab_root', - 'title', - 'title_callback', - 'title_arguments', - 'type', - 'block_callback', - 'description', - 'position', - 'weight', - '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_main_admin_page', - 'page_arguments' => 'a:0:{}', - 'fit' => '1', - 'number_parts' => '1', - 'tab_parent' => '', - 'tab_root' => 'admin', - 'title' => 'Administer', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '9', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build', - '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:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'admin/build', - 'title' => 'Site building', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Control how your site looks and feels.', - 'position' => 'right', - 'weight' => '-10', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/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:0:{}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/build/block', - 'title' => 'Blocks', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => "Configure what block content appears in your site's sidebars and other regions.", - 'position' => '', - 'weight' => '0', - 'file' => 'modules/block/block.admin.inc', -)) -->values(array( - 'path' => 'admin/build/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";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/build/block', - 'tab_root' => 'admin/build/block', - 'title' => 'Add block', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/block/block.admin.inc', -)) -->values(array( - 'path' => 'admin/build/block/configure', - '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:21:"block_admin_configure";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/build/block/configure', - 'title' => 'Configure block', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/block/block.admin.inc', -)) -->values(array( - 'path' => 'admin/build/block/delete', - '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:16:"block_box_delete";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/build/block/delete', - 'title' => 'Delete block', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/block/block.admin.inc', -)) -->values(array( - 'path' => 'admin/build/block/list', - '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:0:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/build/block', - 'tab_root' => 'admin/build/block', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'file' => 'modules/block/block.admin.inc', -)) -->values(array( - 'path' => 'admin/build/block/list/bluemarine', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_block_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/bluemarine/bluemarine.info";s:4:"name";s:10:"bluemarine";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:11:{s:4:"name";s:10:"Bluemarine";s:11:"description";s:66:"Table-based multi-column theme with a marine and ash color scheme.";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/bluemarine/script.js";}s:10:"screenshot";s:32:"themes/bluemarine/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:6:"engine";s:11:"phptemplate";}}', - 'page_callback' => 'block_admin_display', - 'page_arguments' => 'a:1:{i:0;s:10:"bluemarine";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/block/list', - 'tab_root' => 'admin/build/block', - 'title' => 'Bluemarine', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/block/block.admin.inc', -)) -->values(array( - 'path' => 'admin/build/block/list/chameleon', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_block_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:31:"themes/chameleon/chameleon.info";s:4:"name";s:9:"chameleon";s:4:"type";s:5:"theme";s:5:"owner";s:32:"themes/chameleon/chameleon.theme";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:10:{s:4:"name";s:9:"Chameleon";s:11:"description";s:42:"Minimalist tabled theme with light colors.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:8:"features";a:4:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:7:"scripts";a:1:{s:9:"script.js";s:26:"themes/chameleon/script.js";}s:10:"screenshot";s:31:"themes/chameleon/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}}}', - 'page_callback' => 'block_admin_display', - 'page_arguments' => 'a:1:{i:0;s:9:"chameleon";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/block/list', - 'tab_root' => 'admin/build/block', - 'title' => 'Chameleon', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/block/block.admin.inc', -)) -->values(array( - 'path' => 'admin/build/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:"1";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:11:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:24:"themes/garland/script.js";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}', - 'page_callback' => 'block_admin_display', - 'page_arguments' => 'a:1:{i:0;s:7:"garland";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/block/list', - 'tab_root' => 'admin/build/block', - 'title' => 'Garland', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'file' => 'modules/block/block.admin.inc', -)) -->values(array( - 'path' => 'admin/build/block/list/js', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}', - 'page_callback' => 'block_admin_display_js', - 'page_arguments' => 'a:0:{}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => '', - 'tab_root' => 'admin/build/block/list/js', - 'title' => 'JavaScript List Form', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/block/block.admin.inc', -)) -->values(array( - 'path' => 'admin/build/block/list/marvin', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_block_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:35:"themes/chameleon/marvin/marvin.info";s:4:"name";s:6:"marvin";s:4:"type";s:5:"theme";s:5:"owner";s:0:"";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:11:{s:4:"name";s:6:"Marvin";s:11:"description";s:31:"Boxy tabled theme in all grays.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/chameleon/marvin/script.js";}s:10:"screenshot";s:38:"themes/chameleon/marvin/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:10:"base_theme";s:9:"chameleon";}}', - 'page_callback' => 'block_admin_display', - 'page_arguments' => 'a:1:{i:0;s:6:"marvin";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/block/list', - 'tab_root' => 'admin/build/block', - 'title' => 'Marvin', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/block/block.admin.inc', -)) -->values(array( - 'path' => 'admin/build/block/list/minnelli', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_block_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":13:{s:8:"filename";s:37:"themes/garland/minnelli/minnelli.info";s:4:"name";s:8:"minnelli";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:12:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:10:"base theme";s:7:"garland";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/garland/minnelli/script.js";}s:10:"screenshot";s:38:"themes/garland/minnelli/screenshot.png";s:3:"php";s:5:"4.3.5";s:6:"engine";s:11:"phptemplate";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:6:"engine";s:11:"phptemplate";s:10:"base_theme";s:7:"garland";}}', - 'page_callback' => 'block_admin_display', - 'page_arguments' => 'a:1:{i:0;s:8:"minnelli";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/block/list', - 'tab_root' => 'admin/build/block', - 'title' => 'Minnelli', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/block/block.admin.inc', -)) -->values(array( - 'path' => 'admin/build/block/list/pushbutton', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_block_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/pushbutton/pushbutton.info";s:4:"name";s:10:"pushbutton";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:11:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/pushbutton/script.js";}s:10:"screenshot";s:32:"themes/pushbutton/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:6:"engine";s:11:"phptemplate";}}', - 'page_callback' => 'block_admin_display', - 'page_arguments' => 'a:1:{i:0;s:10:"pushbutton";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/block/list', - 'tab_root' => 'admin/build/block', - 'title' => 'Pushbutton', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/block/block.admin.inc', -)) -->values(array( - 'path' => 'admin/build/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:{}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/build/menu', - 'title' => 'Menus', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => "Control your site's navigation menu, primary links and secondary links. as well as rename and reorganize menu items.", - 'position' => '', - 'weight' => '0', - 'file' => 'modules/menu/menu.admin.inc', -)) -->values(array( - 'path' => 'admin/build/menu-customize/%', - 'load_functions' => 'a:1:{i:3;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:3;}', - 'fit' => '14', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/build/menu-customize/%', - 'title' => 'Customize menu', - 'title_callback' => 'menu_overview_title', - 'title_arguments' => 'a:1:{i:0;i:3;}', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/menu/menu.admin.inc', -)) -->values(array( - 'path' => 'admin/build/menu-customize/%/add', - 'load_functions' => 'a:1:{i:3;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:3;}', - 'fit' => '29', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/menu-customize/%', - 'tab_root' => 'admin/build/menu-customize/%', - 'title' => 'Add item', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/menu/menu.admin.inc', -)) -->values(array( - 'path' => 'admin/build/menu-customize/%/delete', - 'load_functions' => 'a:1:{i:3;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:3;}', - 'fit' => '29', - 'number_parts' => '5', - 'tab_parent' => '', - 'tab_root' => 'admin/build/menu-customize/%/delete', - 'title' => 'Delete menu', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/menu/menu.admin.inc', -)) -->values(array( - 'path' => 'admin/build/menu-customize/%/edit', - 'load_functions' => 'a:1:{i:3;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:3;}', - 'fit' => '29', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/menu-customize/%', - 'tab_root' => 'admin/build/menu-customize/%', - 'title' => 'Edit menu', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/menu/menu.admin.inc', -)) -->values(array( - 'path' => 'admin/build/menu-customize/%/list', - 'load_functions' => 'a:1:{i:3;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:3;}', - 'fit' => '29', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/menu-customize/%', - 'tab_root' => 'admin/build/menu-customize/%', - 'title' => 'List items', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'file' => 'modules/menu/menu.admin.inc', -)) -->values(array( - 'path' => 'admin/build/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";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/build/menu', - 'tab_root' => 'admin/build/menu', - 'title' => 'Add menu', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/menu/menu.admin.inc', -)) -->values(array( - 'path' => 'admin/build/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;}', - 'fit' => '61', - 'number_parts' => '6', - 'tab_parent' => '', - 'tab_root' => 'admin/build/menu/item/%/delete', - 'title' => 'Delete menu item', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/menu/menu.admin.inc', -)) -->values(array( - 'path' => 'admin/build/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;}', - 'fit' => '61', - 'number_parts' => '6', - 'tab_parent' => '', - 'tab_root' => 'admin/build/menu/item/%/edit', - 'title' => 'Edit menu item', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/menu/menu.admin.inc', -)) -->values(array( - 'path' => 'admin/build/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;}', - 'fit' => '61', - 'number_parts' => '6', - 'tab_parent' => '', - 'tab_root' => 'admin/build/menu/item/%/reset', - 'title' => 'Reset menu item', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/menu/menu.admin.inc', -)) -->values(array( - 'path' => 'admin/build/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:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/build/menu', - 'tab_root' => 'admin/build/menu', - 'title' => 'List menus', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'file' => 'modules/menu/menu.admin.inc', -)) -->values(array( - 'path' => 'admin/build/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";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/build/menu', - 'tab_root' => 'admin/build/menu', - 'title' => 'Settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '5', - 'file' => 'modules/menu/menu.admin.inc', -)) -->values(array( - 'path' => 'admin/build/modules', - '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:14:"system_modules";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/build/modules', - 'title' => 'Modules', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Enable or disable add-on modules for your site.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/modules/list', - '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:14:"system_modules";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/build/modules', - 'tab_root' => 'admin/build/modules', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/modules/list/confirm', - '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:14:"system_modules";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => '', - 'tab_root' => 'admin/build/modules/list/confirm', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/modules/uninstall', - '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_modules_uninstall";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/build/modules', - 'tab_root' => 'admin/build/modules', - 'title' => 'Uninstall', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/modules/uninstall/confirm', - '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_modules_uninstall";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => '', - 'tab_root' => 'admin/build/modules/uninstall/confirm', - 'title' => 'Uninstall', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/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:{}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/build/path', - 'title' => 'URL aliases', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => "Change your site's URL paths by aliasing them.", - 'position' => '', - 'weight' => '0', - 'file' => 'modules/path/path.admin.inc', -)) -->values(array( - 'path' => 'admin/build/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:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/build/path', - 'tab_root' => 'admin/build/path', - 'title' => 'Add alias', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/path/path.admin.inc', -)) -->values(array( - 'path' => 'admin/build/path/delete', - 'load_functions' => '', - '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:1:{i:0;s:25:"path_admin_delete_confirm";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/build/path/delete', - 'title' => 'Delete alias', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/path/path.admin.inc', -)) -->values(array( - 'path' => 'admin/build/path/edit', - '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:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/build/path/edit', - 'title' => 'Edit alias', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/path/path.admin.inc', -)) -->values(array( - 'path' => 'admin/build/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:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/build/path', - 'tab_root' => 'admin/build/path', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'file' => 'modules/path/path.admin.inc', -)) -->values(array( - 'path' => 'admin/build/themes', - '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:"system_themes_form";i:1;N;}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/build/themes', - 'title' => 'Themes', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Change which theme your site uses or allows users to set.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/themes/select', - '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:"system_themes_form";i:1;N;}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/build/themes', - 'tab_root' => 'admin/build/themes', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => 'Select the default theme.', - 'position' => '', - 'weight' => '-1', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/themes/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:21:"system_theme_settings";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/build/themes', - 'tab_root' => 'admin/build/themes', - 'title' => 'Configure', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/themes/settings/bluemarine', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_system_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/bluemarine/bluemarine.info";s:4:"name";s:10:"bluemarine";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:11:{s:4:"name";s:10:"Bluemarine";s:11:"description";s:66:"Table-based multi-column theme with a marine and ash color scheme.";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/bluemarine/script.js";}s:10:"screenshot";s:32:"themes/bluemarine/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:6:"engine";s:11:"phptemplate";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"bluemarine";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/themes/settings', - 'tab_root' => 'admin/build/themes', - 'title' => 'Bluemarine', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/themes/settings/chameleon', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_system_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:31:"themes/chameleon/chameleon.info";s:4:"name";s:9:"chameleon";s:4:"type";s:5:"theme";s:5:"owner";s:32:"themes/chameleon/chameleon.theme";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:10:{s:4:"name";s:9:"Chameleon";s:11:"description";s:42:"Minimalist tabled theme with light colors.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:8:"features";a:4:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:7:"scripts";a:1:{s:9:"script.js";s:26:"themes/chameleon/script.js";}s:10:"screenshot";s:31:"themes/chameleon/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:9:"chameleon";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/themes/settings', - 'tab_root' => 'admin/build/themes', - 'title' => 'Chameleon', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/themes/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:"1";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:11:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:24:"themes/garland/script.js";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:7:"garland";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/themes/settings', - 'tab_root' => 'admin/build/themes', - 'title' => 'Garland', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/themes/settings/global', - '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:21:"system_theme_settings";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/themes/settings', - 'tab_root' => 'admin/build/themes', - 'title' => 'Global settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '-1', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/themes/settings/marvin', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_system_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:35:"themes/chameleon/marvin/marvin.info";s:4:"name";s:6:"marvin";s:4:"type";s:5:"theme";s:5:"owner";s:0:"";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:11:{s:4:"name";s:6:"Marvin";s:11:"description";s:31:"Boxy tabled theme in all grays.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/chameleon/marvin/script.js";}s:10:"screenshot";s:38:"themes/chameleon/marvin/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:10:"base_theme";s:9:"chameleon";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:6:"marvin";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/themes/settings', - 'tab_root' => 'admin/build/themes', - 'title' => 'Marvin', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/themes/settings/minnelli', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_system_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":13:{s:8:"filename";s:37:"themes/garland/minnelli/minnelli.info";s:4:"name";s:8:"minnelli";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:12:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:10:"base theme";s:7:"garland";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/garland/minnelli/script.js";}s:10:"screenshot";s:38:"themes/garland/minnelli/screenshot.png";s:3:"php";s:5:"4.3.5";s:6:"engine";s:11:"phptemplate";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:6:"engine";s:11:"phptemplate";s:10:"base_theme";s:7:"garland";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:8:"minnelli";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/themes/settings', - 'tab_root' => 'admin/build/themes', - 'title' => 'Minnelli', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/build/themes/settings/pushbutton', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '_system_themes_access', - 'access_arguments' => 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/pushbutton/pushbutton.info";s:4:"name";s:10:"pushbutton";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:11:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/pushbutton/script.js";}s:10:"screenshot";s:32:"themes/pushbutton/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:6:"engine";s:11:"phptemplate";}}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"pushbutton";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/build/themes/settings', - 'tab_root' => 'admin/build/themes', - 'title' => 'Pushbutton', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/by-module', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'system_admin_by_module', - 'page_arguments' => 'a:0:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => 'admin', - 'tab_root' => 'admin', - 'title' => 'By module', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '2', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/by-task', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'system_main_admin_page', - 'page_arguments' => 'a:0:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => 'admin', - 'tab_root' => 'admin', - 'title' => 'By task', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->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:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'admin/compact', - 'title' => 'Compact mode', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/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:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'admin/content', - 'title' => 'Content management', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => "Manage your site's content.", - 'position' => 'left', - 'weight' => '-10', - 'file' => 'modules/system/system.admin.inc', -)) -->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:{}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/content/comment', - 'title' => 'Comments', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'List and edit site comments and the comment moderation queue.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/comment/comment.admin.inc', -)) -->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";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/content/comment', - 'tab_root' => 'admin/content/comment', - 'title' => 'Approval queue', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/comment/comment.admin.inc', -)) -->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:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/content/comment', - 'tab_root' => 'admin/content/comment', - 'title' => 'Published comments', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'file' => 'modules/comment/comment.admin.inc', -)) -->values(array( - 'path' => 'admin/content/node', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/content/node', - 'title' => 'Content', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => "View, edit, and delete your site's content.", - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/node.admin.inc', -)) -->values(array( - 'path' => 'admin/content/node-settings', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:14:"node_configure";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/content/node-settings', - 'title' => 'Post settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/node.admin.inc', -)) -->values(array( - 'path' => 'admin/content/node-settings/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";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/content/node-settings/rebuild', - 'title' => 'Rebuild permissions', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/node.admin.inc', -)) -->values(array( - 'path' => 'admin/content/node-type/page', - '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:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:4:\"page\";s:4:\"name\";s:4:\"Page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"A page, similar in form to a story, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a page entry does not allow visitor comments and is not featured on the site's initial home page.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";}}", - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/content/node-type/page', - 'title' => 'Page', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/content_types.inc', -)) -->values(array( - 'path' => 'admin/content/node-type/page/delete', - '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:2:{i:0;s:24:\"node_type_delete_confirm\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:4:\"page\";s:4:\"name\";s:4:\"Page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"A page, similar in form to a story, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a page entry does not allow visitor comments and is not featured on the site's initial home page.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";}}", - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => '', - 'tab_root' => 'admin/content/node-type/page/delete', - 'title' => 'Delete', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/content_types.inc', -)) -->values(array( - 'path' => 'admin/content/node-type/page/edit', - '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:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:4:\"page\";s:4:\"name\";s:4:\"Page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"A page, similar in form to a story, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a page entry does not allow visitor comments and is not featured on the site's initial home page.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:4:\"page\";}}", - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/content/node-type/page', - 'tab_root' => 'admin/content/node-type/page', - 'title' => 'Edit', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/content_types.inc', -)) -->values(array( - 'path' => 'admin/content/node-type/poll', - '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:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"name";s:4:"Poll";s:6:"module";s:4:"poll";s:11:"description";s:191:"A poll is a question with a set of possible responses. A poll, once created, automatically provides a simple running count of the number of votes received for each response.";s:11:"title_label";s:8:"Question";s:8:"has_body";b:0;s:4:"type";s:4:"poll";s:9:"has_title";b:1;s:4:"help";s:0:"";s:14:"min_word_count";i:0;s:6:"custom";b:0;s:8:"modified";b:0;s:6:"locked";b:1;s:9:"orig_type";s:4:"poll";s:6:"is_new";b:1;}}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/content/node-type/poll', - 'title' => 'Poll', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/content_types.inc', -)) -->values(array( - 'path' => 'admin/content/node-type/poll/delete', - '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:2:{i:0;s:24:"node_type_delete_confirm";i:1;O:8:"stdClass":14:{s:4:"name";s:4:"Poll";s:6:"module";s:4:"poll";s:11:"description";s:191:"A poll is a question with a set of possible responses. A poll, once created, automatically provides a simple running count of the number of votes received for each response.";s:11:"title_label";s:8:"Question";s:8:"has_body";b:0;s:4:"type";s:4:"poll";s:9:"has_title";b:1;s:4:"help";s:0:"";s:14:"min_word_count";i:0;s:6:"custom";b:0;s:8:"modified";b:0;s:6:"locked";b:1;s:9:"orig_type";s:4:"poll";s:6:"is_new";b:1;}}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => '', - 'tab_root' => 'admin/content/node-type/poll/delete', - 'title' => 'Delete', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/content_types.inc', -)) -->values(array( - 'path' => 'admin/content/node-type/poll/edit', - '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:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"name";s:4:"Poll";s:6:"module";s:4:"poll";s:11:"description";s:191:"A poll is a question with a set of possible responses. A poll, once created, automatically provides a simple running count of the number of votes received for each response.";s:11:"title_label";s:8:"Question";s:8:"has_body";b:0;s:4:"type";s:4:"poll";s:9:"has_title";b:1;s:4:"help";s:0:"";s:14:"min_word_count";i:0;s:6:"custom";b:0;s:8:"modified";b:0;s:6:"locked";b:1;s:9:"orig_type";s:4:"poll";s:6:"is_new";b:1;}}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/content/node-type/poll', - 'tab_root' => 'admin/content/node-type/poll', - 'title' => 'Edit', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/content_types.inc', -)) -->values(array( - 'path' => 'admin/content/node-type/story', - '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:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:5:\"story\";s:4:\"name\";s:5:\"Story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A story, similar in form to a page, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a story entry. By default, a story entry is automatically featured on the site's initial home page, and provides the ability to post comments.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:5:\"story\";}}", - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/content/node-type/story', - 'title' => 'Story', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/content_types.inc', -)) -->values(array( - 'path' => 'admin/content/node-type/story/delete', - '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:2:{i:0;s:24:\"node_type_delete_confirm\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:5:\"story\";s:4:\"name\";s:5:\"Story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A story, similar in form to a page, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a story entry. By default, a story entry is automatically featured on the site's initial home page, and provides the ability to post comments.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:5:\"story\";}}", - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => '', - 'tab_root' => 'admin/content/node-type/story/delete', - 'title' => 'Delete', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/content_types.inc', -)) -->values(array( - 'path' => 'admin/content/node-type/story/edit', - '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:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:5:\"story\";s:4:\"name\";s:5:\"Story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A story, similar in form to a page, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a story entry. By default, a story entry is automatically featured on the site's initial home page, and provides the ability to post comments.\";s:4:\"help\";s:0:\"\";s:9:\"has_title\";s:1:\"1\";s:11:\"title_label\";s:5:\"Title\";s:8:\"has_body\";s:1:\"1\";s:10:\"body_label\";s:4:\"Body\";s:14:\"min_word_count\";s:1:\"0\";s:6:\"custom\";s:1:\"1\";s:8:\"modified\";s:1:\"1\";s:6:\"locked\";s:1:\"0\";s:9:\"orig_type\";s:5:\"story\";}}", - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/content/node-type/story', - 'tab_root' => 'admin/content/node-type/story', - 'title' => 'Edit', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/content_types.inc', -)) -->values(array( - 'path' => 'admin/content/node/overview', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/content/node', - 'tab_root' => 'admin/content/node', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'file' => 'modules/node/node.admin.inc', -)) -->values(array( - 'path' => 'admin/content/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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/content/rss-publishing', - 'title' => 'RSS publishing', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Configure the number of items per feed and whether feeds should be titles/teasers/full-text.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/content/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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/content/taxonomy', - 'title' => 'Taxonomy', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Manage tagging, categorization, and classification of your content.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/taxonomy/taxonomy.admin.inc', -)) -->values(array( - 'path' => 'admin/content/taxonomy/%', - 'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_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;}', - 'fit' => '14', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/content/taxonomy/%', - 'title' => 'List terms', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/taxonomy/taxonomy.admin.inc', -)) -->values(array( - 'path' => 'admin/content/taxonomy/%/add/term', - 'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}', - 'page_callback' => 'taxonomy_add_term_page', - 'page_arguments' => 'a:1:{i:0;i:3;}', - 'fit' => '59', - 'number_parts' => '6', - 'tab_parent' => 'admin/content/taxonomy/%', - 'tab_root' => 'admin/content/taxonomy/%', - 'title' => 'Add term', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/taxonomy/taxonomy.admin.inc', -)) -->values(array( - 'path' => 'admin/content/taxonomy/%/list', - 'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_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;}', - 'fit' => '29', - 'number_parts' => '5', - 'tab_parent' => 'admin/content/taxonomy/%', - 'tab_root' => 'admin/content/taxonomy/%', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'file' => 'modules/taxonomy/taxonomy.admin.inc', -)) -->values(array( - 'path' => 'admin/content/taxonomy/add/vocabulary', - '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";}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => 'admin/content/taxonomy', - 'tab_root' => 'admin/content/taxonomy', - 'title' => 'Add vocabulary', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/taxonomy/taxonomy.admin.inc', -)) -->values(array( - 'path' => 'admin/content/taxonomy/edit/term', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}', - 'page_callback' => 'taxonomy_admin_term_edit', - 'page_arguments' => 'a:0:{}', - 'fit' => '31', - 'number_parts' => '5', - 'tab_parent' => '', - 'tab_root' => 'admin/content/taxonomy/edit/term', - 'title' => 'Edit term', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/taxonomy/taxonomy.admin.inc', -)) -->values(array( - 'path' => 'admin/content/taxonomy/edit/vocabulary/%', - 'load_functions' => 'a:1:{i:5;s:24:"taxonomy_vocabulary_load";}', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}', - 'page_callback' => 'taxonomy_admin_vocabulary_edit', - 'page_arguments' => 'a:1:{i:0;i:5;}', - 'fit' => '62', - 'number_parts' => '6', - 'tab_parent' => '', - 'tab_root' => 'admin/content/taxonomy/edit/vocabulary/%', - 'title' => 'Edit vocabulary', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/taxonomy/taxonomy.admin.inc', -)) -->values(array( - 'path' => 'admin/content/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";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/content/taxonomy', - 'tab_root' => 'admin/content/taxonomy', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'file' => 'modules/taxonomy/taxonomy.admin.inc', -)) -->values(array( - 'path' => 'admin/content/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:{}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/content/types', - 'title' => 'Content types', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Manage posts by content type, including default status, front page promotion, etc.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/content_types.inc', -)) -->values(array( - 'path' => 'admin/content/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";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/content/types', - 'tab_root' => 'admin/content/types', - 'title' => 'Add content type', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/content_types.inc', -)) -->values(array( - 'path' => 'admin/content/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:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/content/types', - 'tab_root' => 'admin/content/types', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'file' => 'modules/node/content_types.inc', -)) -->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:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'admin/help', - 'title' => 'Help', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '9', - 'file' => 'modules/help/help.admin.inc', -)) -->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;}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/help/block', - 'title' => 'block', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/help/help.admin.inc', -)) -->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;}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/help/color', - 'title' => 'color', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/help/help.admin.inc', -)) -->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;}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/help/comment', - 'title' => 'comment', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/help/help.admin.inc', -)) -->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;}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/help/dblog', - 'title' => 'dblog', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/help/help.admin.inc', -)) -->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;}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/help/filter', - 'title' => 'filter', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/help/help.admin.inc', -)) -->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;}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/help/help', - 'title' => 'help', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/help/help.admin.inc', -)) -->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;}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/help/menu', - 'title' => 'menu', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/help/help.admin.inc', -)) -->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;}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/help/node', - 'title' => 'node', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/help/help.admin.inc', -)) -->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;}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/help/path', - 'title' => 'path', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/help/help.admin.inc', -)) -->values(array( - 'path' => 'admin/help/poll', - '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;}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/help/poll', - 'title' => 'poll', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/help/help.admin.inc', -)) -->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;}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/help/system', - 'title' => 'system', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/help/help.admin.inc', -)) -->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;}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/help/taxonomy', - 'title' => 'taxonomy', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/help/help.admin.inc', -)) -->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;}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/help/update', - 'title' => 'update', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/help/help.admin.inc', -)) -->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;}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/help/user', - 'title' => 'user', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/help/help.admin.inc', -)) -->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:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'admin/reports', - 'title' => 'Reports', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'View reports from system logs and other status information.', - 'position' => 'left', - 'weight' => '5', - 'file' => 'modules/system/system.admin.inc', -)) -->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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/access-denied', - 'title' => "Top 'access denied' errors", - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => "View 'access denied' errors (403s).", - 'position' => '', - 'weight' => '0', - 'file' => 'modules/dblog/dblog.admin.inc', -)) -->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:{}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/dblog', - 'title' => 'Recent log entries', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'View events that have recently been logged.', - 'position' => '', - 'weight' => '-1', - 'file' => 'modules/dblog/dblog.admin.inc', -)) -->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;}', - 'fit' => '14', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/event/%', - 'title' => 'Details', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/dblog/dblog.admin.inc', -)) -->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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/page-not-found', - 'title' => "Top 'page not found' errors", - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => "View 'page not found' errors (404s).", - 'position' => '', - 'weight' => '0', - 'file' => 'modules/dblog/dblog.admin.inc', -)) -->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:{}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/status', - 'title' => 'Status report', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => "Get a status report about your site's operation and any detected problems.", - 'position' => '', - 'weight' => '10', - 'file' => 'modules/system/system.admin.inc', -)) -->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:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/status/php', - 'title' => 'PHP', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->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:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/status/run-cron', - 'title' => 'Run cron', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/reports/status/sql', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'system_sql', - 'page_arguments' => 'a:0:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/status/sql', - 'title' => 'SQL', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->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:{}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/updates', - 'title' => 'Available updates', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Get a status report about available updates for your installed modules and themes.', - 'position' => '', - 'weight' => '10', - 'file' => 'modules/update/update.report.inc', -)) -->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:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/reports/updates/check', - 'title' => 'Manual update check', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/update/update.fetch.inc', -)) -->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:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/reports/updates', - 'tab_root' => 'admin/reports/updates', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/update/update.report.inc', -)) -->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";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/reports/updates', - 'tab_root' => 'admin/reports/updates', - 'title' => 'Settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/update/update.settings.inc', -)) -->values(array( - 'path' => 'admin/settings', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}', - 'page_callback' => 'system_settings_overview', - 'page_arguments' => 'a:0:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'admin/settings', - 'title' => 'Site configuration', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Adjust basic site configuration options.', - 'position' => 'right', - 'weight' => '-5', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/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:{}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/actions', - 'title' => 'Actions', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Manage the actions defined for your site.', - 'position' => '', - 'weight' => '0', - 'file' => '', -)) -->values(array( - 'path' => 'admin/settings/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";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/actions/configure', - 'title' => 'Configure an advanced action', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => '', -)) -->values(array( - 'path' => 'admin/settings/actions/delete/%', - 'load_functions' => 'a:1:{i:4;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:4;}', - 'fit' => '30', - 'number_parts' => '5', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/actions/delete/%', - 'title' => 'Delete action', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => 'Delete an action.', - 'position' => '', - 'weight' => '0', - 'file' => '', -)) -->values(array( - 'path' => 'admin/settings/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:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/settings/actions', - 'tab_root' => 'admin/settings/actions', - 'title' => 'Manage actions', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => 'Manage the actions defined for your site.', - 'position' => '', - 'weight' => '-2', - 'file' => '', -)) -->values(array( - 'path' => 'admin/settings/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:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/actions/orphan', - 'title' => 'Remove orphans', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => '', -)) -->values(array( - 'path' => 'admin/settings/admin', - '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_admin_theme_settings";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/admin', - 'title' => 'Administration theme', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => 'system_admin_theme_settings', - 'description' => 'Settings for how your administrative pages should look.', - 'position' => 'left', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/clean-urls', - 'title' => 'Clean URLs', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Enable or disable clean URLs for your site.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/clean-urls/check', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'drupal_json', - 'page_arguments' => 'a:1:{i:0;a:1:{s:6:"status";b:1;}}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/clean-urls/check', - 'title' => 'Clean URL check', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => '', -)) -->values(array( - 'path' => 'admin/settings/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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/date-time', - 'title' => 'Date and time', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => "Settings for how Drupal displays date and time, as well as the system's default timezone.", - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/date-time/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:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/date-time/lookup', - 'title' => 'Date and time lookup', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/error-reporting', - '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:31:"system_error_reporting_settings";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/error-reporting', - 'title' => 'Error reporting', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/file-system', - 'title' => 'File system', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Tell Drupal where to store uploaded files and how they are accessed.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/filters', - '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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/filters', - 'title' => 'Input formats', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/filter/filter.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/filters/%', - 'load_functions' => 'a:1:{i:3;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:3;}', - 'fit' => '14', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/filters/%', - 'title' => '', - 'title_callback' => 'filter_admin_format_title', - 'title_arguments' => 'a:1:{i:0;i:3;}', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/filter/filter.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/filters/%/configure', - 'load_functions' => 'a:1:{i:3;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_configure_page', - 'page_arguments' => 'a:1:{i:0;i:3;}', - 'fit' => '29', - 'number_parts' => '5', - 'tab_parent' => 'admin/settings/filters/%', - 'tab_root' => 'admin/settings/filters/%', - 'title' => 'Configure', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '1', - 'file' => 'modules/filter/filter.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/filters/%/edit', - 'load_functions' => 'a:1:{i:3;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:3;}', - 'fit' => '29', - 'number_parts' => '5', - 'tab_parent' => 'admin/settings/filters/%', - 'tab_root' => 'admin/settings/filters/%', - 'title' => 'Edit', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/filter/filter.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/filters/%/order', - 'load_functions' => 'a:1:{i:3;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_order_page', - 'page_arguments' => 'a:1:{i:0;i:3;}', - 'fit' => '29', - 'number_parts' => '5', - 'tab_parent' => 'admin/settings/filters/%', - 'tab_root' => 'admin/settings/filters/%', - 'title' => 'Rearrange', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '2', - 'file' => 'modules/filter/filter.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/filters/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:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/settings/filters', - 'tab_root' => 'admin/settings/filters', - 'title' => 'Add input format', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '1', - 'file' => 'modules/filter/filter.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/filters/delete', - '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:19:"filter_admin_delete";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/filters/delete', - 'title' => 'Delete input format', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/filter/filter.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/filters/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";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/settings/filters', - 'tab_root' => 'admin/settings/filters', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/filter/filter.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/image-toolkit', - 'title' => 'Image toolkit', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Choose which image toolkit to use if you have installed optional toolkits.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/logging', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}', - 'page_callback' => 'system_logging_overview', - 'page_arguments' => 'a:0:{}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/logging', - 'title' => 'Logging and alerts', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => "Settings for logging and alerts modules. Various modules can route Drupal's system events to different destination, such as syslog, database, email, ...etc.", - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/logging/dblog', - '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:"dblog_admin_settings";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/logging/dblog', - 'title' => 'Database logging', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Settings for logging to the Drupal database logs. This is the most common method for small to medium sites on shared hosting. The logs are viewable from the admin pages.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/dblog/dblog.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/performance', - 'title' => 'Performance', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/site-information', - 'title' => 'Site information', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/settings/site-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:32:"system_site_maintenance_settings";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/settings/site-maintenance', - 'title' => 'Site maintenance', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Take the site off-line for maintenance or bring it back online.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/user', - '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:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'admin/user', - 'title' => 'User management', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => "Manage your site's users, groups and access to site features.", - 'position' => 'left', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'admin/user/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:15:"user_admin_perm";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/user/permissions', - 'title' => 'Permissions', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Determine access to features by selecting permissions for roles.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'admin/user/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:19:"user_admin_new_role";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/user/roles', - 'title' => 'Roles', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'List, edit, or add user roles.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'admin/user/roles/edit', - '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:15:"user_admin_role";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/user/roles/edit', - 'title' => 'Edit role', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'admin/user/rules', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}', - 'page_callback' => 'user_admin_access', - 'page_arguments' => 'a:0:{}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/user/rules', - 'title' => 'Access rules', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'List and create rules to disallow usernames, e-mail addresses, and IP addresses.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'admin/user/rules/add', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}', - 'page_callback' => 'user_admin_access_add', - 'page_arguments' => 'a:0:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/user/rules', - 'tab_root' => 'admin/user/rules', - 'title' => 'Add rule', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'admin/user/rules/check', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}', - 'page_callback' => 'user_admin_access_check', - 'page_arguments' => 'a:0:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/user/rules', - 'tab_root' => 'admin/user/rules', - 'title' => 'Check rules', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'admin/user/rules/delete', - '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:32:"user_admin_access_delete_confirm";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/user/rules/delete', - 'title' => 'Delete rule', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'admin/user/rules/edit', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}', - 'page_callback' => 'user_admin_access_edit', - 'page_arguments' => 'a:0:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => '', - 'tab_root' => 'admin/user/rules/edit', - 'title' => 'Edit rule', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'admin/user/rules/list', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}', - 'page_callback' => 'user_admin_access', - 'page_arguments' => 'a:0:{}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/user/rules', - 'tab_root' => 'admin/user/rules', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'admin/user/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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/user/settings', - 'title' => 'User settings', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'Configure default behavior of users, including registration requirements, e-mails, and user pictures.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'admin/user/user', - '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";}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'admin/user/user', - 'title' => 'Users', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'List, add, and edit users.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'admin/user/user/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";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/user/user', - 'tab_root' => 'admin/user/user', - 'title' => 'Add user', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'admin/user/user/list', - '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";}', - 'fit' => '15', - 'number_parts' => '4', - 'tab_parent' => 'admin/user/user', - 'tab_root' => 'admin/user/user', - 'title' => 'List', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'file' => 'modules/user/user.admin.inc', -)) -->values(array( - 'path' => 'batch', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'system_batch_page', - 'page_arguments' => 'a:0:{}', - 'fit' => '1', - 'number_parts' => '1', - 'tab_parent' => '', - 'tab_root' => 'batch', - 'title' => '', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/system/system.admin.inc', -)) -->values(array( - 'path' => 'comment/delete', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}', - 'page_callback' => 'comment_delete', - 'page_arguments' => 'a:0:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'comment/delete', - 'title' => 'Delete comment', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/comment/comment.admin.inc', -)) -->values(array( - 'path' => 'comment/edit', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:13:"post comments";}', - 'page_callback' => 'comment_edit', - 'page_arguments' => 'a:0:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'comment/edit', - 'title' => 'Edit comment', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/comment/comment.pages.inc', -)) -->values(array( - '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;}', - 'fit' => '6', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'comment/reply/%', - 'title' => 'Reply to comment', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/comment/comment.pages.inc', -)) -->values(array( - 'path' => 'filter/tips', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'filter_tips_long', - 'page_arguments' => 'a:0:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'filter/tips', - 'title' => 'Compose tips', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '20', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/filter/filter.pages.inc', -)) -->values(array( - 'path' => 'logout', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_is_logged_in', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'user_logout', - 'page_arguments' => 'a:0:{}', - 'fit' => '1', - 'number_parts' => '1', - 'tab_parent' => '', - 'tab_root' => 'logout', - 'title' => 'Log out', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '10', - 'file' => 'modules/user/user.pages.inc', -)) -->values(array( - '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:{}', - 'fit' => '1', - 'number_parts' => '1', - 'tab_parent' => '', - 'tab_root' => 'node', - 'title' => 'Content', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => '', -)) -->values(array( - '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;}', - 'fit' => '2', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'node/%', - 'title' => '', - 'title_callback' => 'node_page_title', - 'title_arguments' => 'a:1:{i:0;i:1;}', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - '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;}', - 'fit' => '5', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'node/%/delete', - 'title' => 'Delete', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '1', - 'file' => 'modules/node/node.pages.inc', -)) -->values(array( - '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;}', - 'fit' => '5', - 'number_parts' => '3', - 'tab_parent' => 'node/%', - 'tab_root' => 'node/%', - 'title' => 'Edit', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '1', - 'file' => 'modules/node/node.pages.inc', -)) -->values(array( - 'path' => 'node/%/results', - 'load_functions' => 'a:1:{i:1;s:9:"node_load";}', - 'to_arg_functions' => '', - 'access_callback' => '_poll_menu_access', - 'access_arguments' => 'a:3:{i:0;i:1;i:1;s:14:"access content";i:2;b:1;}', - 'page_callback' => 'poll_results', - 'page_arguments' => 'a:1:{i:0;i:1;}', - 'fit' => '5', - 'number_parts' => '3', - 'tab_parent' => 'node/%', - 'tab_root' => 'node/%', - 'title' => 'Results', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '3', - 'file' => 'modules/poll/poll.pages.inc', -)) -->values(array( - '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;}', - 'fit' => '5', - 'number_parts' => '3', - 'tab_parent' => 'node/%', - 'tab_root' => 'node/%', - 'title' => 'Revisions', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '2', - 'file' => 'modules/node/node.pages.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;}', - '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;}', - 'fit' => '21', - 'number_parts' => '5', - 'tab_parent' => '', - 'tab_root' => 'node/%/revisions/%/delete', - 'title' => 'Delete earlier revision', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/node.pages.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;}', - '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;}', - 'fit' => '21', - 'number_parts' => '5', - 'tab_parent' => '', - 'tab_root' => 'node/%/revisions/%/revert', - 'title' => 'Revert to earlier revision', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/node.pages.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;}', - 'to_arg_functions' => '', - 'access_callback' => '_node_revision_access', - 'access_arguments' => 'a:1:{i:0;i:1;}', - 'page_callback' => 'node_show', - 'page_arguments' => 'a:3:{i:0;i:1;i:1;N;i:2;b:1;}', - 'fit' => '21', - 'number_parts' => '5', - 'tab_parent' => '', - 'tab_root' => 'node/%/revisions/%/view', - 'title' => 'Revisions', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => '', -)) -->values(array( - '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;}', - 'fit' => '5', - 'number_parts' => '3', - 'tab_parent' => 'node/%', - 'tab_root' => 'node/%', - 'title' => 'View', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'file' => '', -)) -->values(array( - 'path' => 'node/%/votes', - 'load_functions' => 'a:1:{i:1;s:9:"node_load";}', - 'to_arg_functions' => '', - 'access_callback' => '_poll_menu_access', - 'access_arguments' => 'a:3:{i:0;i:1;i:1;s:17:"inspect all votes";i:2;b:0;}', - 'page_callback' => 'poll_votes', - 'page_arguments' => 'a:1:{i:0;i:1;}', - 'fit' => '5', - 'number_parts' => '3', - 'tab_parent' => 'node/%', - 'tab_root' => 'node/%', - 'title' => 'Votes', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '3', - 'file' => 'modules/poll/poll.pages.inc', -)) -->values(array( - '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:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'node/add', - 'title' => 'Create content', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '1', - 'file' => 'modules/node/node.pages.inc', -)) -->values(array( - '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;i:2;}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'node/add/page', - 'title' => 'Page', - 'title_callback' => 'check_plain', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => "A page, similar in form to a story, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a page entry does not allow visitor comments and is not featured on the site's initial home page.", - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/node.pages.inc', -)) -->values(array( - 'path' => 'node/add/poll', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'node_access', - 'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:4:"poll";}', - 'page_callback' => 'node_add', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'node/add/poll', - 'title' => 'Poll', - 'title_callback' => 'check_plain', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => 'A poll is a question with a set of possible responses. A poll, once created, automatically provides a simple running count of the number of votes received for each response.', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/node.pages.inc', -)) -->values(array( - 'path' => 'node/add/story', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'node_access', - 'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:5:"story";}', - 'page_callback' => 'node_add', - 'page_arguments' => 'a:1:{i:0;i:2;}', - 'fit' => '7', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'node/add/story', - 'title' => 'Story', - 'title_callback' => 'check_plain', - 'title_arguments' => '', - 'type' => '6', - 'block_callback' => '', - 'description' => "A story, similar in form to a page, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a story entry. By default, a story entry is automatically featured on the site's initial home page, and provides the ability to post comments.", - 'position' => '', - 'weight' => '0', - 'file' => 'modules/node/node.pages.inc', -)) -->values(array( - 'path' => 'poll', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'poll_page', - 'page_arguments' => 'a:0:{}', - 'fit' => '1', - 'number_parts' => '1', - 'tab_parent' => '', - 'tab_root' => 'poll', - 'title' => 'Polls', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '20', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/poll/poll.pages.inc', -)) -->values(array( - 'path' => 'poll/js', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_access', - 'access_arguments' => 'a:1:{i:0;s:14:"access content";}', - 'page_callback' => 'poll_choice_js', - 'page_arguments' => 'a:0:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'poll/js', - 'title' => 'Javascript Choice Form', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => '', -)) -->values(array( - '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:0:{}', - 'fit' => '1', - 'number_parts' => '1', - 'tab_parent' => '', - 'tab_root' => 'rss.xml', - 'title' => 'RSS feed', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => '', -)) -->values(array( - 'path' => 'system/files', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'file_download', - 'page_arguments' => 'a:0:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'system/files', - 'title' => 'File download', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => '', -)) -->values(array( - '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:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'taxonomy/autocomplete', - 'title' => 'Autocomplete taxonomy', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/taxonomy/taxonomy.pages.inc', -)) -->values(array( - 'path' => 'taxonomy/term/%', - 'load_functions' => 'a:1:{i:2;N;}', - '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;}', - 'fit' => '6', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'taxonomy/term/%', - 'title' => 'Taxonomy term', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/taxonomy/taxonomy.pages.inc', -)) -->values(array( - 'path' => 'user', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => '1', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'user_page', - 'page_arguments' => 'a:0:{}', - 'fit' => '1', - 'number_parts' => '1', - 'tab_parent' => '', - 'tab_root' => 'user', - 'title' => 'User account', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.pages.inc', -)) -->values(array( - 'path' => 'user/%', - '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' => 'user_view_access', - 'access_arguments' => 'a:1:{i:0;i:1;}', - 'page_callback' => 'user_view', - 'page_arguments' => 'a:1:{i:0;i:1;}', - 'fit' => '2', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'user/%', - 'title' => 'My account', - 'title_callback' => 'user_page_title', - 'title_arguments' => 'a:1:{i:0;i:1;}', - 'type' => '6', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.pages.inc', -)) -->values(array( - 'path' => 'user/%/delete', - 'load_functions' => 'a:1:{i:1;s:9:"user_load";}', - '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:2:{i:0;s:19:"user_confirm_delete";i:1;i:1;}', - 'fit' => '5', - 'number_parts' => '3', - 'tab_parent' => '', - 'tab_root' => 'user/%/delete', - 'title' => 'Delete', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.pages.inc', -)) -->values(array( - 'path' => 'user/%/edit', - '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' => 'user_edit', - 'page_arguments' => 'a:1:{i:0;i:1;}', - 'fit' => '5', - 'number_parts' => '3', - 'tab_parent' => 'user/%', - 'tab_root' => 'user/%', - 'title' => 'Edit', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - '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' => 'user_edit', - 'page_arguments' => 'a:1:{i:0;i:1;}', - 'fit' => '11', - 'number_parts' => '4', - 'tab_parent' => 'user/%/edit', - 'tab_root' => 'user/%', - 'title' => 'Account', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.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_arguments' => 'a:1:{i:0;i:1;}', - 'fit' => '5', - 'number_parts' => '3', - 'tab_parent' => 'user/%', - 'tab_root' => 'user/%', - 'title' => 'View', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '-10', - 'file' => 'modules/user/user.pages.inc', -)) -->values(array( - '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:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => '', - 'tab_root' => 'user/autocomplete', - 'title' => 'User autocomplete', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.pages.inc', -)) -->values(array( - '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:{}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => 'user', - 'tab_root' => 'user', - 'title' => 'Log in', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '136', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.pages.inc', -)) -->values(array( - 'path' => 'user/password', - 'load_functions' => '', - 'to_arg_functions' => '', - 'access_callback' => 'user_is_anonymous', - 'access_arguments' => 'a:0:{}', - 'page_callback' => 'drupal_get_form', - 'page_arguments' => 'a:1:{i:0;s:9:"user_pass";}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => 'user', - 'tab_root' => 'user', - 'title' => 'Request new password', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.pages.inc', -)) -->values(array( - '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:13:"user_register";}', - 'fit' => '3', - 'number_parts' => '2', - 'tab_parent' => 'user', - 'tab_root' => 'user', - 'title' => 'Create new account', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '128', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.pages.inc', -)) -->values(array( - '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;}', - 'fit' => '24', - 'number_parts' => '5', - 'tab_parent' => '', - 'tab_root' => 'user/reset/%/%/%', - 'title' => 'Reset password', - 'title_callback' => 't', - 'title_arguments' => '', - 'type' => '4', - 'block_callback' => '', - 'description' => '', - 'position' => '', - 'weight' => '0', - 'file' => 'modules/user/user.pages.inc', -)) -->execute(); - -db_create_table('node', array( - 'fields' => array( - 'nid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'vid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'type' => array( - 'type' => 'varchar', - 'length' => 32, - 'not null' => TRUE, - 'default' => '', - ), - 'language' => array( - 'type' => 'varchar', - 'length' => 12, - 'not null' => TRUE, - 'default' => '', - ), - 'title' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'uid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'status' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 1, - ), - 'created' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'changed' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'comment' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'promote' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'moderate' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'sticky' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'tnid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'translate' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'node_changed' => array( - 'changed', - ), - 'node_created' => array( - 'created', - ), - 'node_moderate' => array( - 'moderate', - ), - 'node_promote_status' => array( - 'promote', - 'status', - ), - 'node_status_type' => array( - 'status', - 'type', - 'nid', - ), - 'node_title_type' => array( - 'title', - array( - 'type', - 4, - ), - ), - 'node_type' => array( - array( - 'type', - 4, - ), - ), - 'uid' => array( - 'uid', - ), - 'tnid' => array( - 'tnid', - ), - 'translate' => array( - 'translate', - ), - ), - 'unique keys' => array( - 'vid' => array( - 'vid', - ), - ), - 'primary key' => array( - 'nid', - ), - 'module' => 'node', - 'name' => 'node', -)); -db_insert('node')->fields(array( - 'nid', - 'vid', - 'type', - 'language', - 'title', - 'uid', - 'status', - 'created', - 'changed', - 'comment', - 'promote', - 'moderate', - 'sticky', - 'tnid', - 'translate', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'type' => 'page', - 'language' => '', - 'title' => 'node title 1 rev 1 (i=0) rev2 2', - 'uid' => '3', - 'status' => '0', - 'created' => '1262732400', - 'changed' => '1282936266', - 'comment' => '0', - 'promote' => '0', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'type' => 'page', - 'language' => '', - 'title' => 'node title 2 rev 3 (i=1) rev2 4', - 'uid' => '3', - 'status' => '0', - 'created' => '1262818800', - 'changed' => '1282936266', - 'comment' => '0', - 'promote' => '1', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'type' => 'page', - 'language' => '', - 'title' => 'node title 3 rev 5 (i=2) rev2 6', - 'uid' => '3', - 'status' => '0', - 'created' => '1262905200', - 'changed' => '1282936266', - 'comment' => '0', - 'promote' => '0', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'type' => 'page', - 'language' => '', - 'title' => 'node title 4 rev 7 (i=3) rev2 8', - 'uid' => '3', - 'status' => '0', - 'created' => '1262991600', - 'changed' => '1282936266', - 'comment' => '0', - 'promote' => '1', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'type' => 'page', - 'language' => '', - 'title' => 'node title 5 rev 9 (i=4) rev2 10', - 'uid' => '3', - 'status' => '1', - 'created' => '1263078000', - 'changed' => '1282936266', - 'comment' => '0', - 'promote' => '0', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'type' => 'page', - 'language' => '', - 'title' => 'node title 6 rev 11 (i=5) rev2 12', - 'uid' => '3', - 'status' => '1', - 'created' => '1263164400', - 'changed' => '1282936266', - 'comment' => '0', - 'promote' => '1', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'type' => 'page', - 'language' => '', - 'title' => 'node title 7 rev 13 (i=6) rev2 14', - 'uid' => '3', - 'status' => '1', - 'created' => '1263250800', - 'changed' => '1282936266', - 'comment' => '0', - 'promote' => '0', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'type' => 'page', - 'language' => '', - 'title' => 'node title 8 rev 15 (i=7) rev2 16', - 'uid' => '3', - 'status' => '1', - 'created' => '1263337200', - 'changed' => '1282936266', - 'comment' => '0', - 'promote' => '1', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'type' => 'page', - 'language' => '', - 'title' => 'node title 9 rev 17 (i=8) rev2 18', - 'uid' => '4', - 'status' => '0', - 'created' => '1263423600', - 'changed' => '1282936266', - 'comment' => '0', - 'promote' => '0', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'type' => 'page', - 'language' => '', - 'title' => 'node title 10 rev 19 (i=9) rev2 20', - 'uid' => '4', - 'status' => '0', - 'created' => '1263510000', - 'changed' => '1282936266', - 'comment' => '0', - 'promote' => '1', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'type' => 'page', - 'language' => '', - 'title' => 'node title 11 rev 21 (i=10) rev2 22', - 'uid' => '4', - 'status' => '0', - 'created' => '1263596400', - 'changed' => '1282936267', - 'comment' => '0', - 'promote' => '0', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'type' => 'page', - 'language' => '', - 'title' => 'node title 12 rev 23 (i=11) rev2 24', - 'uid' => '4', - 'status' => '0', - 'created' => '1263682800', - 'changed' => '1282936267', - 'comment' => '0', - 'promote' => '1', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'type' => 'story', - 'language' => '', - 'title' => 'node title 13 rev 25 (i=12)', - 'uid' => '4', - 'status' => '1', - 'created' => '1263769200', - 'changed' => '1282936267', - 'comment' => '0', - 'promote' => '0', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'type' => 'story', - 'language' => '', - 'title' => 'node title 14 rev 26 (i=13)', - 'uid' => '4', - 'status' => '1', - 'created' => '1263855600', - 'changed' => '1282936267', - 'comment' => '0', - 'promote' => '1', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'type' => 'story', - 'language' => '', - 'title' => 'node title 15 rev 27 (i=14)', - 'uid' => '4', - 'status' => '1', - 'created' => '1263942000', - 'changed' => '1282936267', - 'comment' => '0', - 'promote' => '0', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'type' => 'story', - 'language' => '', - 'title' => 'node title 16 rev 28 (i=15)', - 'uid' => '4', - 'status' => '1', - 'created' => '1264028400', - 'changed' => '1282936267', - 'comment' => '0', - 'promote' => '1', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'type' => 'story', - 'language' => '', - 'title' => 'node title 17 rev 29 (i=16)', - 'uid' => '5', - 'status' => '0', - 'created' => '1264114800', - 'changed' => '1282936267', - 'comment' => '0', - 'promote' => '0', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'type' => 'story', - 'language' => '', - 'title' => 'node title 18 rev 30 (i=17)', - 'uid' => '5', - 'status' => '0', - 'created' => '1264201200', - 'changed' => '1282936267', - 'comment' => '0', - 'promote' => '1', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'type' => 'story', - 'language' => '', - 'title' => 'node title 19 rev 31 (i=18)', - 'uid' => '5', - 'status' => '0', - 'created' => '1264287600', - 'changed' => '1282936267', - 'comment' => '0', - 'promote' => '0', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'type' => 'story', - 'language' => '', - 'title' => 'node title 20 rev 32 (i=19)', - 'uid' => '5', - 'status' => '0', - 'created' => '1264374000', - 'changed' => '1282936267', - 'comment' => '0', - 'promote' => '1', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'type' => 'story', - 'language' => '', - 'title' => 'node title 21 rev 33 (i=20)', - 'uid' => '5', - 'status' => '1', - 'created' => '1264460400', - 'changed' => '1282936267', - 'comment' => '0', - 'promote' => '0', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'type' => 'story', - 'language' => '', - 'title' => 'node title 22 rev 34 (i=21)', - 'uid' => '5', - 'status' => '1', - 'created' => '1264546800', - 'changed' => '1282936267', - 'comment' => '0', - 'promote' => '1', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'type' => 'story', - 'language' => '', - 'title' => 'node title 23 rev 35 (i=22)', - 'uid' => '5', - 'status' => '1', - 'created' => '1264633200', - 'changed' => '1282936267', - 'comment' => '0', - 'promote' => '0', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'type' => 'story', - 'language' => '', - 'title' => 'node title 24 rev 36 (i=23)', - 'uid' => '5', - 'status' => '1', - 'created' => '1264719600', - 'changed' => '1282936267', - 'comment' => '0', - 'promote' => '1', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '25', - 'vid' => '37', - 'type' => 'poll', - 'language' => '', - 'title' => 'poll title 0', - 'uid' => '3', - 'status' => '0', - 'created' => '1262732400', - 'changed' => '1282936268', - 'comment' => '0', - 'promote' => '0', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '26', - 'vid' => '38', - 'type' => 'poll', - 'language' => '', - 'title' => 'poll title 1', - 'uid' => '3', - 'status' => '0', - 'created' => '1262775600', - 'changed' => '1282936268', - 'comment' => '0', - 'promote' => '1', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '27', - 'vid' => '39', - 'type' => 'poll', - 'language' => '', - 'title' => 'poll title 2', - 'uid' => '3', - 'status' => '1', - 'created' => '1262818800', - 'changed' => '1282936268', - 'comment' => '0', - 'promote' => '0', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '28', - 'vid' => '40', - 'type' => 'poll', - 'language' => '', - 'title' => 'poll title 3', - 'uid' => '3', - 'status' => '1', - 'created' => '1262862000', - 'changed' => '1282936268', - 'comment' => '0', - 'promote' => '1', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '29', - 'vid' => '41', - 'type' => 'poll', - 'language' => '', - 'title' => 'poll title 4', - 'uid' => '4', - 'status' => '0', - 'created' => '1262905200', - 'changed' => '1282936268', - 'comment' => '0', - 'promote' => '0', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '30', - 'vid' => '42', - 'type' => 'poll', - 'language' => '', - 'title' => 'poll title 5', - 'uid' => '4', - 'status' => '0', - 'created' => '1262948400', - 'changed' => '1282936268', - 'comment' => '0', - 'promote' => '1', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '31', - 'vid' => '43', - 'type' => 'poll', - 'language' => '', - 'title' => 'poll title 6', - 'uid' => '4', - 'status' => '1', - 'created' => '1262991600', - 'changed' => '1282936268', - 'comment' => '0', - 'promote' => '0', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '32', - 'vid' => '44', - 'type' => 'poll', - 'language' => '', - 'title' => 'poll title 7', - 'uid' => '4', - 'status' => '1', - 'created' => '1263034800', - 'changed' => '1282936268', - 'comment' => '0', - 'promote' => '1', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '33', - 'vid' => '45', - 'type' => 'poll', - 'language' => '', - 'title' => 'poll title 8', - 'uid' => '5', - 'status' => '0', - 'created' => '1263078000', - 'changed' => '1282936268', - 'comment' => '0', - 'promote' => '0', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '34', - 'vid' => '46', - 'type' => 'poll', - 'language' => '', - 'title' => 'poll title 9', - 'uid' => '5', - 'status' => '0', - 'created' => '1263121200', - 'changed' => '1282936268', - 'comment' => '0', - 'promote' => '1', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '35', - 'vid' => '47', - 'type' => 'poll', - 'language' => '', - 'title' => 'poll title 10', - 'uid' => '5', - 'status' => '1', - 'created' => '1263164400', - 'changed' => '1282936268', - 'comment' => '0', - 'promote' => '0', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '36', - 'vid' => '48', - 'type' => 'poll', - 'language' => '', - 'title' => 'poll title 11', - 'uid' => '5', - 'status' => '1', - 'created' => '1263207600', - 'changed' => '1282936268', - 'comment' => '0', - 'promote' => '1', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '37', - 'vid' => '49', - 'type' => 'broken', - 'language' => '', - 'title' => 'node title 24', - 'uid' => '6', - 'status' => '1', - 'created' => '1263769200', - 'changed' => '1279310614', - 'comment' => '0', - 'promote' => '0', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->execute(); - -db_create_table('node_access', array( - 'fields' => array( - 'nid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'gid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'realm' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'grant_view' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'grant_update' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'grant_delete' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - ), - 'primary key' => array( - 'nid', - 'gid', - 'realm', - ), - 'module' => 'node', - 'name' => 'node_access', -)); -db_insert('node_access')->fields(array( - 'nid', - 'gid', - 'realm', - 'grant_view', - 'grant_update', - 'grant_delete', -)) -->values(array( - 'nid' => '0', - 'gid' => '0', - 'realm' => 'all', - 'grant_view' => '1', - 'grant_update' => '0', - 'grant_delete' => '0', -)) -->execute(); - -db_create_table('node_comment_statistics', array( - 'fields' => array( - 'nid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'last_comment_timestamp' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'last_comment_name' => array( - 'type' => 'varchar', - 'length' => 60, - 'not null' => FALSE, - ), - 'last_comment_uid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'comment_count' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'primary key' => array( - 'nid', - ), - 'indexes' => array( - 'node_comment_timestamp' => array( - 'last_comment_timestamp', - ), - ), - 'module' => 'comment', - 'name' => 'node_comment_statistics', -)); -db_insert('node_comment_statistics')->fields(array( - 'nid', - 'last_comment_timestamp', - 'last_comment_name', - 'last_comment_uid', - 'comment_count', -)) -->values(array( - 'nid' => '1', - 'last_comment_timestamp' => '1282936266', - 'last_comment_name' => NULL, - 'last_comment_uid' => '3', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '2', - 'last_comment_timestamp' => '1282936266', - 'last_comment_name' => NULL, - 'last_comment_uid' => '3', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '3', - 'last_comment_timestamp' => '1282936266', - 'last_comment_name' => NULL, - 'last_comment_uid' => '3', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '4', - 'last_comment_timestamp' => '1282936266', - 'last_comment_name' => NULL, - 'last_comment_uid' => '3', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '5', - 'last_comment_timestamp' => '1282936266', - 'last_comment_name' => NULL, - 'last_comment_uid' => '3', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '6', - 'last_comment_timestamp' => '1282936266', - 'last_comment_name' => NULL, - 'last_comment_uid' => '3', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '7', - 'last_comment_timestamp' => '1282936266', - 'last_comment_name' => NULL, - 'last_comment_uid' => '3', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '8', - 'last_comment_timestamp' => '1282936266', - 'last_comment_name' => NULL, - 'last_comment_uid' => '3', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '9', - 'last_comment_timestamp' => '1282936266', - 'last_comment_name' => NULL, - 'last_comment_uid' => '4', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '10', - 'last_comment_timestamp' => '1282936266', - 'last_comment_name' => NULL, - 'last_comment_uid' => '4', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '11', - 'last_comment_timestamp' => '1282936267', - 'last_comment_name' => NULL, - 'last_comment_uid' => '4', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '12', - 'last_comment_timestamp' => '1282936267', - 'last_comment_name' => NULL, - 'last_comment_uid' => '4', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '13', - 'last_comment_timestamp' => '1282936267', - 'last_comment_name' => NULL, - 'last_comment_uid' => '4', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '14', - 'last_comment_timestamp' => '1282936267', - 'last_comment_name' => NULL, - 'last_comment_uid' => '4', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '15', - 'last_comment_timestamp' => '1282936267', - 'last_comment_name' => NULL, - 'last_comment_uid' => '4', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '16', - 'last_comment_timestamp' => '1282936267', - 'last_comment_name' => NULL, - 'last_comment_uid' => '4', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '17', - 'last_comment_timestamp' => '1282936267', - 'last_comment_name' => NULL, - 'last_comment_uid' => '5', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '18', - 'last_comment_timestamp' => '1282936267', - 'last_comment_name' => NULL, - 'last_comment_uid' => '5', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '19', - 'last_comment_timestamp' => '1282936267', - 'last_comment_name' => NULL, - 'last_comment_uid' => '5', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '20', - 'last_comment_timestamp' => '1282936267', - 'last_comment_name' => NULL, - 'last_comment_uid' => '5', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '21', - 'last_comment_timestamp' => '1282936267', - 'last_comment_name' => NULL, - 'last_comment_uid' => '5', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '22', - 'last_comment_timestamp' => '1282936267', - 'last_comment_name' => NULL, - 'last_comment_uid' => '5', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '23', - 'last_comment_timestamp' => '1282936267', - 'last_comment_name' => NULL, - 'last_comment_uid' => '5', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '24', - 'last_comment_timestamp' => '1282936267', - 'last_comment_name' => NULL, - 'last_comment_uid' => '5', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '25', - 'last_comment_timestamp' => '1282936268', - 'last_comment_name' => NULL, - 'last_comment_uid' => '3', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '26', - 'last_comment_timestamp' => '1282936268', - 'last_comment_name' => NULL, - 'last_comment_uid' => '3', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '27', - 'last_comment_timestamp' => '1282936268', - 'last_comment_name' => NULL, - 'last_comment_uid' => '3', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '28', - 'last_comment_timestamp' => '1282936268', - 'last_comment_name' => NULL, - 'last_comment_uid' => '3', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '29', - 'last_comment_timestamp' => '1282936268', - 'last_comment_name' => NULL, - 'last_comment_uid' => '4', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '30', - 'last_comment_timestamp' => '1282936268', - 'last_comment_name' => NULL, - 'last_comment_uid' => '4', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '31', - 'last_comment_timestamp' => '1282936268', - 'last_comment_name' => NULL, - 'last_comment_uid' => '4', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '32', - 'last_comment_timestamp' => '1282936268', - 'last_comment_name' => NULL, - 'last_comment_uid' => '4', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '33', - 'last_comment_timestamp' => '1282936268', - 'last_comment_name' => NULL, - 'last_comment_uid' => '5', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '34', - 'last_comment_timestamp' => '1282936268', - 'last_comment_name' => NULL, - 'last_comment_uid' => '5', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '35', - 'last_comment_timestamp' => '1282936268', - 'last_comment_name' => NULL, - 'last_comment_uid' => '5', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '36', - 'last_comment_timestamp' => '1282936268', - 'last_comment_name' => NULL, - 'last_comment_uid' => '5', - 'comment_count' => '0', -)) -->values(array( - 'nid' => '37', - 'last_comment_timestamp' => '1279310615', - 'last_comment_name' => NULL, - 'last_comment_uid' => '6', - 'comment_count' => '0', -)) -->execute(); - -db_create_table('node_counter', array( - 'fields' => array( - 'nid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'totalcount' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - 'size' => 'big', - ), - 'daycount' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - 'size' => 'medium', - ), - 'timestamp' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'primary key' => array( - 'nid', - ), - 'module' => 'node', - 'name' => 'node_counter', -)); - -db_create_table('node_revisions', array( - 'fields' => array( - 'nid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'vid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'uid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'title' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'body' => array( - 'type' => 'text', - 'not null' => TRUE, - 'size' => 'big', - ), - 'teaser' => array( - 'type' => 'text', - 'not null' => TRUE, - 'size' => 'big', - ), - 'log' => array( - 'type' => 'text', - 'not null' => TRUE, - 'size' => 'big', - ), - 'timestamp' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'format' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'nid' => array( - 'nid', - ), - 'uid' => array( - 'uid', - ), - ), - 'primary key' => array( - 'vid', - ), - 'module' => 'node', - 'name' => 'node_revisions', -)); -db_insert('node_revisions')->fields(array( - 'nid', - 'vid', - 'uid', - 'title', - 'body', - 'teaser', - 'log', - 'timestamp', - 'format', -)) -->values(array( - 'nid' => '1', - 'vid' => '1', - 'uid' => '3', - 'title' => 'node title 1 rev 1 (i=0)', - 'body' => 'node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0', - 'teaser' => 'node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0', - 'log' => 'added 0 node', - 'timestamp' => '1282936266', - 'format' => '0', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'uid' => '6', - 'title' => 'node title 1 rev 1 (i=0) rev2 2', - 'body' => 'node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0node revision body (page) - 0', - 'teaser' => 'node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0node body (page) - 0', - 'log' => 'added 0 revision', - 'timestamp' => '1282936266', - 'format' => '0', -)) -->values(array( - 'nid' => '2', - 'vid' => '3', - 'uid' => '3', - 'title' => 'node title 2 rev 3 (i=1)', - 'body' => 'node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1', - 'teaser' => 'node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1', - 'log' => 'added 1 node', - 'timestamp' => '1282936266', - 'format' => '0', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'uid' => '6', - 'title' => 'node title 2 rev 3 (i=1) rev2 4', - 'body' => 'node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1node revision body (page) - 1', - 'teaser' => 'node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1node body (page) - 1', - 'log' => 'added 1 revision', - 'timestamp' => '1282936266', - 'format' => '0', -)) -->values(array( - 'nid' => '3', - 'vid' => '5', - 'uid' => '3', - 'title' => 'node title 3 rev 5 (i=2)', - 'body' => 'node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2', - 'teaser' => 'node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2', - 'log' => 'added 2 node', - 'timestamp' => '1282936266', - 'format' => '0', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'uid' => '6', - 'title' => 'node title 3 rev 5 (i=2) rev2 6', - 'body' => 'node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2node revision body (page) - 2', - 'teaser' => 'node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2node body (page) - 2', - 'log' => 'added 2 revision', - 'timestamp' => '1282936266', - 'format' => '0', -)) -->values(array( - 'nid' => '4', - 'vid' => '7', - 'uid' => '3', - 'title' => 'node title 4 rev 7 (i=3)', - 'body' => 'node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3', - 'teaser' => 'node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3', - 'log' => 'added 3 node', - 'timestamp' => '1282936266', - 'format' => '0', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'uid' => '6', - 'title' => 'node title 4 rev 7 (i=3) rev2 8', - 'body' => 'node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3node revision body (page) - 3', - 'teaser' => 'node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3node body (page) - 3', - 'log' => 'added 3 revision', - 'timestamp' => '1282936266', - 'format' => '0', -)) -->values(array( - 'nid' => '5', - 'vid' => '9', - 'uid' => '3', - 'title' => 'node title 5 rev 9 (i=4)', - 'body' => 'node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4', - 'teaser' => 'node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4', - 'log' => 'added 4 node', - 'timestamp' => '1282936266', - 'format' => '0', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'uid' => '6', - 'title' => 'node title 5 rev 9 (i=4) rev2 10', - 'body' => 'node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4node revision body (page) - 4', - 'teaser' => 'node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4node body (page) - 4', - 'log' => 'added 4 revision', - 'timestamp' => '1282936266', - 'format' => '0', -)) -->values(array( - 'nid' => '6', - 'vid' => '11', - 'uid' => '3', - 'title' => 'node title 6 rev 11 (i=5)', - 'body' => 'node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5', - 'teaser' => 'node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5', - 'log' => 'added 5 node', - 'timestamp' => '1282936266', - 'format' => '0', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'uid' => '6', - 'title' => 'node title 6 rev 11 (i=5) rev2 12', - 'body' => 'node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5node revision body (page) - 5', - 'teaser' => 'node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5node body (page) - 5', - 'log' => 'added 5 revision', - 'timestamp' => '1282936266', - 'format' => '0', -)) -->values(array( - 'nid' => '7', - 'vid' => '13', - 'uid' => '3', - 'title' => 'node title 7 rev 13 (i=6)', - 'body' => 'node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6', - 'teaser' => 'node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6', - 'log' => 'added 6 node', - 'timestamp' => '1282936266', - 'format' => '0', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'uid' => '6', - 'title' => 'node title 7 rev 13 (i=6) rev2 14', - 'body' => 'node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6node revision body (page) - 6', - 'teaser' => 'node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6node body (page) - 6', - 'log' => 'added 6 revision', - 'timestamp' => '1282936266', - 'format' => '0', -)) -->values(array( - 'nid' => '8', - 'vid' => '15', - 'uid' => '3', - 'title' => 'node title 8 rev 15 (i=7)', - 'body' => 'node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7', - 'teaser' => 'node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7', - 'log' => 'added 7 node', - 'timestamp' => '1282936266', - 'format' => '0', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'uid' => '6', - 'title' => 'node title 8 rev 15 (i=7) rev2 16', - 'body' => 'node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7node revision body (page) - 7', - 'teaser' => 'node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7node body (page) - 7', - 'log' => 'added 7 revision', - 'timestamp' => '1282936266', - 'format' => '0', -)) -->values(array( - 'nid' => '9', - 'vid' => '17', - 'uid' => '4', - 'title' => 'node title 9 rev 17 (i=8)', - 'body' => 'node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8', - 'teaser' => 'node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8', - 'log' => 'added 8 node', - 'timestamp' => '1282936266', - 'format' => '0', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'uid' => '7', - 'title' => 'node title 9 rev 17 (i=8) rev2 18', - 'body' => 'node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8node revision body (page) - 8', - 'teaser' => 'node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8node body (page) - 8', - 'log' => 'added 8 revision', - 'timestamp' => '1282936266', - 'format' => '0', -)) -->values(array( - 'nid' => '10', - 'vid' => '19', - 'uid' => '4', - 'title' => 'node title 10 rev 19 (i=9)', - 'body' => 'node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9', - 'teaser' => 'node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9', - 'log' => 'added 9 node', - 'timestamp' => '1282936266', - 'format' => '0', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'uid' => '7', - 'title' => 'node title 10 rev 19 (i=9) rev2 20', - 'body' => 'node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9node revision body (page) - 9', - 'teaser' => 'node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9node body (page) - 9', - 'log' => 'added 9 revision', - 'timestamp' => '1282936266', - 'format' => '0', -)) -->values(array( - 'nid' => '11', - 'vid' => '21', - 'uid' => '4', - 'title' => 'node title 11 rev 21 (i=10)', - 'body' => 'node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10', - 'teaser' => 'node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (p', - 'log' => 'added 10 node', - 'timestamp' => '1282936267', - 'format' => '0', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'uid' => '7', - 'title' => 'node title 11 rev 21 (i=10) rev2 22', - 'body' => 'node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10node revision body (page) - 10', - 'teaser' => 'node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (page) - 10node body (p', - 'log' => 'added 10 revision', - 'timestamp' => '1282936267', - 'format' => '0', -)) -->values(array( - 'nid' => '12', - 'vid' => '23', - 'uid' => '4', - 'title' => 'node title 12 rev 23 (i=11)', - 'body' => 'node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11', - 'teaser' => 'node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (p', - 'log' => 'added 11 node', - 'timestamp' => '1282936267', - 'format' => '0', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'uid' => '7', - 'title' => 'node title 12 rev 23 (i=11) rev2 24', - 'body' => 'node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11node revision body (page) - 11', - 'teaser' => 'node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (page) - 11node body (p', - 'log' => 'added 11 revision', - 'timestamp' => '1282936267', - 'format' => '0', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'uid' => '4', - 'title' => 'node title 13 rev 25 (i=12)', - 'body' => 'node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12', - 'teaser' => 'node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node body (story) - 12node b', - 'log' => 'added 12 node', - 'timestamp' => '1282936267', - 'format' => '0', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'uid' => '4', - 'title' => 'node title 14 rev 26 (i=13)', - 'body' => 'node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13', - 'teaser' => 'node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node body (story) - 13node b', - 'log' => 'added 13 node', - 'timestamp' => '1282936267', - 'format' => '0', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'uid' => '4', - 'title' => 'node title 15 rev 27 (i=14)', - 'body' => 'node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14', - 'teaser' => 'node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node body (story) - 14node b', - 'log' => 'added 14 node', - 'timestamp' => '1282936267', - 'format' => '0', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'uid' => '4', - 'title' => 'node title 16 rev 28 (i=15)', - 'body' => 'node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15', - 'teaser' => 'node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node body (story) - 15node b', - 'log' => 'added 15 node', - 'timestamp' => '1282936267', - 'format' => '0', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'uid' => '5', - 'title' => 'node title 17 rev 29 (i=16)', - 'body' => 'node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16', - 'teaser' => 'node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node body (story) - 16node b', - 'log' => 'added 16 node', - 'timestamp' => '1282936267', - 'format' => '0', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'uid' => '5', - 'title' => 'node title 18 rev 30 (i=17)', - 'body' => 'node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17', - 'teaser' => 'node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node body (story) - 17node b', - 'log' => 'added 17 node', - 'timestamp' => '1282936267', - 'format' => '0', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'uid' => '5', - 'title' => 'node title 19 rev 31 (i=18)', - 'body' => 'node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18', - 'teaser' => 'node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node body (story) - 18node b', - 'log' => 'added 18 node', - 'timestamp' => '1282936267', - 'format' => '0', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'uid' => '5', - 'title' => 'node title 20 rev 32 (i=19)', - 'body' => 'node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19', - 'teaser' => 'node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node body (story) - 19node b', - 'log' => 'added 19 node', - 'timestamp' => '1282936267', - 'format' => '0', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'uid' => '5', - 'title' => 'node title 21 rev 33 (i=20)', - 'body' => 'node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20', - 'teaser' => 'node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node body (story) - 20node b', - 'log' => 'added 20 node', - 'timestamp' => '1282936267', - 'format' => '0', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'uid' => '5', - 'title' => 'node title 22 rev 34 (i=21)', - 'body' => 'node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21', - 'teaser' => 'node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node body (story) - 21node b', - 'log' => 'added 21 node', - 'timestamp' => '1282936267', - 'format' => '0', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'uid' => '5', - 'title' => 'node title 23 rev 35 (i=22)', - 'body' => 'node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22', - 'teaser' => 'node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node body (story) - 22node b', - 'log' => 'added 22 node', - 'timestamp' => '1282936267', - 'format' => '0', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'uid' => '5', - 'title' => 'node title 24 rev 36 (i=23)', - 'body' => 'node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23', - 'teaser' => 'node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node body (story) - 23node b', - 'log' => 'added 23 node', - 'timestamp' => '1282936267', - 'format' => '0', -)) -->values(array( - 'nid' => '25', - 'vid' => '37', - 'uid' => '3', - 'title' => 'poll title 0', - 'body' => '', - 'teaser' => '', - 'log' => 'added 0 poll', - 'timestamp' => '1282936268', - 'format' => '0', -)) -->values(array( - 'nid' => '26', - 'vid' => '38', - 'uid' => '3', - 'title' => 'poll title 1', - 'body' => '', - 'teaser' => '', - 'log' => 'added 1 poll', - 'timestamp' => '1282936268', - 'format' => '0', -)) -->values(array( - 'nid' => '27', - 'vid' => '39', - 'uid' => '3', - 'title' => 'poll title 2', - 'body' => '', - 'teaser' => '', - 'log' => 'added 2 poll', - 'timestamp' => '1282936268', - 'format' => '0', -)) -->values(array( - 'nid' => '28', - 'vid' => '40', - 'uid' => '3', - 'title' => 'poll title 3', - 'body' => '', - 'teaser' => '', - 'log' => 'added 3 poll', - 'timestamp' => '1282936268', - 'format' => '0', -)) -->values(array( - 'nid' => '29', - 'vid' => '41', - 'uid' => '4', - 'title' => 'poll title 4', - 'body' => '', - 'teaser' => '', - 'log' => 'added 4 poll', - 'timestamp' => '1282936268', - 'format' => '0', -)) -->values(array( - 'nid' => '30', - 'vid' => '42', - 'uid' => '4', - 'title' => 'poll title 5', - 'body' => '', - 'teaser' => '', - 'log' => 'added 5 poll', - 'timestamp' => '1282936268', - 'format' => '0', -)) -->values(array( - 'nid' => '31', - 'vid' => '43', - 'uid' => '4', - 'title' => 'poll title 6', - 'body' => '', - 'teaser' => '', - 'log' => 'added 6 poll', - 'timestamp' => '1282936268', - 'format' => '0', -)) -->values(array( - 'nid' => '32', - 'vid' => '44', - 'uid' => '4', - 'title' => 'poll title 7', - 'body' => '', - 'teaser' => '', - 'log' => 'added 7 poll', - 'timestamp' => '1282936268', - 'format' => '0', -)) -->values(array( - 'nid' => '33', - 'vid' => '45', - 'uid' => '5', - 'title' => 'poll title 8', - 'body' => '', - 'teaser' => '', - 'log' => 'added 8 poll', - 'timestamp' => '1282936268', - 'format' => '0', -)) -->values(array( - 'nid' => '34', - 'vid' => '46', - 'uid' => '5', - 'title' => 'poll title 9', - 'body' => '', - 'teaser' => '', - 'log' => 'added 9 poll', - 'timestamp' => '1282936268', - 'format' => '0', -)) -->values(array( - 'nid' => '35', - 'vid' => '47', - 'uid' => '5', - 'title' => 'poll title 10', - 'body' => '', - 'teaser' => '', - 'log' => 'added 10 poll', - 'timestamp' => '1282936268', - 'format' => '0', -)) -->values(array( - 'nid' => '36', - 'vid' => '48', - 'uid' => '5', - 'title' => 'poll title 11', - 'body' => '', - 'teaser' => '', - 'log' => 'added 11 poll', - 'timestamp' => '1282936268', - 'format' => '0', -)) -->values(array( - 'nid' => '37', - 'vid' => '49', - 'uid' => '6', - 'title' => 'node title 24', - 'body' => 'node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37', - 'teaser' => 'node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37node body (broken) - 37no', - 'log' => 'added 12 node', - 'timestamp' => '1279310614', - 'format' => '0', -)) -->execute(); - -db_create_table('node_type', array( - 'fields' => array( - 'type' => array( - 'type' => 'varchar', - 'length' => 32, - 'not null' => TRUE, - ), - 'name' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'module' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - ), - 'description' => array( - 'type' => 'text', - 'not null' => TRUE, - 'size' => 'medium', - ), - 'help' => array( - 'type' => 'text', - 'not null' => TRUE, - 'size' => 'medium', - ), - 'has_title' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'size' => 'tiny', - ), - 'title_label' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'has_body' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'size' => 'tiny', - ), - 'body_label' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'min_word_count' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'size' => 'small', - ), - 'custom' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'modified' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'locked' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'orig_type' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - ), - 'primary key' => array( - 'type', - ), - 'module' => 'node', - 'name' => 'node_type', -)); -db_insert('node_type')->fields(array( - 'type', - 'name', - 'module', - 'description', - 'help', - 'has_title', - 'title_label', - 'has_body', - 'body_label', - 'min_word_count', - 'custom', - 'modified', - 'locked', - 'orig_type', -)) -->values(array( - 'type' => 'page', - 'name' => 'Page', - 'module' => 'node', - 'description' => "A page, similar in form to a story, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a page entry does not allow visitor comments and is not featured on the site's initial home page.", - 'help' => '', - 'has_title' => '1', - 'title_label' => 'Title', - 'has_body' => '1', - 'body_label' => 'Body', - 'min_word_count' => '0', - 'custom' => '1', - 'modified' => '1', - 'locked' => '0', - 'orig_type' => 'page', -)) -->values(array( - 'type' => 'poll', - 'name' => 'Poll', - 'module' => 'poll', - 'description' => 'A poll is a question with a set of possible responses. A poll, once created, automatically provides a simple running count of the number of votes received for each response.', - 'help' => '', - 'has_title' => '1', - 'title_label' => 'Question', - 'has_body' => '0', - 'body_label' => '', - 'min_word_count' => '0', - 'custom' => '0', - 'modified' => '0', - 'locked' => '1', - 'orig_type' => 'poll', -)) -->values(array( - 'type' => 'story', - 'name' => 'Story', - 'module' => 'node', - 'description' => "A story, similar in form to a page, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a story entry. By default, a story entry is automatically featured on the site's initial home page, and provides the ability to post comments.", - 'help' => '', - 'has_title' => '1', - 'title_label' => 'Title', - 'has_body' => '1', - 'body_label' => 'Body', - 'min_word_count' => '0', - 'custom' => '1', - 'modified' => '1', - 'locked' => '0', - 'orig_type' => 'story', -)) -->execute(); - -db_create_table('permission', array( - 'fields' => array( - 'pid' => array( - 'type' => 'serial', - 'not null' => TRUE, - ), - 'rid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'perm' => array( - 'type' => 'text', - 'not null' => FALSE, - 'size' => 'big', - ), - 'tid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'primary key' => array( - 'pid', - ), - 'indexes' => array( - 'rid' => array( - 'rid', - ), - ), - 'module' => 'user', - 'name' => 'permission', -)); -db_insert('permission')->fields(array( - 'pid', - 'rid', - 'perm', - 'tid', -)) -->values(array( - 'pid' => '1', - 'rid' => '1', - 'perm' => 'access content', - 'tid' => '0', -)) -->values(array( - 'pid' => '2', - 'rid' => '2', - 'perm' => 'access comments, access content, post comments, post comments without approval', - 'tid' => '0', -)) -->execute(); - -db_create_table('poll', array( - 'fields' => array( - 'nid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'runtime' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'active' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'primary key' => array( - 'nid', - ), - 'module' => 'poll', - 'name' => 'poll', -)); -db_insert('poll')->fields(array( - 'nid', - 'runtime', - 'active', -)) -->values(array( - 'nid' => '25', - 'runtime' => '0', - 'active' => '1', -)) -->values(array( - 'nid' => '26', - 'runtime' => '0', - 'active' => '1', -)) -->values(array( - 'nid' => '27', - 'runtime' => '0', - 'active' => '1', -)) -->values(array( - 'nid' => '28', - 'runtime' => '0', - 'active' => '1', -)) -->values(array( - 'nid' => '29', - 'runtime' => '0', - 'active' => '1', -)) -->values(array( - 'nid' => '30', - 'runtime' => '0', - 'active' => '1', -)) -->values(array( - 'nid' => '31', - 'runtime' => '0', - 'active' => '1', -)) -->values(array( - 'nid' => '32', - 'runtime' => '0', - 'active' => '1', -)) -->values(array( - 'nid' => '33', - 'runtime' => '0', - 'active' => '1', -)) -->values(array( - 'nid' => '34', - 'runtime' => '0', - 'active' => '1', -)) -->values(array( - 'nid' => '35', - 'runtime' => '0', - 'active' => '1', -)) -->values(array( - 'nid' => '36', - 'runtime' => '0', - 'active' => '1', -)) -->execute(); - -db_create_table('poll_choices', array( - 'fields' => array( - 'chid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'nid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'chtext' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - 'chvotes' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'chorder' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'nid' => array( - 'nid', - ), - ), - 'primary key' => array( - 'chid', - ), - 'module' => 'poll', - 'name' => 'poll_choices', -)); -db_insert('poll_choices')->fields(array( - 'chid', - 'nid', - 'chtext', - 'chvotes', - 'chorder', -)) -->values(array( - 'chid' => '1', - 'nid' => '25', - 'chtext' => 'Choice 0 for poll 0', - 'chvotes' => '3', - 'chorder' => '0', -)) -->values(array( - 'chid' => '2', - 'nid' => '25', - 'chtext' => 'Choice 1 for poll 0', - 'chvotes' => '2', - 'chorder' => '1', -)) -->values(array( - 'chid' => '3', - 'nid' => '26', - 'chtext' => 'Choice 0 for poll 1', - 'chvotes' => '2', - 'chorder' => '0', -)) -->values(array( - 'chid' => '4', - 'nid' => '26', - 'chtext' => 'Choice 1 for poll 1', - 'chvotes' => '2', - 'chorder' => '1', -)) -->values(array( - 'chid' => '5', - 'nid' => '26', - 'chtext' => 'Choice 2 for poll 1', - 'chvotes' => '2', - 'chorder' => '2', -)) -->values(array( - 'chid' => '6', - 'nid' => '27', - 'chtext' => 'Choice 0 for poll 2', - 'chvotes' => '2', - 'chorder' => '0', -)) -->values(array( - 'chid' => '7', - 'nid' => '27', - 'chtext' => 'Choice 1 for poll 2', - 'chvotes' => '2', - 'chorder' => '1', -)) -->values(array( - 'chid' => '8', - 'nid' => '27', - 'chtext' => 'Choice 2 for poll 2', - 'chvotes' => '2', - 'chorder' => '2', -)) -->values(array( - 'chid' => '9', - 'nid' => '27', - 'chtext' => 'Choice 3 for poll 2', - 'chvotes' => '1', - 'chorder' => '3', -)) -->values(array( - 'chid' => '10', - 'nid' => '28', - 'chtext' => 'Choice 0 for poll 3', - 'chvotes' => '2', - 'chorder' => '0', -)) -->values(array( - 'chid' => '11', - 'nid' => '28', - 'chtext' => 'Choice 1 for poll 3', - 'chvotes' => '2', - 'chorder' => '1', -)) -->values(array( - 'chid' => '12', - 'nid' => '28', - 'chtext' => 'Choice 2 for poll 3', - 'chvotes' => '2', - 'chorder' => '2', -)) -->values(array( - 'chid' => '13', - 'nid' => '28', - 'chtext' => 'Choice 3 for poll 3', - 'chvotes' => '1', - 'chorder' => '3', -)) -->values(array( - 'chid' => '14', - 'nid' => '28', - 'chtext' => 'Choice 4 for poll 3', - 'chvotes' => '1', - 'chorder' => '4', -)) -->values(array( - 'chid' => '15', - 'nid' => '29', - 'chtext' => 'Choice 0 for poll 4', - 'chvotes' => '3', - 'chorder' => '0', -)) -->values(array( - 'chid' => '16', - 'nid' => '29', - 'chtext' => 'Choice 1 for poll 4', - 'chvotes' => '2', - 'chorder' => '1', -)) -->values(array( - 'chid' => '17', - 'nid' => '30', - 'chtext' => 'Choice 0 for poll 5', - 'chvotes' => '2', - 'chorder' => '0', -)) -->values(array( - 'chid' => '18', - 'nid' => '30', - 'chtext' => 'Choice 1 for poll 5', - 'chvotes' => '2', - 'chorder' => '1', -)) -->values(array( - 'chid' => '19', - 'nid' => '30', - 'chtext' => 'Choice 2 for poll 5', - 'chvotes' => '2', - 'chorder' => '2', -)) -->values(array( - 'chid' => '20', - 'nid' => '31', - 'chtext' => 'Choice 0 for poll 6', - 'chvotes' => '2', - 'chorder' => '0', -)) -->values(array( - 'chid' => '21', - 'nid' => '31', - 'chtext' => 'Choice 1 for poll 6', - 'chvotes' => '2', - 'chorder' => '1', -)) -->values(array( - 'chid' => '22', - 'nid' => '31', - 'chtext' => 'Choice 2 for poll 6', - 'chvotes' => '2', - 'chorder' => '2', -)) -->values(array( - 'chid' => '23', - 'nid' => '31', - 'chtext' => 'Choice 3 for poll 6', - 'chvotes' => '1', - 'chorder' => '3', -)) -->values(array( - 'chid' => '24', - 'nid' => '32', - 'chtext' => 'Choice 0 for poll 7', - 'chvotes' => '2', - 'chorder' => '0', -)) -->values(array( - 'chid' => '25', - 'nid' => '32', - 'chtext' => 'Choice 1 for poll 7', - 'chvotes' => '2', - 'chorder' => '1', -)) -->values(array( - 'chid' => '26', - 'nid' => '32', - 'chtext' => 'Choice 2 for poll 7', - 'chvotes' => '2', - 'chorder' => '2', -)) -->values(array( - 'chid' => '27', - 'nid' => '32', - 'chtext' => 'Choice 3 for poll 7', - 'chvotes' => '1', - 'chorder' => '3', -)) -->values(array( - 'chid' => '28', - 'nid' => '32', - 'chtext' => 'Choice 4 for poll 7', - 'chvotes' => '1', - 'chorder' => '4', -)) -->values(array( - 'chid' => '29', - 'nid' => '33', - 'chtext' => 'Choice 0 for poll 8', - 'chvotes' => '3', - 'chorder' => '0', -)) -->values(array( - 'chid' => '30', - 'nid' => '33', - 'chtext' => 'Choice 1 for poll 8', - 'chvotes' => '2', - 'chorder' => '1', -)) -->values(array( - 'chid' => '31', - 'nid' => '34', - 'chtext' => 'Choice 0 for poll 9', - 'chvotes' => '2', - 'chorder' => '0', -)) -->values(array( - 'chid' => '32', - 'nid' => '34', - 'chtext' => 'Choice 1 for poll 9', - 'chvotes' => '2', - 'chorder' => '1', -)) -->values(array( - 'chid' => '33', - 'nid' => '34', - 'chtext' => 'Choice 2 for poll 9', - 'chvotes' => '2', - 'chorder' => '2', -)) -->values(array( - 'chid' => '34', - 'nid' => '35', - 'chtext' => 'Choice 0 for poll 10', - 'chvotes' => '2', - 'chorder' => '0', -)) -->values(array( - 'chid' => '35', - 'nid' => '35', - 'chtext' => 'Choice 1 for poll 10', - 'chvotes' => '2', - 'chorder' => '1', -)) -->values(array( - 'chid' => '36', - 'nid' => '35', - 'chtext' => 'Choice 2 for poll 10', - 'chvotes' => '2', - 'chorder' => '2', -)) -->values(array( - 'chid' => '37', - 'nid' => '35', - 'chtext' => 'Choice 3 for poll 10', - 'chvotes' => '1', - 'chorder' => '3', -)) -->values(array( - 'chid' => '38', - 'nid' => '36', - 'chtext' => 'Choice 0 for poll 11', - 'chvotes' => '2', - 'chorder' => '0', -)) -->values(array( - 'chid' => '39', - 'nid' => '36', - 'chtext' => 'Choice 1 for poll 11', - 'chvotes' => '2', - 'chorder' => '1', -)) -->values(array( - 'chid' => '40', - 'nid' => '36', - 'chtext' => 'Choice 2 for poll 11', - 'chvotes' => '2', - 'chorder' => '2', -)) -->values(array( - 'chid' => '41', - 'nid' => '36', - 'chtext' => 'Choice 3 for poll 11', - 'chvotes' => '1', - 'chorder' => '3', -)) -->values(array( - 'chid' => '42', - 'nid' => '36', - 'chtext' => 'Choice 4 for poll 11', - 'chvotes' => '1', - 'chorder' => '4', -)) -->execute(); - -db_create_table('poll_votes', array( - 'fields' => array( - 'nid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'uid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'chorder' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => -1, - ), - 'hostname' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - ), - 'primary key' => array( - 'nid', - 'uid', - 'hostname', - ), - 'indexes' => array( - 'hostname' => array( - 'hostname', - ), - 'uid' => array( - 'uid', - ), - ), - 'module' => 'poll', - 'name' => 'poll_votes', -)); -db_insert('poll_votes')->fields(array( - 'nid', - 'uid', - 'chorder', - 'hostname', -)) -->values(array( - 'nid' => '25', - 'uid' => '3', - 'chorder' => '0', - 'hostname' => '', -)) -->values(array( - 'nid' => '26', - 'uid' => '3', - 'chorder' => '0', - 'hostname' => '', -)) -->values(array( - 'nid' => '27', - 'uid' => '3', - 'chorder' => '0', - 'hostname' => '', -)) -->values(array( - 'nid' => '28', - 'uid' => '3', - 'chorder' => '0', - 'hostname' => '', -)) -->values(array( - 'nid' => '29', - 'uid' => '4', - 'chorder' => '0', - 'hostname' => '', -)) -->values(array( - 'nid' => '30', - 'uid' => '4', - 'chorder' => '0', - 'hostname' => '', -)) -->values(array( - 'nid' => '31', - 'uid' => '4', - 'chorder' => '0', - 'hostname' => '', -)) -->values(array( - 'nid' => '32', - 'uid' => '4', - 'chorder' => '0', - 'hostname' => '', -)) -->values(array( - 'nid' => '33', - 'uid' => '5', - 'chorder' => '0', - 'hostname' => '', -)) -->values(array( - 'nid' => '34', - 'uid' => '5', - 'chorder' => '0', - 'hostname' => '', -)) -->values(array( - 'nid' => '35', - 'uid' => '5', - 'chorder' => '0', - 'hostname' => '', -)) -->values(array( - 'nid' => '36', - 'uid' => '5', - 'chorder' => '0', - 'hostname' => '', -)) -->execute(); - -db_create_table('role', array( - 'fields' => array( - 'rid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'name' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - ), - ), - 'unique keys' => array( - 'name' => array( - 'name', - ), - ), - 'primary key' => array( - 'rid', - ), - 'module' => 'user', - 'name' => 'role', -)); -db_insert('role')->fields(array( - 'rid', - 'name', -)) -->values(array( - 'rid' => '1', - 'name' => 'anonymous user', -)) -->values(array( - 'rid' => '2', - 'name' => 'authenticated user', -)) -->execute(); - -db_create_table('semaphore', array( - 'fields' => array( - 'name' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'value' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'expire' => array( - 'type' => 'float', - 'size' => 'big', - 'not null' => TRUE, - ), - ), - 'indexes' => array( - 'expire' => array( - 'expire', - ), - ), - 'primary key' => array( - 'name', - ), - 'module' => 'system', - 'name' => 'semaphore', -)); - -db_create_table('sessions', array( - 'fields' => array( - 'uid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'sid' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - ), - 'hostname' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - 'timestamp' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'cache' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'session' => array( - 'type' => 'text', - 'not null' => FALSE, - 'size' => 'big', - ), - ), - 'primary key' => array( - 'sid', - ), - 'indexes' => array( - 'timestamp' => array( - 'timestamp', - ), - 'uid' => array( - 'uid', - ), - ), - 'module' => 'system', - 'name' => 'sessions', -)); - -db_create_table('system', array( - 'fields' => array( - 'filename' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'name' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'type' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'owner' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'status' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'throttle' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'bootstrap' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'schema_version' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => -1, - 'size' => 'small', - ), - 'weight' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'info' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - ), - 'primary key' => array( - 'filename', - ), - 'indexes' => array( - 'modules' => array( - array( - 'type', - 12, - ), - 'status', - 'weight', - 'filename', - ), - 'bootstrap' => array( - array( - 'type', - 12, - ), - 'status', - 'bootstrap', - 'weight', - 'filename', - ), - 'type_name' => array( - array( - 'type', - 12, - ), - 'name', - ), - ), - 'module' => 'system', - 'name' => 'system', -)); -db_insert('system')->fields(array( - 'filename', - 'name', - 'type', - 'owner', - 'status', - 'throttle', - 'bootstrap', - 'schema_version', - 'weight', - 'info', -)) -->values(array( - 'filename' => 'modules/aggregator/aggregator.module', - 'name' => 'aggregator', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:10:"Aggregator";s:11:"description";s:57:"Aggregates syndicated content (RSS, RDF, and Atom feeds).";s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/block/block.module', - 'name' => 'block', - 'type' => 'module', - 'owner' => '', - 'status' => '1', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '0', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:5:"Block";s:11:"description";s:62:"Controls the boxes that are displayed around the main content.";s:7:"package";s:15:"Core - required";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/blog/blog.module', - 'name' => 'blog', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:4:"Blog";s:11:"description";s:69:"Enables keeping easily and regularly updated user web pages or blogs.";s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/blogapi/blogapi.module', - 'name' => 'blogapi', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:8:"Blog API";s:11:"description";s:79:"Allows users to post content using applications that support XML-RPC blog APIs.";s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/book/book.module', - 'name' => 'book', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:4:"Book";s:11:"description";s:63:"Allows users to structure site pages in a hierarchy or outline.";s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/color/color.module', - 'name' => 'color', - 'type' => 'module', - 'owner' => '', - 'status' => '1', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '0', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:5:"Color";s:11:"description";s:61:"Allows the user to change the color scheme of certain themes.";s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/comment/comment.module', - 'name' => 'comment', - 'type' => 'module', - 'owner' => '', - 'status' => '1', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '6003', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:7:"Comment";s:11:"description";s:57:"Allows users to comment on and discuss published content.";s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/contact/contact.module', - 'name' => 'contact', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:7:"Contact";s:11:"description";s:61:"Enables the use of both personal and site-wide contact forms.";s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/dblog/dblog.module', - 'name' => 'dblog', - 'type' => 'module', - 'owner' => '', - 'status' => '1', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '6000', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:16:"Database logging";s:11:"description";s:47:"Logs and records system events to the database.";s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/filter/filter.module', - 'name' => 'filter', - 'type' => 'module', - 'owner' => '', - 'status' => '1', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '0', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:6:"Filter";s:11:"description";s:60:"Handles the filtering of content in preparation for display.";s:7:"package";s:15:"Core - required";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/forum/forum.module', - 'name' => 'forum', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:5:"Forum";s:11:"description";s:50:"Enables threaded discussions about general topics.";s:12:"dependencies";a:2:{i:0;s:8:"taxonomy";i:1;s:7:"comment";}s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/help/help.module', - 'name' => 'help', - 'type' => 'module', - 'owner' => '', - 'status' => '1', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '0', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:4:"Help";s:11:"description";s:35:"Manages the display of online help.";s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/locale/locale.module', - 'name' => 'locale', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:6:"Locale";s:11:"description";s:119:"Adds language handling functionality and enables the translation of the user interface to languages other than English.";s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/menu/menu.module', - 'name' => 'menu', - 'type' => 'module', - 'owner' => '', - 'status' => '1', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '0', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:4:"Menu";s:11:"description";s:60:"Allows administrators to customize the site navigation menu.";s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/node/node.module', - 'name' => 'node', - 'type' => 'module', - 'owner' => '', - 'status' => '1', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '0', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:4:"Node";s:11:"description";s:66:"Allows content to be submitted to the site and displayed on pages.";s:7:"package";s:15:"Core - required";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/openid/openid.module', - 'name' => 'openid', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:6:"OpenID";s:11:"description";s:48:"Allows users to log into your site using OpenID.";s:7:"version";s:8:"6.20-dev";s:7:"package";s:15:"Core - optional";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/path/path.module', - 'name' => 'path', - 'type' => 'module', - 'owner' => '', - 'status' => '1', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '0', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:4:"Path";s:11:"description";s:28:"Allows users to rename URLs.";s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/php/php.module', - 'name' => 'php', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:10:"PHP filter";s:11:"description";s:50:"Allows embedded PHP code/snippets to be evaluated.";s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/ping/ping.module', - 'name' => 'ping', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:4:"Ping";s:11:"description";s:51:"Alerts other sites when your site has been updated.";s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/poll/poll.module', - 'name' => 'poll', - 'type' => 'module', - 'owner' => '', - 'status' => '1', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '0', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:4:"Poll";s:11:"description";s:95:"Allows your site to capture votes on different topics in the form of multiple choice questions.";s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/profile/profile.module', - 'name' => 'profile', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:7:"Profile";s:11:"description";s:36:"Supports configurable user profiles.";s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/search/search.module', - 'name' => 'search', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:6:"Search";s:11:"description";s:36:"Enables site-wide keyword searching.";s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/statistics/statistics.module', - 'name' => 'statistics', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:10:"Statistics";s:11:"description";s:37:"Logs access statistics for your site.";s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/syslog/syslog.module', - 'name' => 'syslog', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:6:"Syslog";s:11:"description";s:41:"Logs and records system events to syslog.";s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/system/system.module', - 'name' => 'system', - 'type' => 'module', - 'owner' => '', - 'status' => '1', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '6055', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:6:"System";s:11:"description";s:54:"Handles general site configuration for administrators.";s:7:"package";s:15:"Core - required";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/taxonomy/taxonomy.module', - 'name' => 'taxonomy', - 'type' => 'module', - 'owner' => '', - 'status' => '1', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '0', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:8:"Taxonomy";s:11:"description";s:38:"Enables the categorization of content.";s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/throttle/throttle.module', - 'name' => 'throttle', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:8:"Throttle";s:11:"description";s:66:"Handles the auto-throttling mechanism, to control site congestion.";s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/tracker/tracker.module', - 'name' => 'tracker', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:7:"Tracker";s:11:"description";s:43:"Enables tracking of recent posts for users.";s:12:"dependencies";a:1:{i:0;s:7:"comment";}s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/translation/translation.module', - 'name' => 'translation', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:19:"Content translation";s:11:"description";s:57:"Allows content to be translated into different languages.";s:12:"dependencies";a:1:{i:0;s:6:"locale";}s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/trigger/trigger.module', - 'name' => 'trigger', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:7:"Trigger";s:11:"description";s:90:"Enables actions to be fired on certain system events, such as when new content is created.";s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/update/update.module', - 'name' => 'update', - 'type' => 'module', - 'owner' => '', - 'status' => '1', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '6000', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:13:"Update status";s:11:"description";s:88:"Checks the status of available updates for Drupal and your installed modules and themes.";s:7:"version";s:8:"6.20-dev";s:7:"package";s:15:"Core - optional";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/upload/upload.module', - 'name' => 'upload', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:6:"Upload";s:11:"description";s:51:"Allows users to upload and attach files to content.";s:7:"package";s:15:"Core - optional";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'modules/user/user.module', - 'name' => 'user', - 'type' => 'module', - 'owner' => '', - 'status' => '1', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '0', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:4:"User";s:11:"description";s:47:"Manages the user registration and login system.";s:7:"package";s:15:"Core - required";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'sites/all/modules/admin_menu/admin_menu.module', - 'name' => 'admin_menu', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:19:"Administration Menu";s:11:"description";s:90:"Renders a menu tree for administrative purposes as dropdown menu at the top of the window.";s:7:"package";s:14:"Administration";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'sites/all/modules/cck/content.module', - 'name' => 'content', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:7:"Content";s:11:"description";s:50:"Allows administrators to define new content types.";s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'sites/all/modules/cck/modules/content_copy/content_copy.module', - 'name' => 'content_copy', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:12:"Content Copy";s:11:"description";s:51:"Enables ability to import/export field definitions.";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'sites/all/modules/cck/modules/content_permissions/content_permissions.module', - 'name' => 'content_permissions', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:19:"Content Permissions";s:11:"description";s:43:"Set field-level permissions for CCK fields.";s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'sites/all/modules/cck/modules/fieldgroup/fieldgroup.module', - 'name' => 'fieldgroup', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:10:"Fieldgroup";s:11:"description";s:35:"Create field groups for CCK fields.";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'sites/all/modules/cck/modules/nodereference/nodereference.module', - 'name' => 'nodereference', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:14:"Node Reference";s:11:"description";s:59:"Defines a field type for referencing one node from another.";s:12:"dependencies";a:3:{i:0;s:7:"content";i:1;s:4:"text";i:2;s:13:"optionwidgets";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'sites/all/modules/cck/modules/number/number.module', - 'name' => 'number', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:6:"Number";s:11:"description";s:28:"Defines numeric field types.";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'sites/all/modules/cck/modules/optionwidgets/optionwidgets.module', - 'name' => 'optionwidgets', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:14:"Option Widgets";s:11:"description";s:82:"Defines selection, check box and radio button widgets for text and numeric fields.";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'sites/all/modules/cck/modules/text/text.module', - 'name' => 'text', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:4:"Text";s:11:"description";s:32:"Defines simple text field types.";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'sites/all/modules/cck/modules/userreference/userreference.module', - 'name' => 'userreference', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:14:"User Reference";s:11:"description";s:56:"Defines a field type for referencing a user from a node.";s:12:"dependencies";a:3:{i:0;s:7:"content";i:1;s:4:"text";i:2;s:13:"optionwidgets";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'sites/all/modules/devel/devel.module', - 'name' => 'devel', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:5:"Devel";s:11:"description";s:52:"Various blocks, pages, and functions for developers.";s:7:"package";s:11:"Development";s:12:"dependencies";a:1:{i:0;s:4:"menu";}s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'sites/all/modules/devel/devel_generate.module', - 'name' => 'devel_generate', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:14:"Devel generate";s:11:"description";s:48:"Generate dummy users, nodes, and taxonomy terms.";s:7:"package";s:11:"Development";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'sites/all/modules/devel/devel_node_access.module', - 'name' => 'devel_node_access', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:17:"Devel node access";s:11:"description";s:67:"Developer block and page illustrating relevant node_access records.";s:7:"package";s:11:"Development";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'sites/all/modules/devel/devel_themer.module', - 'name' => 'devel_themer', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:15:"Theme developer";s:11:"description";s:52:"Essential theme API information for theme developers";s:7:"package";s:11:"Development";s:12:"dependencies";a:1:{i:0;s:5:"devel";}s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'sites/all/modules/devel/macro.module', - 'name' => 'macro', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:5:"Macro";s:11:"description";s:62:"Allows administrators to record and playback form submissions.";s:7:"package";s:11:"Development";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'sites/all/modules/devel/performance/performance.module', - 'name' => 'performance', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:19:"Performance Logging";s:11:"description";s:91:"Logs detailed and/or summary page generation time and memory consumption for page requests.";s:7:"package";s:11:"Development";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'sites/all/modules/drush_extras/drush_extras.module', - 'name' => 'drush_extras', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:9:{s:4:"name";s:12:"Drush extras";s:11:"description";s:43:"Useful Drush commands. Requires Drush core.";s:7:"package";s:11:"Development";s:4:"core";s:3:"8.x";s:5:"files";a:7:{i:0;s:19:"drush_extras.module";i:1;s:12:"pm.drush.inc";i:2;s:16:"pm_cvs.drush.inc";i:3;s:16:"pm_svn.drush.inc";i:4;s:20:"simpletest.drush.inc";i:5;s:13:"sql.drush.inc";i:6;s:15:"tools.drush.inc";}s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'sites/all/modules/mymap/mymap.module', - 'name' => 'mymap', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:7:{s:4:"name";s:6:"My Map";s:11:"description";s:36:"Allows any node to have a Google map";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'sites/all/modules/plugin_manager.module', - 'name' => 'plugin_manager', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:14:"Plugin Manager";s:11:"description";s:72:"Enables the automated installation of modules and themes from drupal.org";s:4:"core";s:3:"6.x";s:3:"php";s:1:"5";s:7:"package";s:14:"Administration";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:7:"version";N;}', -)) -->values(array( - 'filename' => 'sites/all/modules/schema/schema.module', - 'name' => 'schema', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:6:"Schema";s:11:"description";s:65:"The Schema module provides functionality built on the Schema API.";s:7:"package";s:8:"Database";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'sites/all/modules/views/views.module', - 'name' => 'views', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:5:"Views";s:11:"description";s:55:"Create customized lists and queries from your database.";s:7:"package";s:5:"Views";s:4:"core";s:3:"6.x";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'sites/all/modules/views/views_export/views_export.module', - 'name' => 'views_export', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:14:"Views exporter";s:11:"description";s:40:"Allows exporting multiple views at once.";s:7:"package";s:5:"Views";s:12:"dependencies";a:1:{i:0;s:5:"views";}s:4:"core";s:3:"6.x";s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'sites/all/modules/views/views_ui.module', - 'name' => 'views_ui', - 'type' => 'module', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:8:{s:4:"name";s:8:"Views UI";s:11:"description";s:93:"Administrative interface to views. Without this module, you cannot create or edit your views.";s:7:"package";s:5:"Views";s:4:"core";s:3:"6.x";s:12:"dependencies";a:1:{i:0;s:5:"views";}s:10:"dependents";a:0:{}s:7:"version";N;s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'themes/bluemarine/bluemarine.info', - 'name' => 'bluemarine', - 'type' => 'theme', - 'owner' => 'themes/engines/phptemplate/phptemplate.engine', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:11:{s:4:"name";s:10:"Bluemarine";s:11:"description";s:66:"Table-based multi-column theme with a marine and ash color scheme.";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/bluemarine/script.js";}s:10:"screenshot";s:32:"themes/bluemarine/screenshot.png";s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'themes/chameleon/chameleon.info', - 'name' => 'chameleon', - 'type' => 'theme', - 'owner' => 'themes/chameleon/chameleon.theme', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:10:{s:4:"name";s:9:"Chameleon";s:11:"description";s:42:"Minimalist tabled theme with light colors.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:8:"features";a:4:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:7:"scripts";a:1:{s:9:"script.js";s:26:"themes/chameleon/script.js";}s:10:"screenshot";s:31:"themes/chameleon/screenshot.png";s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'themes/chameleon/marvin/marvin.info', - 'name' => 'marvin', - 'type' => 'theme', - 'owner' => '', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:11:{s:4:"name";s:6:"Marvin";s:11:"description";s:31:"Boxy tabled theme in all grays.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/chameleon/marvin/script.js";}s:10:"screenshot";s:38:"themes/chameleon/marvin/screenshot.png";s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'themes/garland/garland.info', - 'name' => 'garland', - 'type' => 'theme', - 'owner' => 'themes/engines/phptemplate/phptemplate.engine', - 'status' => '1', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:11:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:24:"themes/garland/script.js";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"4.3.5";}', -)) -->values(array( - 'filename' => 'themes/garland/minnelli/minnelli.info', - 'name' => 'minnelli', - 'type' => 'theme', - 'owner' => 'themes/engines/phptemplate/phptemplate.engine', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:12:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:10:"base theme";s:7:"garland";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/garland/minnelli/script.js";}s:10:"screenshot";s:38:"themes/garland/minnelli/screenshot.png";s:3:"php";s:5:"4.3.5";s:6:"engine";s:11:"phptemplate";}', -)) -->values(array( - 'filename' => 'themes/pushbutton/pushbutton.info', - 'name' => 'pushbutton', - 'type' => 'theme', - 'owner' => 'themes/engines/phptemplate/phptemplate.engine', - 'status' => '0', - 'throttle' => '0', - 'bootstrap' => '0', - 'schema_version' => '-1', - 'weight' => '0', - 'info' => 'a:11:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:8:"6.20-dev";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/pushbutton/script.js";}s:10:"screenshot";s:32:"themes/pushbutton/screenshot.png";s:3:"php";s:5:"4.3.5";}', -)) -->execute(); - -db_create_table('term_data', array( - 'fields' => array( - 'tid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'vid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'name' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'description' => array( - 'type' => 'text', - 'not null' => FALSE, - 'size' => 'big', - ), - 'weight' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - ), - 'primary key' => array( - 'tid', - ), - 'indexes' => array( - 'taxonomy_tree' => array( - 'vid', - 'weight', - 'name', - ), - 'vid_name' => array( - 'vid', - 'name', - ), - ), - 'module' => 'taxonomy', - 'name' => 'term_data', -)); -db_insert('term_data')->fields(array( - 'tid', - 'vid', - 'name', - 'description', - 'weight', -)) -->values(array( - 'tid' => '1', - 'vid' => '1', - 'name' => 'term 1 of vocabulary 1 (j=0)', - 'description' => 'description of term 1 of vocabulary 1 (j=0)', - 'weight' => '0', -)) -->values(array( - 'tid' => '2', - 'vid' => '2', - 'name' => 'term 2 of vocabulary 2 (j=0)', - 'description' => 'description of term 2 of vocabulary 2 (j=0)', - 'weight' => '3', -)) -->values(array( - 'tid' => '3', - 'vid' => '2', - 'name' => 'term 3 of vocabulary 2 (j=1)', - 'description' => 'description of term 3 of vocabulary 2 (j=1)', - 'weight' => '4', -)) -->values(array( - 'tid' => '4', - 'vid' => '3', - 'name' => 'term 4 of vocabulary 3 (j=0)', - 'description' => 'description of term 4 of vocabulary 3 (j=0)', - 'weight' => '6', -)) -->values(array( - 'tid' => '5', - 'vid' => '3', - 'name' => 'term 5 of vocabulary 3 (j=1)', - 'description' => 'description of term 5 of vocabulary 3 (j=1)', - 'weight' => '7', -)) -->values(array( - 'tid' => '6', - 'vid' => '3', - 'name' => 'term 6 of vocabulary 3 (j=2)', - 'description' => 'description of term 6 of vocabulary 3 (j=2)', - 'weight' => '8', -)) -->values(array( - 'tid' => '7', - 'vid' => '4', - 'name' => 'term 7 of vocabulary 4 (j=0)', - 'description' => 'description of term 7 of vocabulary 4 (j=0)', - 'weight' => '9', -)) -->values(array( - 'tid' => '8', - 'vid' => '5', - 'name' => 'term 8 of vocabulary 5 (j=0)', - 'description' => 'description of term 8 of vocabulary 5 (j=0)', - 'weight' => '12', -)) -->values(array( - 'tid' => '9', - 'vid' => '5', - 'name' => 'term 9 of vocabulary 5 (j=1)', - 'description' => 'description of term 9 of vocabulary 5 (j=1)', - 'weight' => '13', -)) -->values(array( - 'tid' => '10', - 'vid' => '6', - 'name' => 'term 10 of vocabulary 6 (j=0)', - 'description' => 'description of term 10 of vocabulary 6 (j=0)', - 'weight' => '15', -)) -->values(array( - 'tid' => '11', - 'vid' => '6', - 'name' => 'term 11 of vocabulary 6 (j=1)', - 'description' => 'description of term 11 of vocabulary 6 (j=1)', - 'weight' => '16', -)) -->values(array( - 'tid' => '12', - 'vid' => '6', - 'name' => 'term 12 of vocabulary 6 (j=2)', - 'description' => 'description of term 12 of vocabulary 6 (j=2)', - 'weight' => '17', -)) -->values(array( - 'tid' => '13', - 'vid' => '7', - 'name' => 'term 13 of vocabulary 7 (j=0)', - 'description' => 'description of term 13 of vocabulary 7 (j=0)', - 'weight' => '18', -)) -->values(array( - 'tid' => '14', - 'vid' => '8', - 'name' => 'term 14 of vocabulary 8 (j=0)', - 'description' => 'description of term 14 of vocabulary 8 (j=0)', - 'weight' => '21', -)) -->values(array( - 'tid' => '15', - 'vid' => '8', - 'name' => 'term 15 of vocabulary 8 (j=1)', - 'description' => 'description of term 15 of vocabulary 8 (j=1)', - 'weight' => '22', -)) -->values(array( - 'tid' => '16', - 'vid' => '9', - 'name' => 'term 16 of vocabulary 9 (j=0)', - 'description' => 'description of term 16 of vocabulary 9 (j=0)', - 'weight' => '24', -)) -->values(array( - 'tid' => '17', - 'vid' => '9', - 'name' => 'term 17 of vocabulary 9 (j=1)', - 'description' => 'description of term 17 of vocabulary 9 (j=1)', - 'weight' => '25', -)) -->values(array( - 'tid' => '18', - 'vid' => '9', - 'name' => 'term 18 of vocabulary 9 (j=2)', - 'description' => 'description of term 18 of vocabulary 9 (j=2)', - 'weight' => '26', -)) -->values(array( - 'tid' => '19', - 'vid' => '10', - 'name' => 'term 19 of vocabulary 10 (j=0)', - 'description' => 'description of term 19 of vocabulary 10 (j=0)', - 'weight' => '27', -)) -->values(array( - 'tid' => '20', - 'vid' => '11', - 'name' => 'term 20 of vocabulary 11 (j=0)', - 'description' => 'description of term 20 of vocabulary 11 (j=0)', - 'weight' => '30', -)) -->values(array( - 'tid' => '21', - 'vid' => '11', - 'name' => 'term 21 of vocabulary 11 (j=1)', - 'description' => 'description of term 21 of vocabulary 11 (j=1)', - 'weight' => '31', -)) -->values(array( - 'tid' => '22', - 'vid' => '12', - 'name' => 'term 22 of vocabulary 12 (j=0)', - 'description' => 'description of term 22 of vocabulary 12 (j=0)', - 'weight' => '33', -)) -->values(array( - 'tid' => '23', - 'vid' => '12', - 'name' => 'term 23 of vocabulary 12 (j=1)', - 'description' => 'description of term 23 of vocabulary 12 (j=1)', - 'weight' => '34', -)) -->values(array( - 'tid' => '24', - 'vid' => '12', - 'name' => 'term 24 of vocabulary 12 (j=2)', - 'description' => 'description of term 24 of vocabulary 12 (j=2)', - 'weight' => '35', -)) -->values(array( - 'tid' => '25', - 'vid' => '13', - 'name' => 'term 25 of vocabulary 13 (j=0)', - 'description' => 'description of term 25 of vocabulary 13 (j=0)', - 'weight' => '36', -)) -->values(array( - 'tid' => '26', - 'vid' => '14', - 'name' => 'term 26 of vocabulary 14 (j=0)', - 'description' => 'description of term 26 of vocabulary 14 (j=0)', - 'weight' => '39', -)) -->values(array( - 'tid' => '27', - 'vid' => '14', - 'name' => 'term 27 of vocabulary 14 (j=1)', - 'description' => 'description of term 27 of vocabulary 14 (j=1)', - 'weight' => '40', -)) -->values(array( - 'tid' => '28', - 'vid' => '15', - 'name' => 'term 28 of vocabulary 15 (j=0)', - 'description' => 'description of term 28 of vocabulary 15 (j=0)', - 'weight' => '42', -)) -->values(array( - 'tid' => '29', - 'vid' => '15', - 'name' => 'term 29 of vocabulary 15 (j=1)', - 'description' => 'description of term 29 of vocabulary 15 (j=1)', - 'weight' => '43', -)) -->values(array( - 'tid' => '30', - 'vid' => '15', - 'name' => 'term 30 of vocabulary 15 (j=2)', - 'description' => 'description of term 30 of vocabulary 15 (j=2)', - 'weight' => '44', -)) -->values(array( - 'tid' => '31', - 'vid' => '16', - 'name' => 'term 31 of vocabulary 16 (j=0)', - 'description' => 'description of term 31 of vocabulary 16 (j=0)', - 'weight' => '45', -)) -->values(array( - 'tid' => '32', - 'vid' => '17', - 'name' => 'term 32 of vocabulary 17 (j=0)', - 'description' => 'description of term 32 of vocabulary 17 (j=0)', - 'weight' => '48', -)) -->values(array( - 'tid' => '33', - 'vid' => '17', - 'name' => 'term 33 of vocabulary 17 (j=1)', - 'description' => 'description of term 33 of vocabulary 17 (j=1)', - 'weight' => '49', -)) -->values(array( - 'tid' => '34', - 'vid' => '18', - 'name' => 'term 34 of vocabulary 18 (j=0)', - 'description' => 'description of term 34 of vocabulary 18 (j=0)', - 'weight' => '51', -)) -->values(array( - 'tid' => '35', - 'vid' => '18', - 'name' => 'term 35 of vocabulary 18 (j=1)', - 'description' => 'description of term 35 of vocabulary 18 (j=1)', - 'weight' => '52', -)) -->values(array( - 'tid' => '36', - 'vid' => '18', - 'name' => 'term 36 of vocabulary 18 (j=2)', - 'description' => 'description of term 36 of vocabulary 18 (j=2)', - 'weight' => '53', -)) -->values(array( - 'tid' => '37', - 'vid' => '19', - 'name' => 'term 37 of vocabulary 19 (j=0)', - 'description' => 'description of term 37 of vocabulary 19 (j=0)', - 'weight' => '54', -)) -->values(array( - 'tid' => '38', - 'vid' => '20', - 'name' => 'term 38 of vocabulary 20 (j=0)', - 'description' => 'description of term 38 of vocabulary 20 (j=0)', - 'weight' => '57', -)) -->values(array( - 'tid' => '39', - 'vid' => '20', - 'name' => 'term 39 of vocabulary 20 (j=1)', - 'description' => 'description of term 39 of vocabulary 20 (j=1)', - 'weight' => '58', -)) -->values(array( - 'tid' => '40', - 'vid' => '21', - 'name' => 'term 40 of vocabulary 21 (j=0)', - 'description' => 'description of term 40 of vocabulary 21 (j=0)', - 'weight' => '60', -)) -->values(array( - 'tid' => '41', - 'vid' => '21', - 'name' => 'term 41 of vocabulary 21 (j=1)', - 'description' => 'description of term 41 of vocabulary 21 (j=1)', - 'weight' => '61', -)) -->values(array( - 'tid' => '42', - 'vid' => '21', - 'name' => 'term 42 of vocabulary 21 (j=2)', - 'description' => 'description of term 42 of vocabulary 21 (j=2)', - 'weight' => '62', -)) -->values(array( - 'tid' => '43', - 'vid' => '22', - 'name' => 'term 43 of vocabulary 22 (j=0)', - 'description' => 'description of term 43 of vocabulary 22 (j=0)', - 'weight' => '63', -)) -->values(array( - 'tid' => '44', - 'vid' => '23', - 'name' => 'term 44 of vocabulary 23 (j=0)', - 'description' => 'description of term 44 of vocabulary 23 (j=0)', - 'weight' => '66', -)) -->values(array( - 'tid' => '45', - 'vid' => '23', - 'name' => 'term 45 of vocabulary 23 (j=1)', - 'description' => 'description of term 45 of vocabulary 23 (j=1)', - 'weight' => '67', -)) -->values(array( - 'tid' => '46', - 'vid' => '24', - 'name' => 'term 46 of vocabulary 24 (j=0)', - 'description' => 'description of term 46 of vocabulary 24 (j=0)', - 'weight' => '69', -)) -->values(array( - 'tid' => '47', - 'vid' => '24', - 'name' => 'term 47 of vocabulary 24 (j=1)', - 'description' => 'description of term 47 of vocabulary 24 (j=1)', - 'weight' => '70', -)) -->values(array( - 'tid' => '48', - 'vid' => '24', - 'name' => 'term 48 of vocabulary 24 (j=2)', - 'description' => 'description of term 48 of vocabulary 24 (j=2)', - 'weight' => '71', -)) -->execute(); - -db_create_table('term_hierarchy', array( - 'fields' => array( - 'tid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'parent' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'parent' => array( - 'parent', - ), - ), - 'primary key' => array( - 'tid', - 'parent', - ), - 'module' => 'taxonomy', - 'name' => 'term_hierarchy', -)); -db_insert('term_hierarchy')->fields(array( - 'tid', - 'parent', -)) -->values(array( - 'tid' => '1', - 'parent' => '0', -)) -->values(array( - 'tid' => '2', - 'parent' => '0', -)) -->values(array( - 'tid' => '4', - 'parent' => '0', -)) -->values(array( - 'tid' => '7', - 'parent' => '0', -)) -->values(array( - 'tid' => '8', - 'parent' => '0', -)) -->values(array( - 'tid' => '10', - 'parent' => '0', -)) -->values(array( - 'tid' => '13', - 'parent' => '0', -)) -->values(array( - 'tid' => '14', - 'parent' => '0', -)) -->values(array( - 'tid' => '16', - 'parent' => '0', -)) -->values(array( - 'tid' => '19', - 'parent' => '0', -)) -->values(array( - 'tid' => '20', - 'parent' => '0', -)) -->values(array( - 'tid' => '22', - 'parent' => '0', -)) -->values(array( - 'tid' => '25', - 'parent' => '0', -)) -->values(array( - 'tid' => '26', - 'parent' => '0', -)) -->values(array( - 'tid' => '28', - 'parent' => '0', -)) -->values(array( - 'tid' => '31', - 'parent' => '0', -)) -->values(array( - 'tid' => '32', - 'parent' => '0', -)) -->values(array( - 'tid' => '34', - 'parent' => '0', -)) -->values(array( - 'tid' => '37', - 'parent' => '0', -)) -->values(array( - 'tid' => '38', - 'parent' => '0', -)) -->values(array( - 'tid' => '40', - 'parent' => '0', -)) -->values(array( - 'tid' => '43', - 'parent' => '0', -)) -->values(array( - 'tid' => '44', - 'parent' => '0', -)) -->values(array( - 'tid' => '46', - 'parent' => '0', -)) -->values(array( - 'tid' => '3', - 'parent' => '2', -)) -->values(array( - 'tid' => '5', - 'parent' => '4', -)) -->values(array( - 'tid' => '6', - 'parent' => '4', -)) -->values(array( - 'tid' => '6', - 'parent' => '5', -)) -->values(array( - 'tid' => '9', - 'parent' => '8', -)) -->values(array( - 'tid' => '11', - 'parent' => '10', -)) -->values(array( - 'tid' => '12', - 'parent' => '10', -)) -->values(array( - 'tid' => '12', - 'parent' => '11', -)) -->values(array( - 'tid' => '15', - 'parent' => '14', -)) -->values(array( - 'tid' => '17', - 'parent' => '16', -)) -->values(array( - 'tid' => '18', - 'parent' => '16', -)) -->values(array( - 'tid' => '18', - 'parent' => '17', -)) -->values(array( - 'tid' => '21', - 'parent' => '20', -)) -->values(array( - 'tid' => '23', - 'parent' => '22', -)) -->values(array( - 'tid' => '24', - 'parent' => '22', -)) -->values(array( - 'tid' => '24', - 'parent' => '23', -)) -->values(array( - 'tid' => '27', - 'parent' => '26', -)) -->values(array( - 'tid' => '29', - 'parent' => '28', -)) -->values(array( - 'tid' => '30', - 'parent' => '28', -)) -->values(array( - 'tid' => '30', - 'parent' => '29', -)) -->values(array( - 'tid' => '33', - 'parent' => '32', -)) -->values(array( - 'tid' => '35', - 'parent' => '34', -)) -->values(array( - 'tid' => '36', - 'parent' => '34', -)) -->values(array( - 'tid' => '36', - 'parent' => '35', -)) -->values(array( - 'tid' => '39', - 'parent' => '38', -)) -->values(array( - 'tid' => '41', - 'parent' => '40', -)) -->values(array( - 'tid' => '42', - 'parent' => '40', -)) -->values(array( - 'tid' => '42', - 'parent' => '41', -)) -->values(array( - 'tid' => '45', - 'parent' => '44', -)) -->values(array( - 'tid' => '47', - 'parent' => '46', -)) -->values(array( - 'tid' => '48', - 'parent' => '46', -)) -->values(array( - 'tid' => '48', - 'parent' => '47', -)) -->execute(); - -db_create_table('term_node', array( - 'fields' => array( - 'nid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'vid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'tid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'vid' => array( - 'vid', - ), - 'nid' => array( - 'nid', - ), - ), - 'primary key' => array( - 'tid', - 'vid', - ), - 'module' => 'taxonomy', - 'name' => 'term_node', -)); -db_insert('term_node')->fields(array( - 'nid', - 'vid', - 'tid', -)) -->values(array( - 'nid' => '1', - 'vid' => '1', - 'tid' => '0', -)) -->values(array( - 'nid' => '1', - 'vid' => '1', - 'tid' => '1', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '2', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '3', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '4', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '5', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '6', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '7', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '8', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '9', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '10', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '11', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '12', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '13', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '14', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '15', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '16', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '17', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '18', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '19', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '20', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '21', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '22', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '23', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '24', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '25', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '26', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '27', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '28', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '29', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '30', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '31', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '32', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '33', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '34', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '35', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '36', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '37', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '38', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '39', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '40', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '41', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '42', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '43', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '44', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '45', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '46', -)) -->values(array( - 'nid' => '1', - 'vid' => '2', - 'tid' => '47', -)) -->values(array( - 'nid' => '1', - 'vid' => '1', - 'tid' => '48', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '1', -)) -->values(array( - 'nid' => '2', - 'vid' => '3', - 'tid' => '2', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '3', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '4', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '5', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '6', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '7', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '8', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '9', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '10', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '11', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '12', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '13', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '14', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '15', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '16', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '17', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '18', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '19', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '20', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '21', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '22', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '23', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '24', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '25', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '26', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '27', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '28', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '29', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '30', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '31', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '32', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '33', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '34', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '35', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '36', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '37', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '38', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '39', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '40', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '41', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '42', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '43', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '44', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '45', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '46', -)) -->values(array( - 'nid' => '2', - 'vid' => '3', - 'tid' => '47', -)) -->values(array( - 'nid' => '2', - 'vid' => '4', - 'tid' => '48', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '1', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '2', -)) -->values(array( - 'nid' => '3', - 'vid' => '5', - 'tid' => '3', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '4', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '5', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '6', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '7', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '8', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '9', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '10', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '11', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '12', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '13', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '14', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '15', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '16', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '17', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '18', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '19', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '20', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '21', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '22', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '23', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '24', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '25', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '26', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '27', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '28', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '29', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '30', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '31', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '32', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '33', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '34', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '35', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '36', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '37', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '38', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '39', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '40', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '41', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '42', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '43', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '44', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '45', -)) -->values(array( - 'nid' => '3', - 'vid' => '5', - 'tid' => '46', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '47', -)) -->values(array( - 'nid' => '3', - 'vid' => '6', - 'tid' => '48', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '1', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '2', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '3', -)) -->values(array( - 'nid' => '4', - 'vid' => '7', - 'tid' => '4', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '5', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '6', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '7', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '8', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '9', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '10', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '11', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '12', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '13', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '14', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '15', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '16', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '17', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '18', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '19', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '20', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '21', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '22', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '23', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '24', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '25', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '26', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '27', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '28', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '29', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '30', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '31', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '32', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '33', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '34', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '35', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '36', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '37', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '38', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '39', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '40', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '41', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '42', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '43', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '44', -)) -->values(array( - 'nid' => '4', - 'vid' => '7', - 'tid' => '45', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '46', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '47', -)) -->values(array( - 'nid' => '4', - 'vid' => '8', - 'tid' => '48', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '1', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '2', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '3', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '4', -)) -->values(array( - 'nid' => '5', - 'vid' => '9', - 'tid' => '5', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '6', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '7', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '8', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '9', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '10', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '11', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '12', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '13', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '14', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '15', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '16', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '17', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '18', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '19', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '20', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '21', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '22', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '23', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '24', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '25', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '26', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '27', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '28', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '29', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '30', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '31', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '32', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '33', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '34', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '35', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '36', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '37', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '38', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '39', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '40', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '41', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '42', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '43', -)) -->values(array( - 'nid' => '5', - 'vid' => '9', - 'tid' => '44', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '45', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '46', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '47', -)) -->values(array( - 'nid' => '5', - 'vid' => '10', - 'tid' => '48', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '1', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '2', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '3', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '4', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '5', -)) -->values(array( - 'nid' => '6', - 'vid' => '11', - 'tid' => '6', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '7', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '8', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '9', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '10', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '11', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '12', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '13', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '14', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '15', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '16', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '17', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '18', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '19', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '20', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '21', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '22', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '23', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '24', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '25', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '26', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '27', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '28', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '29', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '30', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '31', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '32', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '33', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '34', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '35', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '36', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '37', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '38', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '39', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '40', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '41', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '42', -)) -->values(array( - 'nid' => '6', - 'vid' => '11', - 'tid' => '43', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '44', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '45', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '46', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '47', -)) -->values(array( - 'nid' => '6', - 'vid' => '12', - 'tid' => '48', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '1', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '2', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '3', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '4', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '5', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '6', -)) -->values(array( - 'nid' => '7', - 'vid' => '13', - 'tid' => '7', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '8', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '9', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '10', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '11', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '12', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '13', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '14', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '15', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '16', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '17', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '18', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '19', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '20', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '21', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '22', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '23', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '24', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '25', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '26', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '27', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '28', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '29', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '30', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '31', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '32', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '33', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '34', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '35', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '36', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '37', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '38', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '39', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '40', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '41', -)) -->values(array( - 'nid' => '7', - 'vid' => '13', - 'tid' => '42', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '43', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '44', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '45', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '46', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '47', -)) -->values(array( - 'nid' => '7', - 'vid' => '14', - 'tid' => '48', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '1', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '2', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '3', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '4', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '5', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '6', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '7', -)) -->values(array( - 'nid' => '8', - 'vid' => '15', - 'tid' => '8', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '9', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '10', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '11', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '12', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '13', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '14', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '15', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '16', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '17', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '18', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '19', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '20', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '21', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '22', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '23', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '24', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '25', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '26', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '27', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '28', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '29', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '30', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '31', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '32', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '33', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '34', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '35', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '36', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '37', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '38', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '39', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '40', -)) -->values(array( - 'nid' => '8', - 'vid' => '15', - 'tid' => '41', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '42', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '43', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '44', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '45', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '46', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '47', -)) -->values(array( - 'nid' => '8', - 'vid' => '16', - 'tid' => '48', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '1', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '2', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '3', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '4', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '5', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '6', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '7', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '8', -)) -->values(array( - 'nid' => '9', - 'vid' => '17', - 'tid' => '9', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '10', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '11', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '12', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '13', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '14', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '15', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '16', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '17', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '18', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '19', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '20', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '21', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '22', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '23', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '24', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '25', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '26', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '27', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '28', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '29', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '30', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '31', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '32', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '33', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '34', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '35', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '36', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '37', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '38', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '39', -)) -->values(array( - 'nid' => '9', - 'vid' => '17', - 'tid' => '40', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '41', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '42', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '43', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '44', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '45', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '46', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '47', -)) -->values(array( - 'nid' => '9', - 'vid' => '18', - 'tid' => '48', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '1', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '2', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '3', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '4', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '5', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '6', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '7', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '8', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '9', -)) -->values(array( - 'nid' => '10', - 'vid' => '19', - 'tid' => '10', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '11', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '12', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '13', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '14', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '15', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '16', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '17', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '18', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '19', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '20', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '21', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '22', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '23', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '24', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '25', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '26', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '27', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '28', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '29', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '30', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '31', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '32', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '33', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '34', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '35', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '36', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '37', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '38', -)) -->values(array( - 'nid' => '10', - 'vid' => '19', - 'tid' => '39', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '40', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '41', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '42', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '43', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '44', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '45', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '46', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '47', -)) -->values(array( - 'nid' => '10', - 'vid' => '20', - 'tid' => '48', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '1', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '2', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '3', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '4', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '5', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '6', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '7', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '8', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '9', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '10', -)) -->values(array( - 'nid' => '11', - 'vid' => '21', - 'tid' => '11', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '12', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '13', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '14', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '15', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '16', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '17', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '18', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '19', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '20', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '21', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '22', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '23', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '24', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '25', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '26', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '27', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '28', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '29', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '30', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '31', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '32', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '33', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '34', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '35', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '36', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '37', -)) -->values(array( - 'nid' => '11', - 'vid' => '21', - 'tid' => '38', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '39', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '40', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '41', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '42', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '43', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '44', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '45', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '46', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '47', -)) -->values(array( - 'nid' => '11', - 'vid' => '22', - 'tid' => '48', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '1', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '2', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '3', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '4', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '5', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '6', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '7', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '8', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '9', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '10', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '11', -)) -->values(array( - 'nid' => '12', - 'vid' => '23', - 'tid' => '12', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '13', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '14', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '15', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '16', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '17', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '18', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '19', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '20', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '21', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '22', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '23', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '24', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '25', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '26', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '27', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '28', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '29', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '30', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '31', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '32', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '33', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '34', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '35', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '36', -)) -->values(array( - 'nid' => '12', - 'vid' => '23', - 'tid' => '37', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '38', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '39', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '40', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '41', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '42', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '43', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '44', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '45', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '46', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '47', -)) -->values(array( - 'nid' => '12', - 'vid' => '24', - 'tid' => '48', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '1', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '2', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '3', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '4', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '5', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '6', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '7', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '8', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '9', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '10', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '11', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '12', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '14', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '15', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '16', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '17', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '18', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '19', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '20', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '21', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '22', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '23', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '24', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '25', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '26', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '27', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '28', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '29', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '30', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '31', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '32', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '33', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '34', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '35', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '37', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '38', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '39', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '40', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '41', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '42', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '43', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '44', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '45', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '46', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '47', -)) -->values(array( - 'nid' => '13', - 'vid' => '25', - 'tid' => '48', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '1', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '2', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '3', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '4', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '5', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '6', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '7', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '8', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '9', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '10', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '11', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '12', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '13', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '15', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '16', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '17', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '18', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '19', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '20', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '21', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '22', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '23', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '24', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '25', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '26', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '27', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '28', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '29', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '30', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '31', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '32', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '33', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '34', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '36', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '37', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '38', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '39', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '40', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '41', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '42', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '43', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '44', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '45', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '46', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '47', -)) -->values(array( - 'nid' => '14', - 'vid' => '26', - 'tid' => '48', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '1', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '2', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '3', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '4', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '5', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '6', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '7', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '8', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '9', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '10', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '11', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '12', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '13', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '14', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '16', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '17', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '18', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '19', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '20', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '21', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '22', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '23', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '24', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '25', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '26', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '27', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '28', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '29', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '30', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '31', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '32', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '33', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '35', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '36', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '37', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '38', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '39', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '40', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '41', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '42', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '43', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '44', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '45', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '46', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '47', -)) -->values(array( - 'nid' => '15', - 'vid' => '27', - 'tid' => '48', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '1', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '2', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '3', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '4', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '5', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '6', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '7', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '8', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '9', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '10', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '11', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '12', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '13', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '14', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '15', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '17', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '18', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '19', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '20', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '21', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '22', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '23', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '24', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '25', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '26', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '27', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '28', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '29', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '30', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '31', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '32', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '34', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '35', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '36', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '37', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '38', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '39', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '40', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '41', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '42', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '43', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '44', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '45', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '46', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '47', -)) -->values(array( - 'nid' => '16', - 'vid' => '28', - 'tid' => '48', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '1', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '2', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '3', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '4', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '5', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '6', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '7', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '8', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '9', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '10', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '11', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '12', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '13', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '14', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '15', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '16', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '18', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '19', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '20', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '21', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '22', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '23', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '24', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '25', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '26', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '27', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '28', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '29', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '30', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '31', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '33', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '34', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '35', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '36', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '37', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '38', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '39', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '40', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '41', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '42', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '43', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '44', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '45', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '46', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '47', -)) -->values(array( - 'nid' => '17', - 'vid' => '29', - 'tid' => '48', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '1', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '2', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '3', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '4', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '5', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '6', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '7', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '8', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '9', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '10', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '11', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '12', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '13', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '14', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '15', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '16', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '17', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '19', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '20', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '21', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '22', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '23', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '24', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '25', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '26', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '27', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '28', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '29', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '30', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '32', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '33', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '34', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '35', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '36', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '37', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '38', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '39', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '40', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '41', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '42', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '43', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '44', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '45', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '46', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '47', -)) -->values(array( - 'nid' => '18', - 'vid' => '30', - 'tid' => '48', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '1', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '2', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '3', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '4', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '5', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '6', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '7', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '8', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '9', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '10', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '11', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '12', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '13', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '14', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '15', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '16', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '17', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '18', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '20', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '21', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '22', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '23', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '24', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '25', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '26', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '27', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '28', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '29', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '31', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '32', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '33', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '34', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '35', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '36', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '37', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '38', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '39', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '40', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '41', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '42', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '43', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '44', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '45', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '46', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '47', -)) -->values(array( - 'nid' => '19', - 'vid' => '31', - 'tid' => '48', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '1', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '2', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '3', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '4', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '5', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '6', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '7', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '8', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '9', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '10', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '11', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '12', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '13', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '14', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '15', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '16', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '17', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '18', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '19', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '21', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '22', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '23', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '24', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '25', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '26', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '27', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '28', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '30', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '31', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '32', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '33', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '34', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '35', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '36', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '37', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '38', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '39', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '40', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '41', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '42', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '43', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '44', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '45', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '46', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '47', -)) -->values(array( - 'nid' => '20', - 'vid' => '32', - 'tid' => '48', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '1', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '2', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '3', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '4', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '5', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '6', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '7', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '8', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '9', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '10', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '11', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '12', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '13', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '14', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '15', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '16', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '17', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '18', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '19', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '20', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '22', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '23', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '24', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '25', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '26', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '27', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '29', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '30', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '31', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '32', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '33', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '34', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '35', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '36', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '37', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '38', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '39', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '40', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '41', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '42', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '43', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '44', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '45', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '46', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '47', -)) -->values(array( - 'nid' => '21', - 'vid' => '33', - 'tid' => '48', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '1', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '2', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '3', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '4', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '5', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '6', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '7', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '8', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '9', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '10', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '11', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '12', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '13', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '14', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '15', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '16', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '17', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '18', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '19', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '20', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '21', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '23', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '24', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '25', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '26', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '28', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '29', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '30', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '31', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '32', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '33', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '34', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '35', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '36', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '37', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '38', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '39', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '40', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '41', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '42', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '43', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '44', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '45', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '46', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '47', -)) -->values(array( - 'nid' => '22', - 'vid' => '34', - 'tid' => '48', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '1', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '2', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '3', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '4', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '5', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '6', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '7', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '8', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '9', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '10', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '11', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '12', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '13', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '14', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '15', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '16', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '17', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '18', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '19', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '20', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '21', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '22', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '24', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '25', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '27', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '28', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '29', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '30', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '31', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '32', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '33', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '34', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '35', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '36', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '37', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '38', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '39', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '40', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '41', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '42', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '43', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '44', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '45', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '46', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '47', -)) -->values(array( - 'nid' => '23', - 'vid' => '35', - 'tid' => '48', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '1', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '2', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '3', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '4', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '5', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '6', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '7', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '8', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '9', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '10', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '11', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '12', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '13', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '14', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '15', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '16', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '17', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '18', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '19', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '20', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '21', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '22', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '23', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '26', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '27', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '28', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '29', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '30', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '31', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '32', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '33', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '34', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '35', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '36', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '37', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '38', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '39', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '40', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '41', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '42', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '43', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '44', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '45', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '46', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '47', -)) -->values(array( - 'nid' => '24', - 'vid' => '36', - 'tid' => '48', -)) -->execute(); - -db_create_table('term_relation', array( - 'fields' => array( - 'trid' => array( - 'type' => 'serial', - 'not null' => TRUE, - ), - 'tid1' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'tid2' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'unique keys' => array( - 'tid1_tid2' => array( - 'tid1', - 'tid2', - ), - ), - 'indexes' => array( - 'tid2' => array( - 'tid2', - ), - ), - 'primary key' => array( - 'trid', - ), - 'module' => 'taxonomy', - 'name' => 'term_relation', -)); - -db_create_table('term_synonym', array( - 'fields' => array( - 'tsid' => array( - 'type' => 'serial', - 'not null' => TRUE, - ), - 'tid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'name' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - ), - 'indexes' => array( - 'tid' => array( - 'tid', - ), - 'name_tid' => array( - 'name', - 'tid', - ), - ), - 'primary key' => array( - 'tsid', - ), - 'module' => 'taxonomy', - 'name' => 'term_synonym', -)); - -db_create_table('url_alias', array( - 'fields' => array( - 'pid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'src' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - 'dst' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - 'language' => array( - 'type' => 'varchar', - 'length' => 12, - 'not null' => TRUE, - 'default' => '', - ), - ), - 'unique keys' => array( - 'dst_language_pid' => array( - 'dst', - 'language', - 'pid', - ), - ), - 'primary key' => array( - 'pid', - ), - 'indexes' => array( - 'src_language_pid' => array( - 'src', - 'language', - 'pid', - ), - ), - 'module' => 'system', - 'name' => 'url_alias', -)); -db_insert('url_alias')->fields(array( - 'pid', - 'src', - 'dst', - 'language', -)) -->values(array( - 'pid' => '1', - 'src' => 'node/1', - 'dst' => 'content/1262732400', - 'language' => '', -)) -->values(array( - 'pid' => '2', - 'src' => 'node/2', - 'dst' => 'content/1262818800', - 'language' => '', -)) -->values(array( - 'pid' => '3', - 'src' => 'node/3', - 'dst' => 'content/1262905200', - 'language' => '', -)) -->values(array( - 'pid' => '4', - 'src' => 'node/4', - 'dst' => 'content/1262991600', - 'language' => '', -)) -->values(array( - 'pid' => '5', - 'src' => 'node/5', - 'dst' => 'content/1263078000', - 'language' => '', -)) -->values(array( - 'pid' => '6', - 'src' => 'node/6', - 'dst' => 'content/1263164400', - 'language' => '', -)) -->values(array( - 'pid' => '7', - 'src' => 'node/7', - 'dst' => 'content/1263250800', - 'language' => '', -)) -->values(array( - 'pid' => '8', - 'src' => 'node/8', - 'dst' => 'content/1263337200', - 'language' => '', -)) -->values(array( - 'pid' => '9', - 'src' => 'node/9', - 'dst' => 'content/1263423600', - 'language' => '', -)) -->values(array( - 'pid' => '10', - 'src' => 'node/10', - 'dst' => 'content/1263510000', - 'language' => '', -)) -->values(array( - 'pid' => '11', - 'src' => 'node/11', - 'dst' => 'content/1263596400', - 'language' => '', -)) -->values(array( - 'pid' => '12', - 'src' => 'node/12', - 'dst' => 'content/1263682800', - 'language' => '', -)) -->values(array( - 'pid' => '13', - 'src' => 'node/13', - 'dst' => 'content/1263769200', - 'language' => '', -)) -->values(array( - 'pid' => '14', - 'src' => 'node/14', - 'dst' => 'content/1263855600', - 'language' => '', -)) -->values(array( - 'pid' => '15', - 'src' => 'node/15', - 'dst' => 'content/1263942000', - 'language' => '', -)) -->values(array( - 'pid' => '16', - 'src' => 'node/16', - 'dst' => 'content/1264028400', - 'language' => '', -)) -->values(array( - 'pid' => '17', - 'src' => 'node/17', - 'dst' => 'content/1264114800', - 'language' => '', -)) -->values(array( - 'pid' => '18', - 'src' => 'node/18', - 'dst' => 'content/1264201200', - 'language' => '', -)) -->values(array( - 'pid' => '19', - 'src' => 'node/19', - 'dst' => 'content/1264287600', - 'language' => '', -)) -->values(array( - 'pid' => '20', - 'src' => 'node/20', - 'dst' => 'content/1264374000', - 'language' => '', -)) -->values(array( - 'pid' => '21', - 'src' => 'node/21', - 'dst' => 'content/1264460400', - 'language' => '', -)) -->values(array( - 'pid' => '22', - 'src' => 'node/22', - 'dst' => 'content/1264546800', - 'language' => '', -)) -->values(array( - 'pid' => '23', - 'src' => 'node/23', - 'dst' => 'content/1264633200', - 'language' => '', -)) -->values(array( - 'pid' => '24', - 'src' => 'node/24', - 'dst' => 'content/1264719600', - 'language' => '', -)) -->values(array( - 'pid' => '25', - 'src' => 'node/25', - 'dst' => 'content/poll/0', - 'language' => '', -)) -->values(array( - 'pid' => '26', - 'src' => 'node/25/results', - 'dst' => 'content/poll/0/results', - 'language' => '', -)) -->values(array( - 'pid' => '27', - 'src' => 'node/26', - 'dst' => 'content/poll/1', - 'language' => '', -)) -->values(array( - 'pid' => '28', - 'src' => 'node/26/results', - 'dst' => 'content/poll/1/results', - 'language' => '', -)) -->values(array( - 'pid' => '29', - 'src' => 'node/27', - 'dst' => 'content/poll/2', - 'language' => '', -)) -->values(array( - 'pid' => '30', - 'src' => 'node/27/results', - 'dst' => 'content/poll/2/results', - 'language' => '', -)) -->values(array( - 'pid' => '31', - 'src' => 'node/28', - 'dst' => 'content/poll/3', - 'language' => '', -)) -->values(array( - 'pid' => '32', - 'src' => 'node/28/results', - 'dst' => 'content/poll/3/results', - 'language' => '', -)) -->values(array( - 'pid' => '33', - 'src' => 'node/29', - 'dst' => 'content/poll/4', - 'language' => '', -)) -->values(array( - 'pid' => '34', - 'src' => 'node/29/results', - 'dst' => 'content/poll/4/results', - 'language' => '', -)) -->values(array( - 'pid' => '35', - 'src' => 'node/30', - 'dst' => 'content/poll/5', - 'language' => '', -)) -->values(array( - 'pid' => '36', - 'src' => 'node/30/results', - 'dst' => 'content/poll/5/results', - 'language' => '', -)) -->values(array( - 'pid' => '37', - 'src' => 'node/31', - 'dst' => 'content/poll/6', - 'language' => '', -)) -->values(array( - 'pid' => '38', - 'src' => 'node/31/results', - 'dst' => 'content/poll/6/results', - 'language' => '', -)) -->values(array( - 'pid' => '39', - 'src' => 'node/32', - 'dst' => 'content/poll/7', - 'language' => '', -)) -->values(array( - 'pid' => '40', - 'src' => 'node/32/results', - 'dst' => 'content/poll/7/results', - 'language' => '', -)) -->values(array( - 'pid' => '41', - 'src' => 'node/33', - 'dst' => 'content/poll/8', - 'language' => '', -)) -->values(array( - 'pid' => '42', - 'src' => 'node/33/results', - 'dst' => 'content/poll/8/results', - 'language' => '', -)) -->values(array( - 'pid' => '43', - 'src' => 'node/34', - 'dst' => 'content/poll/9', - 'language' => '', -)) -->values(array( - 'pid' => '44', - 'src' => 'node/34/results', - 'dst' => 'content/poll/9/results', - 'language' => '', -)) -->values(array( - 'pid' => '45', - 'src' => 'node/35', - 'dst' => 'content/poll/10', - 'language' => '', -)) -->values(array( - 'pid' => '46', - 'src' => 'node/35/results', - 'dst' => 'content/poll/10/results', - 'language' => '', -)) -->values(array( - 'pid' => '47', - 'src' => 'node/36', - 'dst' => 'content/poll/11', - 'language' => '', -)) -->values(array( - 'pid' => '48', - 'src' => 'node/36/results', - 'dst' => 'content/poll/11/results', - 'language' => '', -)) -->values(array( - 'pid' => '49', - 'src' => 'node/37', - 'dst' => 'content/1263769200', - 'language' => '', -)) -->execute(); - -db_create_table('users', array( - 'fields' => array( - 'uid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'name' => array( - 'type' => 'varchar', - 'length' => 60, - 'not null' => TRUE, - 'default' => '', - ), - 'pass' => array( - 'type' => 'varchar', - 'length' => 32, - 'not null' => TRUE, - 'default' => '', - ), - 'mail' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => FALSE, - 'default' => '', - ), - 'mode' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'sort' => array( - 'type' => 'int', - 'not null' => FALSE, - 'default' => 0, - 'size' => 'tiny', - ), - 'threshold' => array( - 'type' => 'int', - 'not null' => FALSE, - 'default' => 0, - 'size' => 'tiny', - ), - 'theme' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'signature' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'signature_format' => array( - 'type' => 'int', - 'size' => 'small', - 'not null' => TRUE, - 'default' => 0, - ), - 'created' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'access' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'login' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'status' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'timezone' => array( - 'type' => 'varchar', - 'length' => 8, - 'not null' => FALSE, - ), - 'language' => array( - 'type' => 'varchar', - 'length' => 12, - 'not null' => TRUE, - 'default' => '', - ), - 'picture' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'init' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => FALSE, - 'default' => '', - ), - 'data' => array( - 'type' => 'text', - 'not null' => FALSE, - 'size' => 'big', - ), - ), - 'indexes' => array( - 'access' => array( - 'access', - ), - 'created' => array( - 'created', - ), - 'mail' => array( - 'mail', - ), - ), - 'unique keys' => array( - 'name' => array( - 'name', - ), - ), - 'primary key' => array( - 'uid', - ), - 'module' => 'user', - 'name' => 'users', -)); -db_insert('users')->fields(array( - 'uid', - 'name', - 'pass', - 'mail', - 'mode', - 'sort', - 'threshold', - 'theme', - 'signature', - 'signature_format', - 'created', - 'access', - 'login', - 'status', - 'timezone', - 'language', - 'picture', - 'init', - 'data', -)) -->values(array( - 'uid' => 1, - 'name' => '', - 'pass' => '', - 'mail' => '', - 'mode' => '0', - 'sort' => '0', - 'threshold' => '0', - 'theme' => '', - 'signature' => '', - 'signature_format' => '0', - 'created' => '0', - 'access' => '0', - 'login' => '0', - 'status' => '0', - 'timezone' => NULL, - 'language' => '', - 'picture' => '', - 'init' => '', - 'data' => NULL, -)) -->values(array( - 'uid' => 2, - 'name' => 'admin', - 'pass' => '21232f297a57a5a743894a0e4a801fc3', - 'mail' => 'admin@aexample.com', - 'mode' => '0', - 'sort' => '0', - 'threshold' => '0', - 'theme' => '', - 'signature' => '', - 'signature_format' => '0', - 'created' => '1282936261', - 'access' => '1282936264', - 'login' => '1282936263', - 'status' => '1', - 'timezone' => NULL, - 'language' => '', - 'picture' => '', - 'init' => 'admin@aexample.com', - 'data' => 'a:0:{}', -)) -->values(array( - 'uid' => 4, - 'name' => 'test user 0', - 'pass' => '4dd188028f74622e61048f6683208c2f', - 'mail' => 'test0@example.com', - 'mode' => '0', - 'sort' => '0', - 'threshold' => '0', - 'theme' => '', - 'signature' => '', - 'signature_format' => '0', - 'created' => '1262300400', - 'access' => '1262300400', - 'login' => '0', - 'status' => '1', - 'timezone' => NULL, - 'language' => '', - 'picture' => '', - 'init' => '', - 'data' => NULL, -)) -->values(array( - 'uid' => 5, - 'name' => 'test user 1', - 'pass' => '388ee5249286bf5eed0dae9205743969', - 'mail' => 'test1@example.com', - 'mode' => '0', - 'sort' => '0', - 'threshold' => '0', - 'theme' => '', - 'signature' => '', - 'signature_format' => '0', - 'created' => '1262386800', - 'access' => '1262386800', - 'login' => '0', - 'status' => '1', - 'timezone' => NULL, - 'language' => '', - 'picture' => '', - 'init' => '', - 'data' => NULL, -)) -->values(array( - 'uid' => 6, - 'name' => 'test user 2', - 'pass' => 'ff8a825362e1e06dca5c13c60fe407c9', - 'mail' => 'test2@example.com', - 'mode' => '0', - 'sort' => '0', - 'threshold' => '0', - 'theme' => '', - 'signature' => '', - 'signature_format' => '0', - 'created' => '1262473200', - 'access' => '1262473200', - 'login' => '0', - 'status' => '1', - 'timezone' => NULL, - 'language' => '', - 'picture' => '', - 'init' => '', - 'data' => NULL, -)) -->values(array( - 'uid' => 7, - 'name' => 'test user 3', - 'pass' => '9d4bd7b0570cb513dc7c6ea8de15003a', - 'mail' => 'test3@example.com', - 'mode' => '0', - 'sort' => '0', - 'threshold' => '0', - 'theme' => '', - 'signature' => '', - 'signature_format' => '0', - 'created' => '1262559600', - 'access' => '1262559600', - 'login' => '0', - 'status' => '1', - 'timezone' => NULL, - 'language' => '', - 'picture' => '', - 'init' => '', - 'data' => NULL, -)) -->values(array( - 'uid' => 8, - 'name' => 'test user 4', - 'pass' => '7903c9dd9d71bcd70e3a18141711cb42', - 'mail' => 'test4@example.com', - 'mode' => '0', - 'sort' => '0', - 'threshold' => '0', - 'theme' => '', - 'signature' => '', - 'signature_format' => '0', - 'created' => '1262646000', - 'access' => '1262646000', - 'login' => '0', - 'status' => '1', - 'timezone' => NULL, - 'language' => '', - 'picture' => '', - 'init' => '', - 'data' => NULL, -)) -->values(array( - 'uid' => 9, - 'name' => 'test user 5', - 'pass' => '8eb7221204ea80db4e66247b4c748071', - 'mail' => 'test5@example.com', - 'mode' => '0', - 'sort' => '0', - 'threshold' => '0', - 'theme' => '', - 'signature' => '', - 'signature_format' => '0', - 'created' => '1262732400', - 'access' => '1262732400', - 'login' => '0', - 'status' => '1', - 'timezone' => NULL, - 'language' => '', - 'picture' => '', - 'init' => '', - 'data' => NULL, -)) -->execute(); -db_query('UPDATE {users} SET uid = uid - 1'); - -db_create_table('users_roles', array( - 'fields' => array( - 'uid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'rid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'primary key' => array( - 'uid', - 'rid', - ), - 'indexes' => array( - 'rid' => array( - 'rid', - ), - ), - 'module' => 'user', - 'name' => 'users_roles', -)); - -db_create_table('variable', array( - 'fields' => array( - 'name' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - 'value' => array( - 'type' => 'text', - 'not null' => TRUE, - 'size' => 'big', - ), - ), - 'primary key' => array( - 'name', - ), - 'module' => 'system', - 'name' => 'variable', -)); -db_insert('variable')->fields(array( - 'name', - 'value', -)) -->values(array( - 'name' => 'clean_url', - 'value' => 's:1:"1";', -)) -->values(array( - 'name' => 'comment_page', - 'value' => 'i:0;', -)) -->values(array( - 'name' => 'cron_last', - 'value' => 'i:1282936266;', -)) -->values(array( - 'name' => 'css_js_query_string', - 'value' => 's:20:"i0000000000000000000";', -)) -->values(array( - 'name' => 'date_default_timezone', - 'value' => 's:6:"-39600";', -)) -->values(array( - 'name' => 'drupal_private_key', - 'value' => 's:64:"c2f015f78636f97527f2ce6c0869fccd1c7a674005ed203d48b106cbd6db3947";', -)) -->values(array( - 'name' => 'file_directory_temp', - 'value' => 's:29:"/drupal-6/file/directory/temp";', -)) -->values(array( - 'name' => 'file_directory_path', - 'value' => 's:29:"/drupal-6/file/directory/path";', -)) -->values(array( - 'name' => 'file_downloads', - 'value' => 'i:2;', -)) -->values(array( - 'name' => 'filter_html_1', - 'value' => 'i:1;', -)) -// Add the Escape HTML filter to the custom input format 'Escape HTML Filter' -// to test that the filter may be upgraded to its Drupal 7 equivalent. -->values(array( - 'name' => 'filter_html_3', - 'value' => 'i:2;', -)) -->values(array( - 'name' => 'install_profile', - 'value' => 's:7:"default";', -)) -->values(array( - 'name' => 'install_task', - 'value' => 's:4:"done";', -)) -->values(array( - 'name' => 'install_time', - 'value' => 'i:1282936263;', -)) -->values(array( - 'name' => 'javascript_parsed', - 'value' => 'a:0:{}', -)) -->values(array( - 'name' => 'menu_expanded', - 'value' => 'a:0:{}', -)) -->values(array( - 'name' => 'menu_masks', - 'value' => 'a:17:{i:0;i:62;i:1;i:61;i:2;i:59;i:3;i:31;i:4;i:30;i:5;i:29;i:6;i:24;i:7;i:21;i:8;i:15;i:9;i:14;i:10;i:11;i:11;i:7;i:12;i:6;i:13;i:5;i:14;i:3;i:15;i:2;i:16;i:1;}', -)) -->values(array( - 'name' => 'node_options_forum', - 'value' => 'a:1:{i:0;s:6:"status";}', -)) -->values(array( - 'name' => 'node_options_page', - 'value' => 'a:1:{i:0;s:6:"status";}', -)) -->values(array( - 'name' => 'site_mail', - 'value' => 's:21:"site_mail@example.com";', -)) -->values(array( - 'name' => 'site_name', - 'value' => 's:9:"site_name";', -)) -->values(array( - 'name' => 'theme_default', - 'value' => 's:7:"garland";', -)) -->values(array( - 'name' => 'theme_settings', - 'value' => 'a:1:{s:21:"toggle_node_info_page";b:0;}', -)) -->values(array( - 'name' => 'update_last_check', - 'value' => 'i:1282936266;', -)) -->values(array( - 'name' => 'user_email_verification', - 'value' => 'b:1;', -)) -->execute(); - -db_create_table('vocabulary', array( - 'fields' => array( - 'vid' => array( - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'name' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'description' => array( - 'type' => 'text', - 'not null' => FALSE, - 'size' => 'big', - ), - 'help' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'relations' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'hierarchy' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'multiple' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'required' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'tags' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'module' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'weight' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - ), - 'primary key' => array( - 'vid', - ), - 'indexes' => array( - 'list' => array( - 'weight', - 'name', - ), - ), - 'module' => 'taxonomy', - 'name' => 'vocabulary', -)); -db_insert('vocabulary')->fields(array( - 'vid', - 'name', - 'description', - 'help', - 'relations', - 'hierarchy', - 'multiple', - 'required', - 'tags', - 'module', - 'weight', -)) -->values(array( - 'vid' => '1', - 'name' => 'vocabulary 1 (i=0)', - 'description' => 'description of vocabulary 1 (i=0)', - 'help' => '', - 'relations' => '1', - 'hierarchy' => '0', - 'multiple' => '0', - 'required' => '0', - 'tags' => '0', - 'module' => 'taxonomy', - 'weight' => '0', -)) -->values(array( - 'vid' => '2', - 'name' => 'vocabulary 2 (i=1)', - 'description' => 'description of vocabulary 2 (i=1)', - 'help' => '', - 'relations' => '1', - 'hierarchy' => '1', - 'multiple' => '1', - 'required' => '0', - 'tags' => '0', - 'module' => 'taxonomy', - 'weight' => '1', -)) -->values(array( - 'vid' => '3', - 'name' => 'vocabulary 3 (i=2)', - 'description' => 'description of vocabulary 3 (i=2)', - 'help' => '', - 'relations' => '1', - 'hierarchy' => '2', - 'multiple' => '0', - 'required' => '0', - 'tags' => '0', - 'module' => 'taxonomy', - 'weight' => '2', -)) -->values(array( - 'vid' => '4', - 'name' => 'vocabulary 4 (i=3)', - 'description' => 'description of vocabulary 4 (i=3)', - 'help' => '', - 'relations' => '1', - 'hierarchy' => '0', - 'multiple' => '1', - 'required' => '0', - 'tags' => '0', - 'module' => 'taxonomy', - 'weight' => '3', -)) -->values(array( - 'vid' => '5', - 'name' => 'vocabulary 5 (i=4)', - 'description' => 'description of vocabulary 5 (i=4)', - 'help' => '', - 'relations' => '1', - 'hierarchy' => '1', - 'multiple' => '0', - 'required' => '0', - 'tags' => '0', - 'module' => 'taxonomy', - 'weight' => '4', -)) -->values(array( - 'vid' => '6', - 'name' => 'vocabulary 6 (i=5)', - 'description' => 'description of vocabulary 6 (i=5)', - 'help' => '', - 'relations' => '1', - 'hierarchy' => '2', - 'multiple' => '1', - 'required' => '0', - 'tags' => '0', - 'module' => 'taxonomy', - 'weight' => '5', -)) -->values(array( - 'vid' => '7', - 'name' => 'vocabulary 7 (i=6)', - 'description' => 'description of vocabulary 7 (i=6)', - 'help' => '', - 'relations' => '1', - 'hierarchy' => '0', - 'multiple' => '0', - 'required' => '1', - 'tags' => '0', - 'module' => 'taxonomy', - 'weight' => '6', -)) -->values(array( - 'vid' => '8', - 'name' => 'vocabulary 8 (i=7)', - 'description' => 'description of vocabulary 8 (i=7)', - 'help' => '', - 'relations' => '1', - 'hierarchy' => '1', - 'multiple' => '1', - 'required' => '1', - 'tags' => '0', - 'module' => 'taxonomy', - 'weight' => '7', -)) -->values(array( - 'vid' => '9', - 'name' => 'vocabulary 9 (i=8)', - 'description' => 'description of vocabulary 9 (i=8)', - 'help' => '', - 'relations' => '1', - 'hierarchy' => '2', - 'multiple' => '0', - 'required' => '1', - 'tags' => '0', - 'module' => 'taxonomy', - 'weight' => '8', -)) -->values(array( - 'vid' => '10', - 'name' => 'vocabulary 10 (i=9)', - 'description' => 'description of vocabulary 10 (i=9)', - 'help' => '', - 'relations' => '1', - 'hierarchy' => '0', - 'multiple' => '1', - 'required' => '1', - 'tags' => '0', - 'module' => 'taxonomy', - 'weight' => '9', -)) -->values(array( - 'vid' => '11', - 'name' => 'vocabulary 11 (i=10)', - 'description' => 'description of vocabulary 11 (i=10)', - 'help' => '', - 'relations' => '1', - 'hierarchy' => '1', - 'multiple' => '0', - 'required' => '1', - 'tags' => '0', - 'module' => 'taxonomy', - 'weight' => '10', -)) -->values(array( - 'vid' => '12', - 'name' => 'vocabulary 12 (i=11)', - 'description' => 'description of vocabulary 12 (i=11)', - 'help' => '', - 'relations' => '1', - 'hierarchy' => '2', - 'multiple' => '1', - 'required' => '1', - 'tags' => '0', - 'module' => 'taxonomy', - 'weight' => '11', -)) -->values(array( - 'vid' => '13', - 'name' => 'vocabulary 13 (i=12)', - 'description' => 'description of vocabulary 13 (i=12)', - 'help' => '', - 'relations' => '1', - 'hierarchy' => '0', - 'multiple' => '0', - 'required' => '0', - 'tags' => '0', - 'module' => 'taxonomy', - 'weight' => '12', -)) -->values(array( - 'vid' => '14', - 'name' => 'vocabulary 14 (i=13)', - 'description' => 'description of vocabulary 14 (i=13)', - 'help' => '', - 'relations' => '1', - 'hierarchy' => '1', - 'multiple' => '1', - 'required' => '0', - 'tags' => '0', - 'module' => 'taxonomy', - 'weight' => '13', -)) -->values(array( - 'vid' => '15', - 'name' => 'vocabulary 15 (i=14)', - 'description' => 'description of vocabulary 15 (i=14)', - 'help' => '', - 'relations' => '1', - 'hierarchy' => '2', - 'multiple' => '0', - 'required' => '0', - 'tags' => '0', - 'module' => 'taxonomy', - 'weight' => '14', -)) -->values(array( - 'vid' => '16', - 'name' => 'vocabulary 16 (i=15)', - 'description' => 'description of vocabulary 16 (i=15)', - 'help' => '', - 'relations' => '1', - 'hierarchy' => '0', - 'multiple' => '1', - 'required' => '0', - 'tags' => '0', - 'module' => 'taxonomy', - 'weight' => '15', -)) -->values(array( - 'vid' => '17', - 'name' => 'vocabulary 17 (i=16)', - 'description' => 'description of vocabulary 17 (i=16)', - 'help' => '', - 'relations' => '1', - 'hierarchy' => '1', - 'multiple' => '0', - 'required' => '0', - 'tags' => '0', - 'module' => 'taxonomy', - 'weight' => '16', -)) -->values(array( - 'vid' => '18', - 'name' => 'vocabulary 18 (i=17)', - 'description' => 'description of vocabulary 18 (i=17)', - 'help' => '', - 'relations' => '1', - 'hierarchy' => '2', - 'multiple' => '1', - 'required' => '0', - 'tags' => '0', - 'module' => 'taxonomy', - 'weight' => '17', -)) -->values(array( - 'vid' => '19', - 'name' => 'vocabulary 19 (i=18)', - 'description' => 'description of vocabulary 19 (i=18)', - 'help' => '', - 'relations' => '1', - 'hierarchy' => '0', - 'multiple' => '0', - 'required' => '1', - 'tags' => '0', - 'module' => 'taxonomy', - 'weight' => '18', -)) -->values(array( - 'vid' => '20', - 'name' => 'vocabulary 20 (i=19)', - 'description' => 'description of vocabulary 20 (i=19)', - 'help' => '', - 'relations' => '1', - 'hierarchy' => '1', - 'multiple' => '1', - 'required' => '1', - 'tags' => '0', - 'module' => 'taxonomy', - 'weight' => '19', -)) -->values(array( - 'vid' => '21', - 'name' => 'vocabulary 21 (i=20)', - 'description' => 'description of vocabulary 21 (i=20)', - 'help' => '', - 'relations' => '1', - 'hierarchy' => '2', - 'multiple' => '0', - 'required' => '1', - 'tags' => '0', - 'module' => 'taxonomy', - 'weight' => '20', -)) -->values(array( - 'vid' => '22', - 'name' => 'vocabulary 22 (i=21)', - 'description' => 'description of vocabulary 22 (i=21)', - 'help' => '', - 'relations' => '1', - 'hierarchy' => '0', - 'multiple' => '1', - 'required' => '1', - 'tags' => '0', - 'module' => 'taxonomy', - 'weight' => '21', -)) -->values(array( - 'vid' => '23', - 'name' => 'vocabulary 23 (i=22)', - 'description' => 'description of vocabulary 23 (i=22)', - 'help' => '', - 'relations' => '1', - 'hierarchy' => '1', - 'multiple' => '0', - 'required' => '1', - 'tags' => '0', - 'module' => 'taxonomy', - 'weight' => '22', -)) -->values(array( - 'vid' => '24', - 'name' => 'vocabulary 24 (i=23)', - 'description' => 'description of vocabulary 24 (i=23)', - 'help' => '', - 'relations' => '1', - 'hierarchy' => '2', - 'multiple' => '1', - 'required' => '1', - 'tags' => '0', - 'module' => 'taxonomy', - 'weight' => '23', -)) -->execute(); - -db_create_table('vocabulary_node_types', array( - 'fields' => array( - 'vid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'type' => array( - 'type' => 'varchar', - 'length' => 32, - 'not null' => TRUE, - 'default' => '', - ), - ), - 'primary key' => array( - 'type', - 'vid', - ), - 'indexes' => array( - 'vid' => array( - 'vid', - ), - ), - 'module' => 'taxonomy', - 'name' => 'vocabulary_node_types', -)); -db_insert('vocabulary_node_types')->fields(array( - 'vid', - 'type', -)) -->values(array( - 'vid' => '13', - 'type' => 'page', -)) -->values(array( - 'vid' => '14', - 'type' => 'page', -)) -->values(array( - 'vid' => '15', - 'type' => 'page', -)) -->values(array( - 'vid' => '16', - 'type' => 'page', -)) -->values(array( - 'vid' => '17', - 'type' => 'page', -)) -->values(array( - 'vid' => '18', - 'type' => 'page', -)) -->values(array( - 'vid' => '19', - 'type' => 'page', -)) -->values(array( - 'vid' => '20', - 'type' => 'page', -)) -->values(array( - 'vid' => '21', - 'type' => 'page', -)) -->values(array( - 'vid' => '22', - 'type' => 'page', -)) -->values(array( - 'vid' => '23', - 'type' => 'page', -)) -->values(array( - 'vid' => '24', - 'type' => 'page', -)) -->execute(); - -db_create_table('watchdog', array( - 'fields' => array( - 'wid' => array( - 'type' => 'serial', - 'not null' => TRUE, - ), - 'uid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'type' => array( - 'type' => 'varchar', - 'length' => 16, - 'not null' => TRUE, - 'default' => '', - ), - 'message' => array( - 'type' => 'text', - 'not null' => TRUE, - 'size' => 'big', - ), - 'variables' => array( - 'type' => 'text', - 'not null' => TRUE, - 'size' => 'big', - ), - 'severity' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'link' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'location' => array( - 'type' => 'text', - 'not null' => TRUE, - ), - 'referer' => array( - 'type' => 'text', - 'not null' => FALSE, - ), - 'hostname' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - 'timestamp' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'primary key' => array( - 'wid', - ), - 'indexes' => array( - 'type' => array( - 'type', - ), - ), - 'module' => 'dblog', - 'name' => 'watchdog', -)); - diff --git modules/simpletest/tests/upgrade/drupal-6.locale.database.php modules/simpletest/tests/upgrade/drupal-6.locale.database.php deleted file mode 100644 index c8af671..0000000 --- modules/simpletest/tests/upgrade/drupal-6.locale.database.php +++ /dev/null @@ -1,276 +0,0 @@ - array( - 'language' => array( - 'type' => 'varchar', - 'length' => 12, - 'not null' => TRUE, - 'default' => '', - ), - 'name' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - ), - 'native' => array( - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - ), - 'direction' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'enabled' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'plurals' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'formula' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - 'domain' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - 'prefix' => array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ), - 'weight' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'javascript' => array( - 'type' => 'varchar', - 'length' => 32, - 'not null' => TRUE, - 'default' => '', - ), - ), - 'primary key' => array( - 'language', - ), - 'indexes' => array( - 'list' => array( - 'weight', - 'name', - ), - ), - 'module' => 'locale', - 'name' => 'languages', -)); -db_insert('languages')->fields(array( - 'language', - 'name', - 'native', - 'direction', - 'enabled', - 'plurals', - 'formula', - 'domain', - 'prefix', - 'weight', - 'javascript', -)) -->values(array( - 'language' => 'en', - 'name' => 'English', - 'native' => 'English', - 'direction' => '0', - 'enabled' => '1', - 'plurals' => '0', - 'formula' => '', - 'domain' => 'http://en.example.com', - 'prefix' => 'en', - 'weight' => '0', - 'javascript' => '', -)) -->values(array( - 'language' => 'fr', - 'name' => 'French', - 'native' => 'Français', - 'direction' => '0', - 'enabled' => '1', - 'plurals' => '2', - 'formula' => '($n>1)', - 'domain' => '', - 'prefix' => 'fr', - 'weight' => '-3', - 'javascript' => '51e92dcfe1491f4595b9df7f3b287753', -)) -->execute(); - -db_create_table('locales_source', array( - 'fields' => array( - 'lid' => array( - 'type' => 'serial', - 'not null' => TRUE, - ), - 'location' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'textgroup' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => 'default', - ), - 'source' => array( - 'type' => 'text', - 'mysql_type' => 'blob', - 'not null' => TRUE, - ), - 'version' => array( - 'type' => 'varchar', - 'length' => 20, - 'not null' => TRUE, - 'default' => 'none', - ), - ), - 'primary key' => array( - 'lid', - ), - 'indexes' => array( - 'source' => array( - array( - 'source', - 30, - ), - ), - ), - 'module' => 'locale', - 'name' => 'locales_source', -)); - -db_create_table('locales_target', array( - 'fields' => array( - 'lid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'translation' => array( - 'type' => 'text', - 'mysql_type' => 'blob', - 'not null' => TRUE, - ), - 'language' => array( - 'type' => 'varchar', - 'length' => 12, - 'not null' => TRUE, - 'default' => '', - ), - 'plid' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'plural' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'primary key' => array( - 'language', - 'lid', - 'plural', - ), - 'indexes' => array( - 'lid' => array( - 'lid', - ), - 'plid' => array( - 'plid', - ), - 'plural' => array( - 'plural', - ), - ), - 'module' => 'locale', - 'name' => 'locales_target', -)); - -// Enable the locale module. -db_update('system')->fields(array( - 'status' => 1, - 'schema_version' => '6006', -)) -->condition('type', 'module') -->condition('name', 'locale') -->execute(); - -// Set the default language. -db_insert('variable')->fields(array( - 'name', - 'value', -)) -->values(array( - 'name' => 'language_default', - 'value' => 'O:8:"stdClass":11:{s:8:"language";s:2:"fr";s:4:"name";s:6:"French";s:6:"native";s:9:"Français";s:9:"direction";s:1:"0";s:7:"enabled";i:1;s:7:"plurals";s:1:"2";s:7:"formula";s:6:"($n>1)";s:6:"domain";s:0:"";s:6:"prefix";s:0:"";s:6:"weight";s:2:"-3";s:10:"javascript";s:32:"51e92dcfe1491f4595b9df7f3b287753";}', -)) -->values(array( - 'name' => 'language_count', - 'value' => 'i:2;', -)) -->values(array( - 'name' => 'language_negotiation', - 'value' => 'i:0;', -)) -->execute(); - -// Add the language switcher block in the left region. -db_insert('blocks')->fields(array( - 'module', - 'delta', - 'theme', - 'status', - 'weight', - 'region', - 'custom', - 'throttle', - 'visibility', - 'pages', - 'title', - 'cache', -)) -->values(array( - 'module' => 'locale', - 'delta' => '0', - 'theme' => 'garland', - 'status' => '1', - 'weight' => '0', - 'region' => 'left', - 'custom' => '0', - 'throttle' => '0', - 'visibility' => '0', - 'pages' => '', - 'title' => '', - 'cache' => '-1', -)) -->execute(); diff --git modules/simpletest/tests/upgrade/drupal-6.upload.database.php modules/simpletest/tests/upgrade/drupal-6.upload.database.php deleted file mode 100644 index 493483f..0000000 --- modules/simpletest/tests/upgrade/drupal-6.upload.database.php +++ /dev/null @@ -1,397 +0,0 @@ -fields(array( - 'fid', - 'uid', - 'filename', - 'filepath', - 'filemime', - 'filesize', - 'status', - 'timestamp', -)) -/* - * This entry is deliberately omitted to test the upgrade routine when facing - * possible data corruption. - * -->values(array( - 'fid' => '1', - 'uid' => '1', - 'filename' => 'powered-blue-80x15.png', - 'filepath' => 'sites/default/files/powered-blue-80x15.png', - 'filemime' => 'image/png', - 'filesize' => '1011', - 'status' => '1', - 'timestamp' => '1285700240', -)) */ -->values(array( - 'fid' => '2', - 'uid' => '1', - 'filename' => 'powered-blue-80x15.png', - 'filepath' => 'sites/default/files/powered-blue-80x15_0.png', - 'filemime' => 'image/png', - 'filesize' => '1011', - 'status' => '1', - 'timestamp' => '1285700317', -)) -->values(array( - 'fid' => '3', - 'uid' => '1', - 'filename' => 'powered-blue-88x31.png', - 'filepath' => 'sites/default/files/powered-blue-88x31.png', - 'filemime' => 'image/png', - 'filesize' => '2113', - 'status' => '1', - 'timestamp' => '1285700343', -)) -->values(array( - 'fid' => '4', - 'uid' => '1', - 'filename' => 'powered-blue-135x42.png', - 'filepath' => 'sites/default/files/powered-blue-135x42.png', - 'filemime' => 'image/png', - 'filesize' => '3027', - 'status' => '1', - 'timestamp' => '1285700366', -)) -->values(array( - 'fid' => '5', - 'uid' => '1', - 'filename' => 'powered-black-80x15.png', - 'filepath' => 'sites/default/files/powered-black-80x15.png', - 'filemime' => 'image/png', - 'filesize' => '1467', - 'status' => '1', - 'timestamp' => '1285700529', -)) -->values(array( - 'fid' => '6', - 'uid' => '1', - 'filename' => 'powered-black-135x42.png', - 'filepath' => 'sites/default/files/powered-black-135x42.png', - 'filemime' => 'image/png', - 'filesize' => '2817', - 'status' => '1', - 'timestamp' => '1285700552', -)) -->values(array( - 'fid' => '7', - 'uid' => '1', - 'filename' => 'forum-hot-new.png', - 'filepath' => 'sites/default/files/forum-hot-new.png', - 'filemime' => 'image/png', - 'filesize' => '237', - 'status' => '1', - 'timestamp' => '1285708937', -)) -->values(array( - 'fid' => '8', - 'uid' => '1', - 'filename' => 'forum-hot.png', - 'filepath' => 'sites/default/files/forum-hot.png', - 'filemime' => 'image/png', - 'filesize' => '229', - 'status' => '1', - 'timestamp' => '1285708944', -)) -->values(array( - 'fid' => '9', - 'uid' => '1', - 'filename' => 'forum-new.png', - 'filepath' => 'sites/default/files/forum-new.png', - 'filemime' => 'image/png', - 'filesize' => '175', - 'status' => '1', - 'timestamp' => '1285708950', -)) -->values(array( - 'fid' => '10', - 'uid' => '1', - 'filename' => 'forum-sticky.png', - 'filepath' => 'sites/default/files/forum-sticky.png', - 'filemime' => 'image/png', - 'filesize' => '329', - 'status' => '1', - 'timestamp' => '1285708957', -)) -->execute(); - -db_insert('node')->fields(array( - 'nid', - 'vid', - 'type', - 'language', - 'title', - 'uid', - 'status', - 'created', - 'changed', - 'comment', - 'promote', - 'moderate', - 'sticky', - 'tnid', - 'translate', -)) -->values(array( - 'nid' => '38', - 'vid' => '50', - 'type' => 'page', - 'language' => '', - 'title' => 'node title 38 revision 50', - 'uid' => '1', - 'status' => '1', - 'created' => '1285603317', - 'changed' => '1285603317', - 'comment' => '0', - 'promote' => '0', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '39', - 'vid' => '52', - 'type' => 'page', - 'language' => '', - 'title' => 'node title 39 revision 52', - 'uid' => '1', - 'status' => '1', - 'created' => '1285700317', - 'changed' => '1285700600', - 'comment' => '0', - 'promote' => '0', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) -->values(array( - 'nid' => '40', - 'vid' => '53', - 'type' => 'page', - 'language' => '', - 'title' => 'node title 40 revision 53', - 'uid' => '1', - 'status' => '1', - 'created' => '1285709012', - 'changed' => '1285709012', - 'comment' => '0', - 'promote' => '0', - 'moderate' => '0', - 'sticky' => '0', - 'tnid' => '0', - 'translate' => '0', -)) - ->execute(); - -db_insert('node_revisions')->fields(array( - 'nid', - 'vid', - 'uid', - 'title', - 'body', - 'teaser', - 'log', - 'timestamp', - 'format', -)) -->values(array( - 'nid' => '38', - 'vid' => '50', - 'uid' => '1', - 'title' => 'node title 38 revision 50', - 'body' => "Attachments:\r\npowered-blue-80x15.png", - 'teaser' => "Attachments:\r\npowered-blue-80x15.png", - 'log' => '', - 'timestamp' => '1285603317', - 'format' => '1', -)) -->values(array( - 'nid' => '39', - 'vid' => '51', - 'uid' => '1', - 'title' => 'node title 39 revision 51', - 'body' => "Attachments:\r\npowered-blue-80x15.png\r\npowered-blue-88x31.png\r\npowered-blue-135x42.png", - 'teaser' => "Attachments:\r\npowered-blue-80x15.png\r\npowered-blue-88x31.png\r\npowered-blue-135x42.png", - 'log' => '', - 'timestamp' => '1285700487', - 'format' => '1', -)) -->values(array( - 'nid' => '39', - 'vid' => '52', - 'uid' => '1', - 'title' => 'node title 39 revision 52', - 'body' => "Attachments:\r\npowered-blue-88x31.png\r\npowered-black-80x15.png\r\npowered-black-135x42.png", - 'teaser' => "Attachments:\r\npowered-blue-88x31.png\r\npowered-black-80x15.png\r\npowered-black-135x42.png", - 'log' => '', - 'timestamp' => '1285700600', - 'format' => '1', -)) -->values(array( - 'nid' => '40', - 'vid' => '53', - 'uid' => '1', - 'title' => 'node title 40 revision 53', - 'body' => "Attachments:\r\nforum-hot-new.png\r\nforum-hot.png\r\nforum-sticky.png\r\nforum-new.png", - 'teaser' => "Attachments:\r\nforum-hot-new.png\r\nforum-hot.png\r\nforum-sticky.png\r\nforum-new.png", - 'log' => '', - 'timestamp' => '1285709012', - 'format' => '1', -)) - ->execute(); - -db_create_table('upload', array( - 'fields' => array( - 'fid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'nid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'vid' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'description' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'list' => array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'weight' => array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - ), - 'primary key' => array( - 'vid', - 'fid', - ), - 'indexes' => array( - 'fid' => array( - 'fid', - ), - 'nid' => array( - 'nid', - ), - ), - 'module' => 'upload', - 'name' => 'upload', -)); -db_insert('upload')->fields(array( - 'fid', - 'nid', - 'vid', - 'description', - 'list', - 'weight', -)) -->values(array( - 'fid' => '1', - 'nid' => '38', - 'vid' => '50', - 'description' => 'powered-blue-80x15.png', - 'list' => '1', - 'weight' => '0', -)) -->values(array( - 'fid' => '2', - 'nid' => '39', - 'vid' => '51', - 'description' => 'powered-blue-80x15.png', - 'list' => '1', - 'weight' => '0', -)) -->values(array( - 'fid' => '3', - 'nid' => '39', - 'vid' => '51', - 'description' => 'powered-blue-88x31.png', - 'list' => '1', - 'weight' => '0', -)) -->values(array( - 'fid' => '4', - 'nid' => '39', - 'vid' => '51', - 'description' => 'powered-blue-135x42.png', - 'list' => '1', - 'weight' => '0', -)) -->values(array( - 'fid' => '3', - 'nid' => '39', - 'vid' => '52', - 'description' => 'powered-blue-88x31.png', - 'list' => '1', - 'weight' => '0', -)) -->values(array( - 'fid' => '5', - 'nid' => '39', - 'vid' => '52', - 'description' => 'powered-black-80x15.png', - 'list' => '1', - 'weight' => '0', -)) -->values(array( - 'fid' => '6', - 'nid' => '39', - 'vid' => '52', - 'description' => 'powered-black-135x42.png', - 'list' => '1', - 'weight' => '0', -)) -->values(array( - 'fid' => '7', - 'nid' => '40', - 'vid' => '53', - 'description' => 'forum-hot-new.png', - 'list' => '1', - 'weight' => '-4', -)) -->values(array( - 'fid' => '8', - 'nid' => '40', - 'vid' => '53', - 'description' => 'forum-hot.png', - 'list' => '1', - 'weight' => '-3', -)) -->values(array( - 'fid' => '10', - 'nid' => '40', - 'vid' => '53', - 'description' => 'forum-sticky.png', - 'list' => '1', - 'weight' => '-2', -)) -->values(array( - 'fid' => '9', - 'nid' => '40', - 'vid' => '53', - 'description' => 'forum-new.png', - 'list' => '1', - 'weight' => '-1', -)) -->execute(); diff --git modules/simpletest/tests/upgrade/upgrade.comment.test modules/simpletest/tests/upgrade/upgrade.comment.test deleted file mode 100644 index 5fcf0b4..0000000 --- modules/simpletest/tests/upgrade/upgrade.comment.test +++ /dev/null @@ -1,32 +0,0 @@ - 'Comment upgrade path', - 'description' => 'Comment upgrade path tests.', - 'group' => 'Upgrade path', - ); - } - - public function setUp() { - // Path to the database dump files. - $this->databaseDumpFiles = array( - drupal_get_path('module', 'simpletest') . '/tests/upgrade/drupal-6.filled.database.php', - drupal_get_path('module', 'simpletest') . '/tests/upgrade/drupal-6.comments.database.php', - ); - parent::setUp(); - - $this->uninstallModulesExcept(array('comment')); - } - - /** - * Test a successful upgrade. - */ - public function testCommentUpgrade() { - $this->assertTrue($this->performUpgrade(), t('The upgrade was completed successfully.')); - } -} diff --git modules/simpletest/tests/upgrade/upgrade.filter.test modules/simpletest/tests/upgrade/upgrade.filter.test deleted file mode 100644 index 86248b7..0000000 --- modules/simpletest/tests/upgrade/upgrade.filter.test +++ /dev/null @@ -1,55 +0,0 @@ - 'Filter format upgrade path', - 'description' => 'Verifies that filter formats and references to filter formats are converted properly.', - 'group' => 'Upgrade path', - ); - } - - function setUp() { - // Path to the database dump. - $this->databaseDumpFiles = array( - drupal_get_path('module', 'simpletest') . '/tests/upgrade/drupal-6.filled.database.php', - ); - parent::setUp(); - } - - /** - * Test a successful upgrade. - */ - function testFilterFormatUpgrade() { - $this->assertTrue($this->performUpgrade(), t('The upgrade was completed successfully.')); - - $format = filter_format_load('1'); - $this->assertTrue($format->format == '1', t('Filter format found.')); - $format->format = 'test_filter'; - $format->name = 'Test filter'; - filter_format_save($format); - $format = filter_format_load('test_filter'); - $this->assertTrue($format->format == 'test_filter', t('Saved a filter format with machine name.')); - - $account = user_load(4); - user_save($account, array('signature_format' => 'test_filter')); - $account = user_load(4); - $this->assertTrue($account->signature_format == 'test_filter', t('Signature format changed successfully to a filter format with machine name.')); - - $delta = db_insert('block_custom') - ->fields(array( - 'body' => 'Test block', - 'info' => 'Test block', - 'format' => 'test_filter', - )) - ->execute(); - $this->assertTrue($delta > 0, t('Created a custom block using a filter format with machine name.')); - } -} diff --git modules/simpletest/tests/upgrade/upgrade.locale.test modules/simpletest/tests/upgrade/upgrade.locale.test deleted file mode 100644 index aec559d..0000000 --- modules/simpletest/tests/upgrade/upgrade.locale.test +++ /dev/null @@ -1,143 +0,0 @@ - 'Locale upgrade path', - 'description' => 'Upgrade path tests for the Locale module.', - 'group' => 'Upgrade path', - ); - } - - public function setUp() { - // Path to the database dump files. - $this->databaseDumpFiles = array( - drupal_get_path('module', 'simpletest') . '/tests/upgrade/drupal-6.filled.database.php', - drupal_get_path('module', 'simpletest') . '/tests/upgrade/drupal-6.locale.database.php', - ); - parent::setUp(); - - $this->uninstallModulesExcept(array('locale', 'comment')); - } - - /** - * Test a successful upgrade (no negotiation). - */ - public function testLocaleUpgrade() { - $this->assertTrue($this->performUpgrade(), t('The upgrade was completed successfully.')); - - // The home page should be in French. - $this->assertPageInLanguage('', 'fr'); - - // No prefixed page should exist. - $this->drupalGet('en'); - $this->assertResponse(404); - $this->drupalGet('fr'); - $this->assertResponse(404); - } - - /** - * Test an upgrade with path-based negotiation. - */ - public function testLocaleUpgradePathDefault() { - // LANGUAGE_NEGOTIATION_PATH_DEFAULT. - $this->variable_set('language_negotiation', 1); - - $this->assertTrue($this->performUpgrade(), t('The upgrade was completed successfully.')); - - // The home page should be in French. - $this->assertPageInLanguage('', 'fr'); - - // The language switcher block should be displayed. - $this->assertRaw('block-locale-language', t('The language switcher block is displayed.')); - - // The French prefix should not be active because French is the default language. - $this->drupalGet('fr'); - $this->assertResponse(404); - - // The English prefix should be active. - $this->assertPageInLanguage('en', 'en'); - } - - /** - * Test an upgrade with path-based (with fallback) negotiation. - */ - public function testLocaleUpgradePathFallback() { - // LANGUAGE_NEGOTIATION_PATH. - $this->variable_set('language_negotiation', 2); - - // Set the language of the admin user to English. - db_update('users') - ->fields(array('language' => 'en')) - ->condition('uid', 1) - ->execute(); - - $this->assertTrue($this->performUpgrade(), t('The upgrade was completed successfully.')); - - // Both prefixes should be active. - $this->assertPageInLanguage('fr', 'fr'); - $this->assertPageInLanguage('en', 'en'); - - // The home page should be in the admin user language. - $this->assertPageInLanguage('', 'en'); - - // The language switcher block should be displayed. - $this->assertRaw('block-locale-language', t('The language switcher block is displayed.')); - } - - /** - * Test an upgrade with domain-based negotiation. - */ - public function testLocaleUpgradeDomain() { - // LANGUAGE_NEGOTIATION_DOMAIN. - $this->variable_set('language_negotiation', 3); - - $this->assertTrue($this->performUpgrade(), t('The upgrade was completed successfully.')); - - // The home page should be in French. - $this->assertPageInLanguage('', 'fr'); - - // The language switcher block should be displayed. - $this->assertRaw('block-locale-language', t('The language switcher block is displayed.')); - - // The language switcher block should point to http://en.example.com. - $language_links = $this->xpath('//ul[contains(@class, :class)]/li/a', array(':class' => 'language-switcher-locale-url')); - $found_english_link = FALSE; - foreach ($language_links as $link) { - if ((string) $link['href'] == 'http://en.example.com/') { - $found_english_link = TRUE; - } - } - $this->assertTrue($found_english_link, t('The English link points to the correct domain.')); - - // Both prefixes should be inactive. - $this->drupalGet('en'); - $this->assertResponse(404); - $this->drupalGet('fr'); - $this->assertResponse(404); - - } - - /** - * Asserts that a page exists and is in the specified language. - */ - public function assertPageInLanguage($path = NULL, $langcode) { - if (isset($path)) { - $this->drupalGet($path); - } - - if (!$this->assertResponse(200)) { - return FALSE; - } - - if ($this->parse()) { - return $this->assertIdentical($langcode, (string) $this->elements['xml:lang']); - } - else { - return FALSE; - } - } -} diff --git modules/simpletest/tests/upgrade/upgrade.node.test modules/simpletest/tests/upgrade/upgrade.node.test deleted file mode 100644 index 163dbef..0000000 --- modules/simpletest/tests/upgrade/upgrade.node.test +++ /dev/null @@ -1,111 +0,0 @@ - 'Node body upgrade path', - 'description' => 'Node body upgrade path tests.', - 'group' => 'Upgrade path', - ); - } - - public function setUp() { - // Path to the database dump. - $this->databaseDumpFiles = array( - drupal_get_path('module', 'simpletest') . '/tests/upgrade/drupal-6.filled.database.php', - ); - parent::setUp(); - } - - /** - * Test a successful upgrade. - */ - public function testNodeBodyUpgrade() { - $this->assertTrue($this->performUpgrade(), t('The upgrade was completed successfully.')); - $this->drupalGet("content/1263769200"); - $this->assertText('node body (broken) - 37'); - - // Find a published node revision and make sure it still has a body. - $revision = db_query_range("SELECT r.nid, r.vid FROM {node_revision} r JOIN {node} n ON n.nid = r.nid WHERE n.status = 1 AND n.type <> 'poll' AND n.vid <> r.vid", 0, 1)->fetch(); - $revision = node_load($revision->nid, $revision->vid); - $this->assertTrue(!empty($revision->body), 'Non-current node revisions still have a node body.'); - // Find an unpublished node revision and make sure it still has a body. - $revision = db_query_range("SELECT r.nid, r.vid FROM {node_revision} r JOIN {node} n ON n.nid = r.nid WHERE n.status = 0 AND n.type <> 'poll' AND n.vid <> r.vid", 0, 1)->fetch(); - $revision = node_load($revision->nid, $revision->vid); - $this->assertTrue(!empty($revision->body), 'Unpublished non-current node revisions still have a node body.'); - - // Check that fields created during the upgrade can be edited and resaved - // in the UI. - $this->drupalPost('admin/structure/types/manage/story/fields/body', array(), t('Save settings')); - } -} - -/** - * Upgrade test for node type poll. - * - * Load a bare installation of Drupal 6 and run the upgrade process on it. - * - * The install only contains dblog (although it's optional, it's only so that - * another hook_watchdog module can take its place, the site is not functional - * without watchdog) and update. - */ -class PollUpgradePathTestCase extends UpgradePathTestCase { - public static function getInfo() { - return array( - 'name' => 'Poll upgrade path', - 'description' => 'Poll upgrade path tests.', - 'group' => 'Upgrade path', - ); - } - - public function setUp() { - // Path to the database dump. - $this->databaseDumpFiles = array( - drupal_get_path('module', 'simpletest') . '/tests/upgrade/drupal-6.filled.database.php', - ); - parent::setUp(); - - $this->uninstallModulesExcept(array('poll')); - } - - /** - * Test a successful upgrade. - */ - public function testPollUpgrade() { - $this->assertTrue($this->performUpgrade(), t('The upgrade was completed successfully.')); - - // Check modules page for poll - $this->drupalGet('admin/modules'); - - // Verify that the poll data is still correctly available - for ($i = 0; $i < 12; $i++) { - $this->drupalGet("content/poll/$i"); - - $nbchoices = ($i % 4) + 2; - - for ($c = 0; $c < $nbchoices; $c++) { - $this->assertText("Choice $c for poll $i", t('Choice text is displayed correctly on poll view')); - } - - // Now check that the votes are correct - $this->clickLink(t('Results')); - - for ($c = 0; $c < $nbchoices; $c++) { - $this->assertText("Choice $c for poll $i", t('Choice text is displayed correctly on result view')); - } - - $nbvotes = floor (($i % 4) + 5); - $elements = $this->xpath("//div[@class='percent']"); - for ($c = 0; $c < $nbchoices; $c++) { - $votes = floor($nbvotes / $nbchoices); - if (($nbvotes % $nbchoices) > $c) $votes++; - $this->assertTrue(preg_match("/$votes vote/", $elements[$c]), t('The number of votes is displayed correctly: expected ' . $votes . ', got ' . $elements[$c])); - } - } - } -} diff --git modules/simpletest/tests/upgrade/upgrade.poll.test modules/simpletest/tests/upgrade/upgrade.poll.test deleted file mode 100644 index 9bbbf90..0000000 --- modules/simpletest/tests/upgrade/upgrade.poll.test +++ /dev/null @@ -1,66 +0,0 @@ - 'Poll upgrade path', - 'description' => 'Poll upgrade path tests.', - 'group' => 'Upgrade path', - ); - } - - public function setUp() { - // Path to the database dump files. - $this->databaseDumpFiles = array( - drupal_get_path('module', 'simpletest') . '/tests/upgrade/drupal-6.filled.database.php', - ); - parent::setUp(); - - $this->uninstallModulesExcept(array('poll')); - } - - /** - * Test a successful upgrade. - */ - public function testPollUpgrade() { - $this->assertTrue($this->performUpgrade(), t('The upgrade was completed successfully.')); - - // Check modules page for poll - $this->drupalGet('admin/modules'); - - // Verify that the poll data is still correctly available - for ($i = 0; $i < 12; $i++) { - $this->drupalGet("content/poll/$i"); - - $nbchoices = ($i % 4) + 2; - - for ($c = 0; $c < $nbchoices; $c++) { - $this->assertText("Choice $c for poll $i", t('Choice text is displayed correctly on poll view')); - } - - // Now check that the votes are correct - $this->clickLink(t('Results')); - - for ($c = 0; $c < $nbchoices; $c++) { - $this->assertText("Choice $c for poll $i", t('Choice text is displayed correctly on result view')); - } - - $nbvotes = floor (($i % 4) + 5); - $elements = $this->xpath("//div[@class='percent']"); - for ($c = 0; $c < $nbchoices; $c++) { - $votes = floor($nbvotes / $nbchoices); - if (($nbvotes % $nbchoices) > $c) $votes++; - $this->assertTrue(preg_match("/$votes vote/", $elements[$c]), t('The number of votes is displayed correctly: expected ' . $votes . ', got ' . $elements[$c])); - } - } - } -} diff --git modules/simpletest/tests/upgrade/upgrade.taxonomy.test modules/simpletest/tests/upgrade/upgrade.taxonomy.test deleted file mode 100644 index dadb98e..0000000 --- modules/simpletest/tests/upgrade/upgrade.taxonomy.test +++ /dev/null @@ -1,190 +0,0 @@ - 'Taxonomy upgrade path', - 'description' => 'Taxonomy upgrade path tests.', - 'group' => 'Upgrade path', - ); - } - - public function setUp() { - // Path to the database dump. - $this->databaseDumpFiles = array( - drupal_get_path('module', 'simpletest') . '/tests/upgrade/drupal-6.filled.database.php', - ); - parent::setUp(); - } - - /** - * Retrieve an array mapping allowed vocabulary id to field name for - * all taxonomy_term_reference fields for which an instance exists - * for the specified entity type and bundle. - */ - function instanceVocabularies($entity_type, $bundle) { - $instances = array(); - foreach (field_info_instances($entity_type, $bundle) as $instance) { - $field = field_info_field($instance['field_name']); - if ($field['type'] == 'taxonomy_term_reference') { - foreach ($field['settings']['allowed_values'] as $tree) { - // Prefer valid taxonomy term reference fields for a given vocabulary - // when they exist. - if (empty($instances[$tree['vocabulary']]) || $instances[$tree['vocabulary']] == 'taxonomyextra') { - $instances[$tree['vocabulary']] = $field['field_name']; - } - } - } - } - return $instances; - } - - /** - * Basic tests for the taxonomy upgrade. - */ - public function testTaxonomyUpgrade() { - $this->assertTrue($this->performUpgrade(), t('The upgrade was completed successfully.')); - - // Visit the front page to assert for PHP warning and errors. - $this->drupalGet(''); - - // Check that taxonomy_vocabulary_node_type and taxonomy_term_node have been - // removed. - $this->assertFalse(db_table_exists('taxonomy_vocabulary_node_type'), t('taxonomy_vocabulary_node_type has been removed.')); - $this->assertFalse(db_table_exists('taxonomy_term_node'), t('taxonomy_term_node has been removed.')); - - // Check that the node type 'page' has been associated to a taxonomy - // reference field for each vocabulary. - $voc_keys = array(); - foreach (taxonomy_get_vocabularies() as $vocab) { - $voc_keys[] = $vocab->machine_name; - } - $instances = $this->instanceVocabularies('node', 'page'); - $inst_keys = array_keys($instances); - sort($voc_keys); - sort($inst_keys); - $this->assertEqual($voc_keys, $inst_keys, t('Node type page has instances for every vocabulary.')); - - // Node type 'story' was not explicitly in $vocabulary->nodes but - // each node of type 'story' was associated to one or more terms. - // Check that the node type 'story' has been associated only to - // the taxonomyextra field. - $instances = $this->instanceVocabularies('node', 'story'); - $field_names = array_flip($instances); - $this->assertEqual(count($field_names), 1, t('Only one taxonomy term field instance exists for story nodes')); - $this->assertEqual(key($field_names), 'taxonomyextra', t('Only the excess taxonomy term field is used on story nodes')); - - // Check that the node type 'poll' has been associated to no taxonomy - // reference field. - $instances = $this->instanceVocabularies('node', 'poll'); - $this->assertTrue(empty($instances), t('Node type poll has no taxonomy term reference field instances.')); - - // Check that each node of type 'page' and 'story' is associated to all the - // terms except terms whose ID is equal to the node ID or is equal to the - // node ID subtracted from 49. - $nodes = node_load_multiple(array(), array('type' => 'page')); - $nodes += node_load_multiple(array(), array('type' => 'story')); - $terms = db_select('taxonomy_term_data', 'td') - ->fields('td') - ->orderBy('vid') - ->orderBy('tid') - ->execute() - ->fetchAllAssoc('tid'); - field_attach_prepare_view('node', $nodes, 'full'); - foreach ($nodes as $nid => $node) { - $node->content = field_attach_view('node', $node, 'full'); - $render = drupal_render($node->content); - $this->drupalSetContent($render); - $this->verbose($render); - - $vocabulary_seen = array(); - foreach ($terms as $tid => $term) { - // In our test database, each node is arbitrary associated with all - // terms except two: one whose tid is ($nid) and one whose tid is - // (49 - $nid). - $should_be_displayed = ($tid != $nid) && ($tid + $nid != 49); - - // Only vocabularies 13 to 24 are properly associated with the node - // type 'page'. All other node types are not associated with any - // vocabulary, but still are associated with terms. Those terms - // will be moved to the taxonomy extra field. - if ($node->type == 'page' && $term->vid >= 13 && $term->vid <= 24) { - $vocabulary = taxonomy_vocabulary_load($term->vid); - $field_class = 'field-name-' . strtr('taxonomy_' . $vocabulary->machine_name, '_', '-');; - } - else { - $field_class = 'field-name-taxonomyextra'; - } - - // Odd vocabularies are single, so any additional term will be moved - // to the taxonomy extra field. - if ($should_be_displayed) { - if ($term->vid % 2 == 1 && !empty($vocabulary_seen[$term->vid])) { - $field_class = 'field-name-taxonomyextra'; - } - $vocabulary_seen[$term->vid] = TRUE; - } - - $args = array( - '%name' => $term->name, - '@field' => $field_class, - '%nid' => $nid, - ); - - // Use link rather than term name because migrated term names can be - // substrings of other term names. e.g. "term 1 of vocabulary 2" is - // found when "term 1 of vocabulary 20" is output. - $term_path = url('taxonomy/term/' . $term->tid); - if (!$should_be_displayed) { - // Look for any link with the term path. - $links = $this->xpath('//a[@href=:term_path]', array(':term_path' => $term_path)); - $this->assertFalse($links, t('Term %name (@field) is not displayed on node %nid', $args)); - } - else { - // Look for a link with the term path inside the correct field. - // We search for "SPACE + class + SPACE" to avoid matching a substring - // of the class. - $links = $this->xpath('//div[contains(concat(" ", normalize-space(@class), " "), :field_class)]//a[@href=:term_path]', array(':field_class' => ' ' . $field_class . ' ', ':term_path' => $term_path)); - $this->assertTrue($links, t('Term %name (@field) is displayed on node %nid', $args)); - } - } - - // nid 1, revision 1 had a bogus record in {term_node} pointing to term - // ID 0. Make sure we ignored this instead of generating a bogus term. - if ($node->nid == 1) { - $link = l($term->name, 'taxonomy/term/0'); - $this->assertNoRaw($link, t('Bogus term (tid 0) is not displayed on node 1 vid %old_vid.', $args)); - } - - // The first 12 nodes have two revisions. For nodes with - // revisions, check that the oldest revision is associated only - // to terms whose ID is equal to the node ID or 49 less the node ID. - $revisions = node_revision_list($node); - if ($node->nid < 13) { - $this->assertEqual(count($revisions), 2, t('Node %nid has two revisions.', $args)); - $last_rev = end($revisions); - $args['%old_vid'] = $last_rev->vid; - - $node_old = node_load($node->nid, $last_rev->vid); - field_attach_prepare_view('node', array($node_old->nid => $node_old), 'full'); - $node_old->content = field_attach_view('node', $node_old, 'full'); - $render = drupal_render($node_old->content); - $this->drupalSetContent($render); - $this->verbose($render); - - $term = $terms[$node->nid]; - $link = l($term->name, 'taxonomy/term/' . $term->tid); - $this->assertRaw($link, t('Term %name (@field) is displayed on node %nid vid %old_vid.', $args)); - $term = $terms[49-$node->nid]; - $link = l($term->name, 'taxonomy/term/' . $term->tid); - $this->assertRaw($link, t('Term %name (@field) is displayed on node %nid %old_vid.', $args)); - } - else { - $this->assertEqual(count($revisions), 1, t('Node %nid has one revision.', $args)); - } - } - } -} diff --git modules/simpletest/tests/upgrade/upgrade.test modules/simpletest/tests/upgrade/upgrade.test deleted file mode 100644 index 8a3da81..0000000 --- modules/simpletest/tests/upgrade/upgrade.test +++ /dev/null @@ -1,406 +0,0 @@ -upgradedSite = FALSE; - $this->upgradeErrors = array(); - - $this->loadedModules = module_list(); - - // Generate a temporary prefixed database to ensure that tests have a clean starting point. - $this->databasePrefix = 'simpletest' . mt_rand(1000, 1000000); - db_update('simpletest_test_id') - ->fields(array('last_prefix' => $this->databasePrefix)) - ->condition('test_id', $this->testId) - ->execute(); - - // Clone the current connection and replace the current prefix. - $connection_info = Database::getConnectionInfo('default'); - Database::renameConnection('default', 'simpletest_original_default'); - foreach ($connection_info as $target => $value) { - $connection_info[$target]['prefix'] = array( - 'default' => $value['prefix']['default'] . $this->databasePrefix, - ); - } - Database::addConnectionInfo('default', 'default', $connection_info['default']); - - // Store necessary current values before switching to prefixed database. - $this->originalLanguage = $language; - $this->originalLanguageDefault = variable_get('language_default'); - $this->originalFileDirectory = variable_get('file_public_path', conf_path() . '/files'); - $this->originalProfile = drupal_get_profile(); - $clean_url_original = variable_get('clean_url', 0); - - // Unregister the registry. - // This is required to make sure that the database layer works properly. - spl_autoload_unregister('drupal_autoload_class'); - spl_autoload_unregister('drupal_autoload_interface'); - - // Create test directories ahead of installation so fatal errors and debug - // information can be logged during installation process. - // Use mock files directories with the same prefix as the database. - $public_files_directory = $this->originalFileDirectory . '/simpletest/' . substr($this->databasePrefix, 10); - $private_files_directory = $public_files_directory . '/private'; - $temp_files_directory = $private_files_directory . '/temp'; - - // Create the directories. - file_prepare_directory($public_files_directory, FILE_CREATE_DIRECTORY | FILE_MODIFY_PERMISSIONS); - file_prepare_directory($private_files_directory, FILE_CREATE_DIRECTORY); - file_prepare_directory($temp_files_directory, FILE_CREATE_DIRECTORY); - $this->generatedTestFiles = FALSE; - - // Log fatal errors. - ini_set('log_errors', 1); - ini_set('error_log', $public_files_directory . '/error.log'); - - // Reset all statics and variables to perform tests in a clean environment. - $conf = array(); - - // Load the database from the portable PHP dump. - foreach ($this->databaseDumpFiles as $file) { - require $file; - } - - // Set path variables. - $this->variable_set('file_public_path', $public_files_directory); - $this->variable_set('file_private_path', $private_files_directory); - $this->variable_set('file_temporary_path', $temp_files_directory); - - $this->pass('Finished loading the dump.'); - - // Load user 1. - $this->originalUser = $user; - drupal_save_session(FALSE); - $user = db_query('SELECT * FROM {users} WHERE uid = :uid', array(':uid' => 1))->fetchObject(); - - // Generate and set a D6-compatible session cookie. - $this->curlInitialize(); - $sid = drupal_hash_base64(uniqid(mt_rand(), TRUE) . drupal_random_bytes(55)); - $session_name = update_get_d6_session_name(); - curl_setopt($this->curlHandle, CURLOPT_COOKIE, rawurlencode($session_name) . '=' . rawurlencode($sid)); - - // Force our way into the session of the child site. - drupal_save_session(TRUE); - // A session cannot be written without the ssid column which is missing on - // Drupal 6 sites. - db_add_field('sessions', 'ssid', array('description' => "Secure session ID. The value is generated by Drupal's session handlers.", 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '')); - _drupal_session_write($sid, ''); - // Remove the temporarily added ssid column. - db_drop_field('sessions', 'ssid'); - drupal_save_session(FALSE); - - // Restore necessary variables. - $this->variable_set('clean_url', $clean_url_original); - $this->variable_set('site_mail', 'simpletest@example.com'); - - drupal_set_time_limit($this->timeLimit); - } - - /** - * Override of DrupalWebTestCase::tearDown() specialized for upgrade testing. - */ - protected function tearDown() { - global $user, $language; - - // In case a fatal error occured that was not in the test process read the - // log to pick up any fatal errors. - simpletest_log_read($this->testId, $this->databasePrefix, get_class($this), TRUE); - - // Delete temporary files directory. - file_unmanaged_delete_recursive($this->originalFileDirectory . '/simpletest/' . substr($this->databasePrefix, 10)); - - // Get back to the original connection. - Database::removeConnection('default'); - Database::renameConnection('simpletest_original_default', 'default'); - - // Remove all prefixed tables. - $tables = db_find_tables($this->databasePrefix . '%'); - foreach ($tables as $table) { - db_drop_table($table); - } - - // Return the user to the original one. - $user = $this->originalUser; - drupal_save_session(TRUE); - - // Ensure that internal logged in variable and cURL options are reset. - $this->loggedInUser = FALSE; - $this->additionalCurlOptions = array(); - - // Reload module list and implementations to ensure that test module hooks - // aren't called after tests. - module_list(TRUE); - module_implements('', FALSE, TRUE); - - // Reset the Field API. - field_cache_clear(); - - // Rebuild caches. - parent::refreshVariables(); - - // Reset language. - $language = $this->originalLanguage; - if ($this->originalLanguageDefault) { - $GLOBALS['conf']['language_default'] = $this->originalLanguageDefault; - } - - // Close the CURL handler. - $this->curlClose(); - } - - /** - * Specialized variable_set() that works even if the child site is not upgraded. - * - * @param $name - * The name of the variable to set. - * @param $value - * The value to set. This can be any PHP data type; these functions take care - * of serialization as necessary. - */ - protected function variable_set($name, $value) { - db_delete('variable') - ->condition('name', $name) - ->execute(); - db_insert('variable') - ->fields(array( - 'name' => $name, - 'value' => serialize($value), - )) - ->execute(); - - try { - cache_clear_all('variables', 'cache'); - cache_clear_all('variables', 'cache_bootstrap'); - } - // Since cache_bootstrap won't exist in a Drupal 6 site, ignore the - // exception if the above fails. - catch (Exception $e) {} - } - - /** - * Specialized refreshVariables(). - */ - protected function refreshVariables() { - // No operation if the child has not been upgraded yet. - if (!$this->upgradedSite) { - return parent::refreshVariables(); - } - } - - /** - * Perform the upgrade. - * - * @param $register_errors - * Register the errors during the upgrade process as failures. - * @return - * TRUE if the upgrade succeeded, FALSE otherwise. - */ - protected function performUpgrade($register_errors = TRUE) { - $update_url = $GLOBALS['base_url'] . '/update.php'; - - // Load the first update screen. - $this->drupalGet($update_url, array('external' => TRUE)); - if (!$this->assertResponse(200)) { - return FALSE; - } - - // Continue. - $this->drupalPost(NULL, array(), t('Continue')); - if (!$this->assertResponse(200)) { - return FALSE; - } - - // Go! - $this->drupalPost(NULL, array(), t('Apply pending updates')); - if (!$this->assertResponse(200)) { - return FALSE; - } - - // Check for errors during the update process. - foreach ($this->xpath('//li[@class=:class]', array(':class' => 'failure')) as $element) { - $message = strip_tags($element->asXML()); - $this->upgradeErrors[] = $message; - if ($register_errors) { - $this->fail($message); - } - } - - if (!empty($this->upgradeErrors)) { - // Upgrade failed, the installation might be in an inconsistent state, - // don't process. - return FALSE; - } - - // Check if there still are pending updates. - $this->drupalGet($update_url, array('external' => TRUE)); - $this->drupalPost(NULL, array(), t('Continue')); - if (!$this->assertText(t('No pending updates.'), t('No pending updates at the end of the update process.'))) { - return FALSE; - } - - // Upgrade succeed, rebuild the environment so that we can call the API - // of the child site directly from this request. - $this->upgradedSite = TRUE; - - // Reload module list. For modules that are enabled in the test database, - // but not on the test client, we need to load the code here. - $new_modules = array_diff(module_list(TRUE), $this->loadedModules); - foreach ($new_modules as $module) { - drupal_load('module', $module); - } - - // Reload hook implementations - module_implements('', FALSE, TRUE); - - // Rebuild caches. - drupal_static_reset(); - drupal_flush_all_caches(); - - // Reload global $conf array and permissions. - $this->refreshVariables(); - $this->checkPermissions(array(), TRUE); - - return TRUE; - } - - /** - * Force uninstall all modules from a test database, except those listed. - * - * @param $modules - * The list of modules to keep installed. Required core modules will - * always be kept. - */ - protected function uninstallModulesExcept(array $modules) { - $required_modules = array('block', 'dblog', 'filter', 'node', 'system', 'update', 'user'); - - $modules = array_merge($required_modules, $modules); - - db_delete('system') - ->condition('type', 'module') - ->condition('name', $modules, 'NOT IN') - ->execute(); - } - -} - -/** - * Perform basic upgrade tests. - * - * Load a bare installation of Drupal 6 and run the upgrade process on it. - * - * The install only contains dblog (although it's optional, it's only so that - * another hook_watchdog module can take its place, the site is not functional - * without watchdog) and update. - */ -class BasicUpgradePath extends UpgradePathTestCase { - public static function getInfo() { - return array( - 'name' => 'Basic upgrade path', - 'description' => 'Basic upgrade path tests.', - 'group' => 'Upgrade path', - ); - } - - public function setUp() { - // Path to the database dump files. - $this->databaseDumpFiles = array( - drupal_get_path('module', 'simpletest') . '/tests/upgrade/drupal-6.bare.database.php', - ); - parent::setUp(); - } - - /** - * Test a failed upgrade, and verify that the failure is reported. - */ - public function testFailedUpgrade() { - // Destroy a table that the upgrade process needs. - db_drop_table('access'); - // Assert that the upgrade fails. - $this->assertFalse($this->performUpgrade(FALSE), t('A failed upgrade should return messages.')); - } - - /** - * Test a successful upgrade. - */ - public function testBasicUpgrade() { - $this->assertTrue($this->performUpgrade(), t('The upgrade was completed successfully.')); - - // Hit the frontpage. - $this->drupalGet(''); - $this->assertResponse(200); - - // Verify that we are still logged in. - $this->drupalGet('user'); - $this->clickLink(t('Edit')); - $this->assertEqual($this->getUrl(), url('user/1/edit', array('absolute' => TRUE)), t('We are still logged in as admin at the end of the upgrade.')); - - // Logout and verify that we can login back in with our initial password. - $this->drupalLogout(); - $this->drupalLogin((object) array( - 'uid' => 1, - 'name' => 'admin', - 'pass_raw' => 'admin', - )); - - // The previous login should've triggered a password rehash, so login one - // more time to make sure the new hash is readable. - $this->drupalLogout(); - $this->drupalLogin((object) array( - 'uid' => 1, - 'name' => 'admin', - 'pass_raw' => 'admin', - )); - - // Test that the site name is correctly displayed. - $this->assertText('Drupal 6', t('The site name is correctly displayed.')); - - // Verify that the main admin sections are available. - $this->drupalGet('admin'); - $this->assertText(t('Content')); - $this->assertText(t('Appearance')); - $this->assertText(t('People')); - $this->assertText(t('Configuration')); - $this->assertText(t('Reports')); - $this->assertText(t('Structure')); - $this->assertText(t('Modules')); - - // Confirm that no {menu_links} entry exists for user/autocomplete. - $result = db_query('SELECT COUNT(*) FROM {menu_links} WHERE link_path = :user_autocomplete', array(':user_autocomplete' => 'user/autocomplete'))->fetchField(); - $this->assertFalse($result, t('No {menu_links} entry exists for user/autocomplete')); - } -} diff --git modules/simpletest/tests/upgrade/upgrade.upload.test modules/simpletest/tests/upgrade/upgrade.upload.test deleted file mode 100644 index e3e1dc2..0000000 --- modules/simpletest/tests/upgrade/upgrade.upload.test +++ /dev/null @@ -1,77 +0,0 @@ - 'Upload upgrade path', - 'description' => 'Upload upgrade path tests.', - 'group' => 'Upgrade path', - ); - } - - public function setUp() { - // Path to the database dump files. - $this->databaseDumpFiles = array( - drupal_get_path('module', 'simpletest') . '/tests/upgrade/drupal-6.filled.database.php', - drupal_get_path('module', 'simpletest') . '/tests/upgrade/drupal-6.upload.database.php', - ); - parent::setUp(); - // Set a small batch size to test multiple iterations of the batch. - $this->variable_set('upload_update_batch_size', 2); - - $this->uninstallModulesExcept(array('upload')); - } - - /** - * Test a successful upgrade. - */ - public function testUploadUpgrade() { - $this->assertTrue($this->performUpgrade(), t('The upgrade was completed successfully.')); - $query = new EntityFieldQuery(); - $query->entityCondition('entity_type', 'node'); - $query->entityCondition('bundle', 'page'); - $query->age(FIELD_LOAD_REVISION); - $query->fieldCondition('upload'); - $entities = $query->execute(); - $revisions = $entities['node']; - // Node revision 50 should not have uploaded files, as the entry in {files} - // is corrupted. - $this->assertFalse((isset($revisions[50])), 'Nodes with missing files do not contain filefield data.'); - // Node revisions 51-53 should have uploaded files. - $this->assertTrue((isset($revisions[51]) && isset($revisions[52]) && isset($revisions[53])), 'Nodes with uploaded files now contain filefield data.'); - // The test database lists uploaded filenames in the body of each node with - // uploaded files attached. Make sure all files are there in the same order. - foreach ($revisions as $vid => $revision) { - $node = node_load($revision->nid, $vid); - - // Assemble a list of the filenames as recorded in the node body before - // the upgrade. - $recorded_filenames = preg_split('/\s+/', $node->body[LANGUAGE_NONE][0]['value']); - // The first line of the node body should be "Attachments:" - if (strstr($recorded_filenames[0], "Attachments:")) { - unset($recorded_filenames[0]); - } - $recorded_filenames = array_values($recorded_filenames); - - $files = $node->upload[LANGUAGE_NONE]; - // Assemble a list of the filenames as they exist after the upgrade. - $filenames = array(); - foreach ($files as $file) { - $filenames[] = $file['filename']; - } - $this->assertIdentical($filenames, $recorded_filenames, 'The uploaded files are present in the same order after the upgrade.'); - } - // Make sure the file settings were properly migrated. - $d6_file_directory_temp = '/drupal-6/file/directory/temp'; - $d6_file_directory_path = '/drupal-6/file/directory/path'; - $d6_file_downloads = 2; // FILE_DOWNLOADS_PRIVATE - - $this->assertNull(variable_get('file_directory_temp', NULL), "The 'file_directory_temp' variable was properly removed."); - $this->assertEqual(variable_get('file_temporary_path', 'drupal-7-bogus'), $d6_file_directory_temp, "The 'file_temporary_path' setting was properly migrated."); - $this->assertEqual(variable_get('file_default_scheme', 'drupal-7-bogus'), 'private', "The 'file_default_scheme' setting was properly migrated."); - $this->assertEqual(variable_get('file_private_path', 'drupal-7-bogus'), $d6_file_directory_path, "The 'file_private_path' setting was properly migrated."); - } -} diff --git modules/statistics/statistics.install modules/statistics/statistics.install index d5855a7..a5dc7f8 100644 --- modules/statistics/statistics.install +++ modules/statistics/statistics.install @@ -134,25 +134,3 @@ function statistics_schema() { return $schema; } - -/** - * @addtogroup updates-6.x-to-7.x - * @{ - */ - -/** - * Update the {accesslog}.sid column to match the length of {sessions}.sid - */ -function statistics_update_7000() { - db_change_field('accesslog', 'sid', 'sid', array( - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - 'description' => 'Browser session ID of user that visited page.', - )); -} - -/** - * @} End of "addtogroup updates-6.x-to-7.x" - */ diff --git modules/system/system.api.php modules/system/system.api.php index 0981438..fc8eb97 100644 --- modules/system/system.api.php +++ modules/system/system.api.php @@ -3199,21 +3199,21 @@ function hook_update_N(&$sandbox) { * @see hook_update_N() */ function hook_update_dependencies() { - // Indicate that the mymodule_update_7000() function provided by this module - // must run after the another_module_update_7002() function provided by the + // Indicate that the mymodule_update_8000() function provided by this module + // must run after the another_module_update_8002() function provided by the // 'another_module' module. - $dependencies['mymodule'][7000] = array( - 'another_module' => 7002, + $dependencies['mymodule'][8000] = array( + 'another_module' => 8002, ); - // Indicate that the mymodule_update_7001() function provided by this module - // must run before the yet_another_module_update_7004() function provided by + // Indicate that the mymodule_update_8001() function provided by this module + // must run before the yet_another_module_update_8004() function provided by // the 'yet_another_module' module. (Note that declaring dependencies in this // direction should be done only in rare situations, since it can lead to the // following problem: If a site has already run the yet_another_module // module's database updates before it updates its codebase to pick up the // newest mymodule code, then the dependency declared here will be ignored.) - $dependencies['yet_another_module'][7004] = array( - 'mymodule' => 7001, + $dependencies['yet_another_module'][8004] = array( + 'mymodule' => 8001, ); return $dependencies; } diff --git modules/system/system.install modules/system/system.install index af02edc..c89ce4f 100644 --- modules/system/system.install +++ modules/system/system.install @@ -1646,1332 +1646,26 @@ function system_schema() { return $schema; } -/** - * The cache schema corresponding to system_update_7054. - * - * Drupal 7 adds several new cache tables. Since they all have identical schema - * this helper function allows them to re-use the same definition, without - * relying on system_schema(), which may change with future updates. - */ -function system_schema_cache_7054() { - return array( - 'description' => 'Generic cache table for caching things not separated out into their own tables. Contributed modules may also use this to store cached items.', - 'fields' => array( - 'cid' => array( - 'description' => 'Primary Key: Unique cache ID.', - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'data' => array( - 'description' => 'A collection of data to cache.', - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'big', - ), - 'expire' => array( - 'description' => 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.', - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'created' => array( - 'description' => 'A Unix timestamp indicating when the cache entry was created.', - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'serialized' => array( - 'description' => 'A flag to indicate whether content is serialized (1) or not (0).', - 'type' => 'int', - 'size' => 'small', - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'expire' => array('expire'), - ), - 'primary key' => array('cid'), - ); -} - - // Updates for core. function system_update_last_removed() { - return 6055; -} - -/** - * Implements hook_update_dependencies(). - */ -function system_update_dependencies() { - // Update 7053 adds new blocks, so make sure the block tables are updated. - $dependencies['system'][7053] = array( - 'block' => 7002, - ); - - return $dependencies; + return 7069; } /** - * @defgroup updates-6.x-to-7.x Updates from 6.x to 7.x + * @defgroup updates-7.x-to-8.x Updates from 7.x to 8.x * @{ - * Update functions from 6.x to 7.x. - */ - -/** - * Rename blog and forum permissions to be consistent with other content types. - */ -function system_update_7000() { - $result = db_query("SELECT rid, perm FROM {permission} ORDER BY rid"); - foreach ($result as $role) { - $renamed_permission = preg_replace('/(?<=^|,\ )create\ blog\ entries(?=,|$)/', 'create blog content', $role->perm); - $renamed_permission = preg_replace('/(?<=^|,\ )edit\ own\ blog\ entries(?=,|$)/', 'edit own blog content', $role->perm); - $renamed_permission = preg_replace('/(?<=^|,\ )edit\ any\ blog\ entry(?=,|$)/', 'edit any blog content', $role->perm); - $renamed_permission = preg_replace('/(?<=^|,\ )delete\ own\ blog\ entries(?=,|$)/', 'delete own blog content', $role->perm); - $renamed_permission = preg_replace('/(?<=^|,\ )delete\ any\ blog\ entry(?=,|$)/', 'delete any blog content', $role->perm); - - $renamed_permission = preg_replace('/(?<=^|,\ )create\ forum\ topics(?=,|$)/', 'create forum content', $role->perm); - $renamed_permission = preg_replace('/(?<=^|,\ )delete\ any\ forum\ topic(?=,|$)/', 'delete any forum content', $role->perm); - $renamed_permission = preg_replace('/(?<=^|,\ )delete\ own\ forum\ topics(?=,|$)/', 'delete own forum content', $role->perm); - $renamed_permission = preg_replace('/(?<=^|,\ )edit\ any\ forum\ topic(?=,|$)/', 'edit any forum content', $role->perm); - $renamed_permission = preg_replace('/(?<=^|,\ )edit\ own\ forum\ topics(?=,|$)/', 'edit own forum content', $role->perm); - - if ($renamed_permission != $role->perm) { - db_update('permission') - ->fields(array('perm' => $renamed_permission)) - ->condition('rid', $role->rid) - ->execute(); - } - } -} - -/** - * Generate a cron key and save it in the variables table. - */ -function system_update_7001() { - variable_set('cron_key', drupal_hash_base64(drupal_random_bytes(55))); -} - -/** - * Add a table to store blocked IP addresses. - */ -function system_update_7002() { - $schema['blocked_ips'] = array( - 'description' => 'Stores blocked IP addresses.', - 'fields' => array( - 'iid' => array( - 'description' => 'Primary Key: unique ID for IP addresses.', - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'ip' => array( - 'description' => 'IP address', - 'type' => 'varchar', - 'length' => 32, - 'not null' => TRUE, - 'default' => '', - ), - ), - 'indexes' => array( - 'blocked_ip' => array('ip'), - ), - 'primary key' => array('iid'), - ); - - db_create_table('blocked_ips', $schema['blocked_ips']); -} - -/** - * Update {blocked_ips} with valid IP addresses from {access}. - */ -function system_update_7003() { - $messages = array(); - $type = 'host'; - $result = db_query("SELECT mask FROM {access} WHERE status = :status AND type = :type", array( - ':status' => 0, - ':type' => $type, - )); - foreach ($result as $blocked) { - if (filter_var($blocked->mask, FILTER_VALIDATE_IP, FILTER_FLAG_NO_RES_RANGE) !== FALSE) { - db_insert('blocked_ips') - ->fields(array('ip' => $blocked->mask)) - ->execute(); - } - else { - $invalid_host = check_plain($blocked->mask); - $messages[] = t('The host !host is no longer blocked because it is not a valid IP address.', array('!host' => $invalid_host )); - } - } - if (isset($invalid_host)) { - drupal_set_message('Drupal no longer supports wildcard IP address blocking. Visitors whose IP addresses match ranges you have previously set using access rules will no longer be blocked from your site when you put the site online. See the IP address and referrer blocking Handbook page for alternative methods.', 'warning'); - } - // Make sure not to block any IP addresses that were specifically allowed by access rules. - if (!empty($result)) { - $result = db_query("SELECT mask FROM {access} WHERE status = :status AND type = :type", array( - ':status' => 1, - ':type' => $type, - )); - $or = db_condition('or'); - foreach ($result as $allowed) { - $or->condition('ip', $allowed->mask, 'LIKE'); - } - if (count($or)) { - db_delete('blocked_ips') - ->condition($or) - ->execute(); - } - } -} - -/** - * Remove hardcoded numeric deltas from all blocks in core. - */ -function system_update_7004(&$sandbox) { - // Get an array of the renamed block deltas, organized by module. - $renamed_deltas = array( - 'blog' => array('0' => 'recent'), - 'book' => array('0' => 'navigation'), - 'comment' => array('0' => 'recent'), - 'forum' => array( - '0' => 'active', - '1' => 'new', - ), - 'locale' => array('0' => LANGUAGE_TYPE_INTERFACE), - 'node' => array('0' => 'syndicate'), - 'poll' => array('0' => 'recent'), - 'profile' => array('0' => 'author-information'), - 'search' => array('0' => 'form'), - 'statistics' => array('0' => 'popular'), - 'system' => array('0' => 'powered-by'), - 'user' => array( - '0' => 'login', - '1' => 'navigation', - '2' => 'new', - '3' => 'online', - ), - ); - - $moved_deltas = array( - 'user' => array('navigation' => 'system'), - ); - - // Only run this the first time through the batch update. - if (!isset($sandbox['progress'])) { - // Rename forum module's block variables. - $forum_block_num_0 = variable_get('forum_block_num_0'); - if (isset($forum_block_num_0)) { - variable_set('forum_block_num_active', $forum_block_num_0); - variable_del('forum_block_num_0'); - } - $forum_block_num_1 = variable_get('forum_block_num_1'); - if (isset($forum_block_num_1)) { - variable_set('forum_block_num_new', $forum_block_num_1); - variable_del('forum_block_num_1'); - } - } - - update_fix_d7_block_deltas($sandbox, $renamed_deltas, $moved_deltas); - -} - -/** - * Remove throttle columns and variables. - */ -function system_update_7005() { - db_drop_field('blocks', 'throttle'); - db_drop_field('system', 'throttle'); - variable_del('throttle_user'); - variable_del('throttle_anonymous'); - variable_del('throttle_level'); - variable_del('throttle_probability_limiter'); -} - -/** - * Convert to new method of storing permissions. - * - * This update is in system.install rather than user.install so that - * all modules can use the updated permission scheme during their updates. - */ -function system_update_7007() { - // Copy the permissions from the old {permission} table to the new {role_permission} table. - $messages = array(); - $result = db_query("SELECT rid, perm FROM {permission} ORDER BY rid ASC"); - $query = db_insert('role_permission')->fields(array('rid', 'permission')); - foreach ($result as $role) { - foreach (explode(', ', $role->perm) as $perm) { - $query->values(array( - 'rid' => $role->rid, - 'permission' => $perm, - )); - } - $messages[] = t('Inserted into {role_permission} the permissions for role ID !id', array('!id' => $role->rid)); - } - $query->execute(); - db_drop_table('permission'); - - return implode(', ', $messages); -} - -/** - * Rename the variable for primary links. - */ -function system_update_7009() { - $current_primary = variable_get('menu_primary_links_source'); - if (isset($current_primary)) { - variable_set('menu_main_links_source', $current_primary); - variable_del('menu_primary_links_source'); - } -} - -/** - * Split the 'bypass node access' permission from 'administer nodes'. - */ -function system_update_7011() { - // Get existing roles that can 'administer nodes'. - $rids = array(); - $rids = db_query("SELECT rid FROM {role_permission} WHERE permission = :perm", array(':perm' => 'administer nodes'))->fetchCol(); - // None found. - if (empty($rids)) { - return; - } - $insert = db_insert('role_permission')->fields(array('rid', 'permission')); - foreach ($rids as $rid) { - $insert->values(array( - 'rid' => $rid, - 'permission' => 'bypass node access', - )); - } - $insert->execute(); -} - -/** - * Convert default time zone offset to default time zone name. - */ -function system_update_7013() { - $timezone = NULL; - $timezones = system_time_zones(); - // If the contributed Date module set a default time zone name, use this - // setting as the default time zone. - if (($timezone_name = variable_get('date_default_timezone_name')) && isset($timezones[$timezone_name])) { - $timezone = $timezone_name; - } - // If the contributed Event module has set a default site time zone, look up - // the time zone name and use it as the default time zone. - if (!$timezone && ($timezone_id = variable_get('date_default_timezone_id', 0))) { - try { - $timezone_name = db_query('SELECT name FROM {event_timezones} WHERE timezone = :timezone_id', array(':timezone_id' => $timezone_id))->fetchField(); - if (($timezone_name = str_replace(' ', '_', $timezone_name)) && isset($timezones[$timezone_name])) { - $timezone = $timezone_name; - } - } - catch (PDOException $e) { - // Ignore error if event_timezones table does not exist or unexpected - // schema found. - } - } - - // Check to see if timezone was overriden in update_prepare_d7_bootstrap(). - $offset = variable_get('date_temporary_timezone'); - // If not, use the default. - if (!isset($offset)) { - $offset = variable_get('date_default_timezone', 0); - } - - // If the previous default time zone was a non-zero offset, guess the site's - // intended time zone based on that offset and the server's daylight saving - // time status. - if (!$timezone && $offset) { - $timezone_name = timezone_name_from_abbr('', intval($offset), date('I')); - if ($timezone_name && isset($timezones[$timezone_name])) { - $timezone = $timezone_name; - } - } - // Otherwise, the default time zone offset was zero, which is UTC. - if (!$timezone) { - $timezone = 'UTC'; - } - variable_set('date_default_timezone', $timezone); - drupal_set_message('The default time zone has been set to ' . check_plain($timezone) . '. Check the ' . l('date and time configuration page', 'admin/config/regional/settings') . ' to configure it correctly.', 'warning'); - // Remove temporary override. - variable_del('date_temporary_timezone'); -} - -/** - * Change the user logout path. - */ -function system_update_7015() { - db_update('menu_links') - ->fields(array('link_path' => 'user/logout')) - ->condition('link_path', 'logout') - ->execute(); - db_update('menu_links') - ->fields(array('router_path' => 'user/logout')) - ->condition('router_path', 'logout') - ->execute(); - - db_update('menu_links') - ->fields(array( - 'menu_name' => 'user-menu', - 'plid' => 0, - )) - ->condition(db_or() - ->condition('link_path', 'user/logout') - ->condition('router_path', 'user/logout') - ) - ->condition('module', 'system') - ->condition('customized', 0) - ->execute(); -} - -/** - * Remove custom datatype *_unsigned in PostgreSQL. - */ -function system_update_7016() { - // Only run these queries if the driver used is pgsql. - if (db_driver() == 'pgsql') { - $result = db_query("SELECT c.relname AS table, a.attname AS field, - pg_catalog.format_type(a.atttypid, a.atttypmod) AS type - FROM pg_catalog.pg_attribute a - LEFT JOIN pg_class c ON (c.oid = a.attrelid) - WHERE pg_catalog.pg_table_is_visible(c.oid) AND c.relkind = 'r' - AND pg_catalog.format_type(a.atttypid, a.atttypmod) LIKE '%unsigned%'"); - foreach ($result as $row) { - switch ($row->type) { - case 'smallint_unsigned': - $datatype = 'int'; - break; - case 'int_unsigned': - case 'bigint_unsigned': - default: - $datatype = 'bigint'; - break; - } - db_query('ALTER TABLE ' . $row->table . ' ALTER COLUMN "' . $row->field . '" TYPE ' . $datatype); - db_query('ALTER TABLE ' . $row->table . ' ADD CHECK ("' . $row->field . '" >= 0)'); - } - db_query('DROP DOMAIN IF EXISTS smallint_unsigned'); - db_query('DROP DOMAIN IF EXISTS int_unsigned'); - db_query('DROP DOMAIN IF EXISTS bigint_unsigned'); - } -} - -/** - * Change the theme setting 'toggle_node_info' into a per content type variable. - */ -function system_update_7017() { - // Get the global theme settings. - $settings = variable_get('theme_settings', array()); - // Get the settings of the default theme. - $settings = array_merge($settings, variable_get('theme_' . variable_get('theme_default', 'garland') . '_settings', array())); - - $types = _update_7000_node_get_types(); - foreach ($types as $type) { - if (isset($settings['toggle_node_info_' . $type->type])) { - variable_set('node_submitted_' . $type->type, $settings['toggle_node_info_' . $type->type]); - } - } - - // Unset deprecated 'toggle_node_info' theme settings. - $theme_settings = variable_get('theme_settings', array()); - foreach ($theme_settings as $setting => $value) { - if (substr($setting, 0, 16) == 'toggle_node_info') { - unset($theme_settings[$setting]); - } - } - variable_set('theme_settings', $theme_settings); -} - -/** - * Shorten the {system}.type column and modify indexes. - */ -function system_update_7018() { - db_drop_index('system', 'modules'); - db_drop_index('system', 'type_name'); - db_change_field('system', 'type', 'type', array('type' => 'varchar', 'length' => 12, 'not null' => TRUE, 'default' => '')); - db_add_index('system', 'type_name', array('type', 'name')); -} - -/** - * Enable field and field_ui modules. - */ -function system_update_7020() { - $module_list = array('field_sql_storage', 'field', 'field_ui'); - module_enable($module_list, FALSE); -} - -/** - * Change the PHP for settings permission. - */ -function system_update_7021() { - db_update('role_permission') - ->fields(array('permission' => 'use PHP for settings')) - ->condition('permission', 'use PHP for block visibility') - ->execute(); -} - -/** - * Enable field type modules. - */ -function system_update_7027() { - $module_list = array('text', 'number', 'list', 'options'); - module_enable($module_list, FALSE); -} - -/** - * Add new 'view own unpublished content' permission for authenticated users. - * Preserves legacy behavior from Drupal 6.x. - */ -function system_update_7029() { - db_insert('role_permission') - ->fields(array( - 'rid' => DRUPAL_AUTHENTICATED_RID, - 'permission' => 'view own unpublished content', - )) - ->execute(); -} - -/** -* Alter field hostname to identifier in the {flood} table. - */ -function system_update_7032() { - db_drop_index('flood', 'allow'); - db_change_field('flood', 'hostname', 'identifier', array('type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '')); - db_add_index('flood', 'allow', array('event', 'identifier', 'timestamp')); -} - -/** - * Move CACHE_AGGRESSIVE to CACHE_NORMAL. + * Update functions from 7.x to 8.x. */ -function system_update_7033() { - if (variable_get('cache') == 2) { - variable_set('cache', 1); - return t('Aggressive caching was disabled and replaced with normal caching. Read the page caching section in default.settings.php for more information on how to enable similar functionality.'); - } -} /** - * Migrate the file path settings and create the new {file_managed} table. - */ -function system_update_7034() { - $files_directory = variable_get('file_directory_path', NULL); - if (variable_get('file_downloads', 1) == 1) { - // Our default is public, so we don't need to set anything. - if (!empty($files_directory)) { - variable_set('file_public_path', $files_directory); - } - } - elseif (variable_get('file_downloads', 1) == 2) { - variable_set('file_default_scheme', 'private'); - if (!empty($files_directory)) { - variable_set('file_private_path', $files_directory); - } - } - variable_del('file_downloads'); - - $schema['file_managed'] = array( - 'description' => 'Stores information for uploaded files.', - 'fields' => array( - 'fid' => array( - 'description' => 'File ID.', - 'type' => 'serial', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'uid' => array( - 'description' => 'The {user}.uid of the user who is associated with the file.', - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'filename' => array( - 'description' => 'Name of the file with no path components. This may differ from the basename of the filepath if the file is renamed to avoid overwriting an existing file.', - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'uri' => array( - 'description' => 'URI of file.', - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'filemime' => array( - 'description' => "The file's MIME type.", - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'filesize' => array( - 'description' => 'The size of the file in bytes.', - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'status' => array( - 'description' => 'A field indicating the status of the file. Two status are defined in core: temporary (0) and permanent (1). Temporary files older than DRUPAL_MAXIMUM_TEMP_FILE_AGE will be removed during a cron run.', - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'size' => 'tiny', - ), - 'timestamp' => array( - 'description' => 'UNIX timestamp for when the file was added.', - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'uid' => array('uid'), - 'status' => array('status'), - 'timestamp' => array('timestamp'), - ), - 'unique keys' => array( - 'uri' => array('uri'), - ), - 'primary key' => array('fid'), - ); - - db_create_table('file_managed', $schema['file_managed']); -} - -/** - * Split the 'access site in maintenance mode' permission from 'administer site configuration'. - */ -function system_update_7036() { - // Get existing roles that can 'administer site configuration'. - $rids = db_query("SELECT rid FROM {role_permission} WHERE permission = :perm", array(':perm' => 'administer site configuration'))->fetchCol(); - // None found. - if (empty($rids)) { - return; - } - $insert = db_insert('role_permission')->fields(array('rid', 'permission')); - foreach ($rids as $rid) { - $insert->values(array( - 'rid' => $rid, - 'permission' => 'access site in maintenance mode', - )); - } - $insert->execute(); - - // Remove obsolete variable 'site_offline_message'. See - // update_fix_d7_requirements(). - variable_del('site_offline_message'); -} - -/** - * Upgrade the {url_alias} table and create a cache bin for path aliases. - */ -function system_update_7042() { - // update_fix_d7_requirements() adds 'fake' source and alias columns to - // allow bootstrap to run without fatal errors. Remove those columns now - // so that we can rename properly. - db_drop_field('url_alias', 'source'); - db_drop_field('url_alias', 'alias'); - - // Drop indexes. - db_drop_index('url_alias', 'src_language_pid'); - db_drop_unique_key('url_alias', 'dst_language_pid'); - // Rename the fields, and increase their length to 255 characters. - db_change_field('url_alias', 'src', 'source', array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '')); - db_change_field('url_alias', 'dst', 'alias', array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '')); - // Add indexes back. We replace the unique key with an index since it never - // provided any meaningful unique constraint ('pid' is a primary key). - db_add_index('url_alias', 'source_language_pid', array('source', 'language', 'pid')); - db_add_index('url_alias', 'alias_language_pid', array('alias', 'language', 'pid')); -} - -/** - * Drop the actions_aid table. - */ -function system_update_7044() { - // The current value of the increment has been taken into account when - // creating the sequences table in update_fix_d7_requirements(). - db_drop_table('actions_aid'); -} - -/** - * Add expiration field to the {flood} table. - */ -function system_update_7045() { - db_add_field('flood', 'expiration', array('description' => 'Expiration timestamp. Expired events are purged on cron run.', 'type' => 'int', 'not null' => TRUE, 'default' => 0)); - db_add_index('flood', 'purge', array('expiration')); -} - -/** - * Switch from the Minnelli theme if it is the default or admin theme. - */ -function system_update_7046() { - if (variable_get('theme_default') == 'minnelli' || variable_get('admin_theme') == 'minnelli') { - // Make sure Garland is enabled. - db_update('system') - ->fields(array('status' => 1)) - ->condition('type', 'theme') - ->condition('name', 'garland') - ->execute(); - if (variable_get('theme_default') != 'garland') { - // If the default theme isn't Garland, transfer all of Minnelli's old - // settings to Garland. - $settings = variable_get('theme_minnelli_settings', array()); - // Set the theme setting width to "fixed" to match Minnelli's old layout. - $settings['garland_width'] = 'fixed'; - variable_set('theme_garland_settings', $settings); - // Remove Garland's color files since they won't match Minnelli's. - foreach (variable_get('color_garland_files', array()) as $file) { - @drupal_unlink($file); - } - if (isset($file) && $file = dirname($file)) { - @drupal_rmdir($file); - } - variable_del('color_garland_palette'); - variable_del('color_garland_stylesheets'); - variable_del('color_garland_logo'); - variable_del('color_garland_files'); - variable_del('color_garland_screenshot'); - } - if (variable_get('theme_default') == 'minnelli') { - variable_set('theme_default', 'garland'); - } - if (variable_get('admin_theme') == 'minnelli') { - variable_set('admin_theme', 'garland'); - } - } -} - -/** - * Normalize the front page path variable. - */ -function system_update_7047() { - variable_set('site_frontpage', drupal_get_normal_path(variable_get('site_frontpage', 'node'))); -} - -/** - * Convert path languages from the empty string to LANGUAGE_NONE. - */ -function system_update_7048() { - db_update('url_alias') - ->fields(array('language' => LANGUAGE_NONE)) - ->condition('language', '') - ->execute(); -} - -/** - * Rename 'Default' profile to 'Standard.' - */ -function system_update_7049() { - if (variable_get('install_profile', 'standard') == 'default') { - variable_set('install_profile', 'standard'); - } -} - -/** - * Change {batch}.id column from serial to regular int. - */ -function system_update_7050() { - db_change_field('batch', 'bid', 'bid', array('description' => 'Primary Key: Unique batch ID.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE)); -} - -/** - * make the IP field IPv6 compatible - */ -function system_update_7051() { - db_change_field('blocked_ips', 'ip', 'ip', array('description' => 'IP address', 'type' => 'varchar', 'length' => 40, 'not null' => TRUE, 'default' => '')); -} - -/** - * Rename file to include_file in {menu_router} table. - */ -function system_update_7052() { - db_change_field('menu_router', 'file', 'include_file', array('type' => 'text', 'size' => 'medium')); -} - -/** - * Upgrade standard blocks and menus. - */ -function system_update_7053() { - if (db_table_exists('menu_custom')) { - // Create the same menus as in menu_install(). - db_insert('menu_custom') - ->fields(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(); - - db_insert('menu_custom') - ->fields(array('menu_name' => 'management', 'title' => 'Management', 'description' => "The Management menu contains links for administrative tasks.")) - ->execute(); - } - - block_flush_caches(); - - // Show the new menu blocks along the navigation block. - $blocks = db_query("SELECT theme, status, region, weight, visibility, pages FROM {block} WHERE module = 'system' AND delta = 'navigation'"); - $deltas = db_or() - ->condition('delta', 'user-menu') - ->condition('delta', 'management'); - - foreach ($blocks as $block) { - db_update('block') - ->fields(array( - 'status' => $block->status, - 'region' => $block->region, - 'weight' => $block->weight, - 'visibility' => $block->visibility, - 'pages' => $block->pages, - )) - ->condition('theme', $block->theme) - ->condition('module', 'system') - ->condition($deltas) - ->execute(); - } -} - -/** - * Remove {cache_*}.headers columns. - */ -function system_update_7054() { - // Update: update_fix_d7_requirements() installs this version for cache_path - // already, so we don't include it in this particular update. It should be - // included in later updates though. - $cache_tables = array( - 'cache' => 'Generic cache table for caching things not separated out into their own tables. Contributed modules may also use this to store cached items.', - 'cache_form' => 'Cache table for the form system to store recently built forms and their storage data, to be used in subsequent page requests.', - 'cache_page' => 'Cache table used to store compressed pages for anonymous users, if page caching is enabled.', - 'cache_menu' => 'Cache table for the menu system to store router information as well as generated link trees for various menu/page/user combinations.', - ); - $schema = system_schema_cache_7054(); - foreach ($cache_tables as $table => $description) { - $schema['description'] = $description; - db_drop_table($table); - db_create_table($table, $schema); - } -} - -/** - * Converts fields that store serialized variables from text to blob. - */ -function system_update_7055() { - $spec = array( - 'description' => 'The value of the variable.', - 'type' => 'blob', - 'not null' => TRUE, - 'size' => 'big', - 'translatable' => TRUE, - ); - db_change_field('variable', 'value', 'value', $spec); - - $spec = array( - 'description' => 'Parameters to be passed to the callback function.', - 'type' => 'blob', - 'not null' => TRUE, - 'size' => 'big', - ); - db_change_field('actions', 'parameters', 'parameters', $spec); - - $spec = array( - 'description' => 'A serialized array containing the processing data for the batch.', - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'big', - ); - db_change_field('batch', 'batch', 'batch', $spec); - - $spec = array( - 'description' => 'A serialized array of function names (like node_load) to be called to load an object corresponding to a part of the current path.', - 'type' => 'blob', - 'not null' => TRUE, - ); - db_change_field('menu_router', 'load_functions', 'load_functions', $spec); - - $spec = array( - 'description' => 'A serialized array of function names (like user_uid_optional_to_arg) to be called to replace a part of the router path with another string.', - 'type' => 'blob', - 'not null' => TRUE, - ); - db_change_field('menu_router', 'to_arg_functions', 'to_arg_functions', $spec); - - $spec = array( - 'description' => 'A serialized array of arguments for the access callback.', - 'type' => 'blob', - 'not null' => FALSE, - ); - db_change_field('menu_router', 'access_arguments', 'access_arguments', $spec); - - $spec = array( - 'description' => 'A serialized array of arguments for the page callback.', - 'type' => 'blob', - 'not null' => FALSE, - ); - db_change_field('menu_router', 'page_arguments', 'page_arguments', $spec); - - $spec = array( - 'description' => 'A serialized array of options to be passed to the url() or l() function, such as a query string or HTML attributes.', - 'type' => 'blob', - 'not null' => FALSE, - 'translatable' => TRUE, - ); - db_change_field('menu_links', 'options', 'options', $spec); - - $spec = array( - 'description' => 'The serialized contents of $_SESSION, an array of name/value pairs that persists across page requests by this session ID. Drupal loads $_SESSION from here at the start of each request and saves it at the end.', - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'big', - ); - db_change_field('sessions', 'session', 'session', $spec); - - $spec = array( - 'description' => "A serialized array containing information from the module's .info file; keys can include name, description, package, version, core, dependencies, and php.", - 'type' => 'blob', - 'not null' => FALSE, - ); - db_change_field('system', 'info', 'info', $spec); -} - -/** - * Increase the size of session-ids. - */ -function system_update_7057() { - $spec = array( - 'description' => "A session ID. The value is generated by PHP's Session API.", - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - 'default' => '', - ); - db_change_field('sessions', 'sid', 'sid', $spec); -} - -/** - * Remove cron semaphore variable. - */ -function system_update_7058() { - variable_del('cron_semaphore'); -} - -/** - * Create the {file_usage} table. - */ -function system_update_7059() { - $spec = array( - 'description' => 'Track where a file is used.', - 'fields' => array( - 'fid' => array( - 'description' => 'File ID.', - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - ), - 'module' => array( - 'description' => 'The name of the module that is using the file.', - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'type' => array( - 'description' => 'The name of the object type in which the file is used.', - 'type' => 'varchar', - 'length' => 64, - 'not null' => TRUE, - 'default' => '', - ), - 'id' => array( - 'description' => 'The primary key of the object using the file.', - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'count' => array( - 'description' => 'The number of times this file is used by this object.', - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'primary key' => array('fid', 'type', 'id', 'module'), - 'indexes' => array( - 'type_id' => array('type', 'id'), - 'fid_count' => array('fid', 'count'), - 'fid_module' => array('fid', 'module'), - ), - ); - db_create_table('file_usage', $spec); -} - -/** - * Create fields in preparation for migrating upload.module to file.module. - */ -function system_update_7060() { - if (!db_table_exists('upload')) { - return; - } - - if (!db_query_range('SELECT 1 FROM {upload}', 0, 1)->fetchField()) { - // There is nothing to migrate. Delete variables and the empty table. There - // is no need to create fields that are not going to be used. - foreach (_update_7000_node_get_types() as $node_type) { - variable_del('upload_' . $node_type->type); - } - db_drop_table('upload'); - return; - } - - // Check which node types have upload.module attachments enabled. - $context['types'] = array(); - foreach (_update_7000_node_get_types() as $node_type) { - if (variable_get('upload_' . $node_type->type, 0)) { - $context['types'][$node_type->type] = $node_type->type; - } - } - - // The {upload} table will be deleted when this update is complete so we - // want to be careful to migrate all the data, even for node types that - // may have had attachments disabled after files were uploaded. Look for - // any other node types referenced by the upload records and add those to - // the list. The admin can always remove the field later. - $results = db_query('SELECT DISTINCT type FROM {node} n INNER JOIN {node_revision} nr ON n.nid = nr.nid INNER JOIN {upload} u ON nr.vid = u.vid'); - foreach ($results as $row) { - if (!isset($context['types'][$row->type])) { - drupal_set_message(t('The content type %rowtype had uploads disabled but contained uploaded file data. Uploads have been re-enabled to migrate the existing data. You may delete the "File attachments" field in the %rowtype type if this data is not necessary.', array('%rowtype' => $row->type))); - $context['types'][$row->type] = $row->type; - } - } - - // Create a single "upload" field on all the content types that have uploads - // enabled, then add an instance to each enabled type. - if (count($context['types']) > 0) { - module_enable(array('file')); - $field = array( - 'field_name' => 'upload', - 'type' => 'file', - 'module' => 'file', - 'locked' => FALSE, - 'cardinality' => FIELD_CARDINALITY_UNLIMITED, - 'translatable' => FALSE, - 'settings' => array( - 'display_field' => 1, - 'display_default' => variable_get('upload_list_default', 1), - 'uri_scheme' => file_default_scheme(), - 'default_file' => 0, - ), - ); - - $upload_size = variable_get('upload_uploadsize_default', 1); - $instance = array( - 'field_name' => 'upload', - 'entity_type' => 'node', - 'bundle' => NULL, - 'label' => 'File attachments', - 'required' => 0, - 'description' => '', - 'widget' => array( - 'weight' => '1', - 'settings' => array( - 'progress_indicator' => 'throbber', - ), - 'type' => 'file_generic', - ), - 'settings' => array( - 'max_filesize' => $upload_size ? ($upload_size . ' MB') : '', - 'file_extensions' => variable_get('upload_extensions_default', 'jpg jpeg gif png txt doc xls pdf ppt pps odt ods odp'), - 'file_directory' => '', - 'description_field' => 1, - ), - 'display' => array( - 'default' => array( - 'label' => 'hidden', - 'type' => 'file_table', - 'settings' => array(), - 'weight' => 0, - 'module' => 'file', - ), - 'full' => array( - 'label' => 'hidden', - 'type' => 'file_table', - 'settings' => array(), - 'weight' => 0, - 'module' => 'file', - ), - 'teaser' => array( - 'label' => 'hidden', - 'type' => 'hidden', - 'settings' => array(), - 'weight' => 0, - 'module' => NULL, - ), - 'rss' => array( - 'label' => 'hidden', - 'type' => 'file_table', - 'settings' => array(), - 'weight' => 0, - 'module' => 'file', - ), - ), - ); - - // Create the field. - _update_7000_field_create_field($field); - - // Create the instances. - foreach ($context['types'] as $bundle) { - $instance['bundle'] = $bundle; - _update_7000_field_create_instance($field, $instance); - // Now that the instance is created, we can safely delete any legacy - // node type information. - variable_del('upload_' . $bundle); - } - } - else { - // No uploads or content types with uploads enabled. - db_drop_table('upload'); - } -} - -/** - * Migrate upload.module data to the newly created file field. - */ -function system_update_7061(&$sandbox) { - if (!db_table_exists('upload')) { - return; - } - - if (!isset($sandbox['progress'])) { - // Retrieve a list of node revisions that have uploaded files attached. - // DISTINCT queries are expensive, especially when paged, so we store the - // data in its own table for the duration of the update. - $table = array( - 'description' => t('Stores temporary data for system_update_7061.'), - 'fields' => array('vid' => array('type' => 'int')), - 'primary key' => array('vid'), - ); - db_create_table('system_update_7061', $table); - $query = db_select('upload', 'u'); - $query->distinct(); - $query->addField('u','vid'); - db_insert('system_update_7061') - ->from($query) - ->execute(); - - // Initialize batch update information. - $sandbox['progress'] = 0; - $sandbox['last_vid_processed'] = -1; - $sandbox['max'] = db_query("SELECT COUNT(*) FROM {system_update_7061}")->fetchField(); - } - - // Determine vids for this batch. - // Process all files attached to a given revision during the same batch. - $limit = variable_get('upload_update_batch_size', 100); - $vids = db_query_range('SELECT vid FROM {system_update_7061} WHERE vid > :lastvid ORDER BY vid', 0, $limit, array(':lastvid' => $sandbox['last_vid_processed'])) - ->fetchCol(); - - // Retrieve information on all the files attached to these revisions. - if (!empty($vids)) { - $node_revisions = array(); - $result = db_query('SELECT u.fid, u.vid, u.list, u.description, n.nid, n.type, u.weight FROM {upload} u INNER JOIN {node_revision} nr ON u.vid = nr.vid INNER JOIN {node} n ON n.nid = nr.nid WHERE u.vid IN (:vids) ORDER BY u.vid, u.weight, u.fid', array(':vids' => $vids)); - foreach ($result as $record) { - // For each uploaded file, retrieve the corresponding data from the old - // files table (since upload doesn't know about the new entry in the - // file_managed table). - $file = db_select('files', 'f') - ->fields('f', array('fid', 'uid', 'filename', 'filepath', 'filemime', 'filesize', 'status', 'timestamp')) - ->condition('f.fid', $record->fid) - ->execute() - ->fetchAssoc(); - if (!$file) { - continue; - } - - // Add in the file information from the upload table. - $file['description'] = $record->description; - $file['display'] = $record->list; - - // Create one record for each revision that contains all the uploaded - // files. - $node_revisions[$record->vid]['nid'] = $record->nid; - $node_revisions[$record->vid]['vid'] = $record->vid; - $node_revisions[$record->vid]['type'] = $record->type; - $node_revisions[$record->vid]['file'][LANGUAGE_NONE][] = $file; - } - - // Now that we know which files belong to which revisions, update the - // files'// database entries, and save a reference to each file in the - // upload field on their node revisions. - $basename = variable_get('file_directory_path', conf_path() . '/files'); - $scheme = file_default_scheme() . '://'; - foreach ($node_revisions as $vid => $revision) { - foreach ($revision['file'][LANGUAGE_NONE] as $delta => $file) { - // We will convert filepaths to uri using the default scheme - // and stripping off the existing file directory path. - $file['uri'] = $scheme . str_replace($basename, '', $file['filepath']); - $file['uri'] = file_stream_wrapper_uri_normalize($file['uri']); - unset($file['filepath']); - // Insert into the file_managed table. - // Each fid should only be stored once in file_managed. - db_merge('file_managed') - ->key(array( - 'fid' => $file['fid'], - )) - ->fields(array( - 'uid' => $file['uid'], - 'filename' => $file['filename'], - 'uri' => $file['uri'], - 'filemime' => $file['filemime'], - 'filesize' => $file['filesize'], - 'status' => $file['status'], - 'timestamp' => $file['timestamp'], - )) - ->execute(); - - // Add the usage entry for the file. - $file = (object) $file; - file_usage_add($file, 'file', 'node', $revision['nid']); - - // Update the node revision's upload file field with the file data. - $revision['file'][LANGUAGE_NONE][$delta] = array('fid' => $file->fid, 'display' => $file->display, 'description' => $file->description); - } - - // Write the revision's upload field data into the field_upload tables. - $node = (object) $revision; - _update_7000_field_sql_storage_write('node', $node->type, $node->nid, $node->vid, 'upload', $node->file); - - // Update our progress information for the batch update. - $sandbox['progress']++; - $sandbox['last_vid_processed'] = $vid; - } - } - - // If less than limit node revisions were processed, the update process is - // finished. - if (count($vids) < $limit) { - $finished = TRUE; - } - - // If there's no max value then there's nothing to update and we're finished. - if (empty($sandbox['max']) || isset($finished)) { - db_drop_table('upload'); - db_drop_table('system_update_7061'); - return t('Upload module has been migrated to File module.'); - } - else { - // Indicate our current progress to the batch update system. - $sandbox['#finished'] = $sandbox['progress'] / $sandbox['max']; - } -} - -/** - * Replace 'system_list' index with 'bootstrap' index on {system}. - */ -function system_update_7062() { - db_drop_index('system', 'bootstrap'); - db_drop_index('system', 'system_list'); - db_add_index('system', 'system_list', array('status', 'bootstrap', 'type', 'weight', 'name')); -} - -/** - * Delete {menu_links} records for 'type' => MENU_CALLBACK which would not appear in a fresh install. - */ -function system_update_7063() { - // For router items where 'type' => MENU_CALLBACK, {menu_router}.type is - // stored as 4 in Drupal 6, and 0 in Drupal 7. Fortunately Drupal 7 doesn't - // store any types as 4, so delete both. - $result = db_query('SELECT ml.mlid FROM {menu_links} ml INNER JOIN {menu_router} mr ON ml.router_path = mr.path WHERE ml.module = :system AND ml.customized = 0 AND mr.type IN(:callbacks)', array(':callbacks' => array(0, 4), ':system' => 'system')); - foreach ($result as $record) { - db_delete('menu_links')->condition('mlid', $record->mlid)->execute(); - } -} - -/** - * Remove block_callback field from {menu_router}. - */ -function system_update_7064() { - db_drop_field('menu_router', 'block_callback'); -} - -/** - * Remove the default value for sid. - */ -function system_update_7065() { - $spec = array( - 'description' => "A session ID. The value is generated by Drupal's session handlers.", - 'type' => 'varchar', - 'length' => 128, - 'not null' => TRUE, - ); - db_drop_primary_key('sessions'); - db_change_field('sessions', 'sid', 'sid', $spec, array('primary key' => array('sid', 'ssid'))); - // Delete any sessions with empty session ID. - db_delete('sessions')->condition('sid', '')->execute(); -} - -/** - * Migrate the 'file_directory_temp' variable. - */ -function system_update_7066() { - $d6_file_directory_temp = variable_get('file_directory_temp', file_directory_temp()); - variable_set('file_temporary_path', $d6_file_directory_temp); - variable_del('file_directory_temp'); -} - -/** - * Grant administrators permission to view the administration theme. - */ -function system_update_7067() { - // Users with access to administration pages already see the administration - // theme in some places (if one is enabled on the site), so we want them to - // continue seeing it. - $admin_roles = user_roles(FALSE, 'access administration pages'); - foreach (array_keys($admin_roles) as $rid) { - _update_7000_user_role_grant_permissions($rid, array('view the administration theme'), 'system'); - } - // The above check is not guaranteed to reach all administrative users of the - // site, so if the site is currently using an administration theme, display a - // message also. - if (variable_get('admin_theme')) { - if (empty($admin_roles)) { - drupal_set_message('The new "View the administration theme" permission is required in order to view your site\'s administration theme. You can grant this permission to your site\'s administrators on the permissions page.'); - } - else { - drupal_set_message('The new "View the administration theme" permission is required in order to view your site\'s administration theme. This permission has been automatically granted to the following roles: ' . check_plain(implode(', ', $admin_roles)) . '. You can grant this permission to other roles on the permissions page.'); - } - } -} - -/** - * Update {url_alias}.language description. - */ -function system_update_7068() { - $spec = array( - 'description' => "The language this alias is for; if 'und', the alias will be used for unknown languages. Each Drupal path can have an alias for each supported language.", - 'type' => 'varchar', - 'length' => 12, - 'not null' => TRUE, - 'default' => '', - ); - db_change_field('url_alias', 'language', 'language', $spec); -} - -/** - * Remove the obsolete 'site_offline' variable. - * - * @see update_fix_d7_requirements() + * Placeholder update to set the schema version to 8000. */ -function system_update_7069() { - variable_del('site_offline'); +function system_update_8000() { + // Fill in the first update to Drupal 8 when needed. } /** - * @} End of "defgroup updates-6.x-to-7.x" - * The next series of updates should start at 8000. + * @} End of "defgroup updates-7.x-to-8.x" + * The next series of updates should start at 9000. */ diff --git modules/taxonomy/taxonomy.install modules/taxonomy/taxonomy.install index f28ffed..10009d6 100644 --- modules/taxonomy/taxonomy.install +++ modules/taxonomy/taxonomy.install @@ -241,581 +241,3 @@ function taxonomy_field_schema($field) { ), ); } - -/** - * Implements hook_update_dependencies(). - */ -function taxonomy_update_dependencies() { - // Taxonomy update 7002 creates comment Field API bundles and therefore must - // run after the Field module has been enabled, but before upgrading field - // data. - $dependencies['taxonomy'][7002] = array( - 'system' => 7049, - ); - $dependencies['user'][7006] = array( - 'taxonomy' => 7002, - ); - $dependencies['system'][7050] = array( - 'taxonomy' => 7002, - ); - // It also must run before nodes are upgraded to use the Field API. - $dependencies['node'][7006] = array( - 'taxonomy' => 7002, - ); - // Ensure that format columns are only changed after Filter module has changed - // the primary records. - $dependencies['taxonomy'][7009] = array( - 'filter' => 7010, - ); - - return $dependencies; -} - -/** - * Utility function: get the list of vocabularies directly from the database. - * - * This function is valid for a database schema version 7002. - * - * @ingroup update-api-6.x-to-7.x - */ -function _update_7002_taxonomy_get_vocabularies() { - return db_query('SELECT v.* FROM {taxonomy_vocabulary} v ORDER BY v.weight, v.name')->fetchAllAssoc('vid', PDO::FETCH_OBJ); -} - -/** - * Rename taxonomy tables. - */ -function taxonomy_update_7001() { - db_rename_table('term_data', 'taxonomy_term_data'); - db_rename_table('term_hierarchy', 'taxonomy_term_hierarchy'); - db_rename_table('term_node', 'taxonomy_term_node'); - db_rename_table('term_relation', 'taxonomy_term_relation'); - db_rename_table('term_synonym', 'taxonomy_term_synonym'); - db_rename_table('vocabulary', 'taxonomy_vocabulary'); - db_rename_table('vocabulary_node_types', 'taxonomy_vocabulary_node_type'); -} - -/** - * Add {vocabulary}.machine_name column. - */ -function taxonomy_update_7002() { - $field = array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - 'description' => 'The vocabulary machine name.', - ); - - db_add_field('taxonomy_vocabulary', 'machine_name', $field); - - // Do a direct query here, rather than calling taxonomy_get_vocabularies(), - // in case Taxonomy module is disabled. - $vids = db_query('SELECT vid FROM {taxonomy_vocabulary}')->fetchCol(); - foreach ($vids as $vid) { - $machine_name = 'vocabulary_' . $vid; - db_update('taxonomy_vocabulary') - ->fields(array('machine_name' => $machine_name)) - ->condition('vid', $vid) - ->execute(); - } - - // The machine_name unique key can only be added after we ensure the - // machine_name column contains unique values. - db_add_unique_key('taxonomy_vocabulary', 'machine_name', array('machine_name')); -} - -/** - * Remove the related terms setting from vocabularies. - * - * This setting has not been used since Drupal 6. The {taxonomy_relations} table - * itself is retained to allow for data to be upgraded. - */ -function taxonomy_update_7003() { - db_drop_field('taxonomy_vocabulary', 'relations'); -} - -/** - * Move taxonomy vocabulary associations for nodes to fields and field instances. - */ -function taxonomy_update_7004() { - $taxonomy_index = array( - 'description' => 'Maintains denormalized information about node/term relationships.', - 'fields' => array( - 'nid' => array( - 'description' => 'The {node}.nid this record tracks.', - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'tid' => array( - 'description' => 'The term ID.', - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'sticky' => array( - 'description' => 'Boolean indicating whether the node is sticky.', - 'type' => 'int', - 'not null' => FALSE, - 'default' => 0, - 'size' => 'tiny', - ), - 'created' => array( - 'description' => 'The Unix timestamp when the node was created.', - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default'=> 0, - ), - ), - 'indexes' => array( - 'term_node' => array('tid', 'sticky', 'created'), - 'nid' => array('nid'), - ), - 'foreign keys' => array( - 'tracked_node' => array( - 'table' => 'node', - 'columns' => array('nid' => 'nid'), - ), - 'term' => array( - 'table' => 'taxonomy_term_data', - 'columns' => array('tid' => 'tid'), - ), - ), - ); - db_create_table('taxonomy_index', $taxonomy_index); - - // Use an inline version of Drupal 6 taxonomy_get_vocabularies() here since - // we can no longer rely on $vocabulary->nodes from the API function. - $result = db_query('SELECT v.*, n.type FROM {taxonomy_vocabulary} v LEFT JOIN {taxonomy_vocabulary_node_type} n ON v.vid = n.vid ORDER BY v.weight, v.name'); - $vocabularies = array(); - foreach ($result as $record) { - // If no node types are associated with a vocabulary, the LEFT JOIN will - // return a NULL value for type. - if (isset($record->type)) { - $node_types[$record->vid][$record->type] = $record->type; - unset($record->type); - $record->nodes = $node_types[$record->vid]; - } - elseif (!isset($record->nodes)) { - $record->nodes = array(); - } - $vocabularies[$record->vid] = $record; - } - - foreach ($vocabularies as $vocabulary) { - $field_name = 'taxonomy_' . $vocabulary->machine_name; - $field = array( - 'field_name' => $field_name, - 'module' => 'taxonomy', - 'type' => 'taxonomy_term_reference', - 'cardinality' => $vocabulary->multiple || $vocabulary->tags ? FIELD_CARDINALITY_UNLIMITED : 1, - 'settings' => array( - 'required' => $vocabulary->required ? TRUE : FALSE, - 'allowed_values' => array( - array( - 'vocabulary' => $vocabulary->machine_name, - 'parent' => 0, - ), - ), - ), - ); - _update_7000_field_create_field($field); - - foreach ($vocabulary->nodes as $bundle) { - $instance = array( - 'label' => $vocabulary->name, - 'field_name' => $field_name, - 'bundle' => $bundle, - 'entity_type' => 'node', - 'settings' => array(), - 'description' => $vocabulary->help, - 'widget' => array(), - 'display' => array( - 'default' => array( - 'type' => 'taxonomy_term_reference_link', - 'weight' => 10, - ), - 'teaser' => array( - 'type' => 'taxonomy_term_reference_link', - 'weight' => 10, - ), - ), - ); - if ($vocabulary->tags) { - $instance['widget'] = array( - 'type' => 'taxonomy_autocomplete', - 'module' => 'taxonomy', - 'settings' => array( - 'size' => 60, - 'autocomplete_path' => 'taxonomy/autocomplete', - ), - ); - } - else { - $instance['widget'] = array( - 'type' => 'select', - 'module' => 'options', - 'settings' => array(), - ); - } - _update_7000_field_create_instance($field, $instance); - } - } - - // Some contrib projects stored term node associations without regard for the - // selections in the taxonomy_vocabulary_node_types table, or have more terms - // for a single node than the vocabulary allowed. We construct the - // taxonomyextra field to store all the extra stuff. - - // Allowed values for this extra vocabs field is every vocabulary. - $allowed_values = array(); - foreach (_update_7002_taxonomy_get_vocabularies() as $vocabulary) { - $allowed_values[] = array( - 'vocabulary' => $vocabulary->machine_name, - 'parent' => 0, - ); - } - - $field_name = 'taxonomyextra'; - $field = array( - 'field_name' => $field_name, - 'module' => 'taxonomy', - 'type' => 'taxonomy_term_reference', - 'cardinality' => FIELD_CARDINALITY_UNLIMITED, - 'settings' => array( - 'required' => FALSE, - 'allowed_values' => $allowed_values, - ), - ); - _update_7000_field_create_field($field); - - foreach (_update_7000_node_get_types() as $bundle) { - $instance = array( - 'label' => 'Taxonomy upgrade extras', - 'field_name' => $field_name, - 'entity_type' => 'node', - 'bundle' => $bundle->type, - 'settings' => array(), - 'description' => 'Debris left over after upgrade from Drupal 6', - 'widget' => array( - 'type' => 'taxonomy_autocomplete', - 'module' => 'taxonomy', - 'settings' => array(), - ), - 'display' => array( - 'default' => array( - 'type' => 'taxonomy_term_reference_link', - 'weight' => 10, - ), - 'teaser' => array( - 'type' => 'taxonomy_term_reference_link', - 'weight' => 10, - ), - ), - ); - _update_7000_field_create_instance($field, $instance); - } - - $fields = array('help', 'multiple', 'required', 'tags'); - foreach ($fields as $field) { - db_drop_field('taxonomy_vocabulary', $field); - } -} - -/** - * Migrate {taxonomy_term_node} table to field storage. - * - * @todo: This function can possibly be made much faster by wrapping a - * transaction around all the inserts. - */ -function taxonomy_update_7005(&$sandbox) { - // $sandbox contents: - // - total: The total number of term_node relationships to migrate. - // - count: The number of term_node relationships that have been - // migrated so far. - // - last: The db_query_range() offset to use when querying - // term_node; this field is incremented in quantities of $batch - // (1000) but at the end of each call to this function, last and - // count are the same. - // - vocabularies: An associative array mapping vocabulary id and node - // type to field name. If a voc id/node type pair does not appear - // in this array but a term_node relationship exists mapping a - // term in voc id to node of that type, the relationship is - // assigned to the taxonomymyextra field which allows terms of all - // vocabularies. - // - cursor[values], cursor[deltas]: The contents of $values and - // $deltas at the end of the previous call to this function. These - // need to be preserved across calls because a single batch of - // 1000 rows from term_node may end in the middle of the terms for - // a single node revision. - // - // $values is the array of values about to be/most recently inserted - // into the SQL data table for the taxonomy_term_reference - // field. Before $values is constructed for each record, the - // $values from the previous insert is checked to see if the two - // records are for the same node revision id; this enables knowing - // when to reset the delta counters which are incremented across all - // terms for a single field on a single revision, but reset for each - // new field and revision. - // - // $deltas is an associative array mapping field name to the number - // of term references stored so far for the current revision, which - // provides the delta value for each term reference data insert. The - // deltas are reset for each new revision. - - $conditions = array( - 'type' => 'taxonomy_term_reference', - 'deleted' => 0, - ); - $field_info = _update_7000_field_read_fields($conditions, 'field_name'); - - // This is a multi-pass update. On the first call we need to initialize some - // variables. - if (!isset($sandbox['total'])) { - $sandbox['last'] = 0; - $sandbox['count'] = 0; - - // Run the same joins as the query that is used later to retrieve the - // term_node data, this ensures that bad records in that table - for - // tids which aren't in taxonomy_term_data or nids which aren't in {node} - // are not included in the count. - $sandbox['total'] = db_query('SELECT COUNT(*) FROM {taxonomy_term_data} td INNER JOIN {taxonomy_term_node} tn ON td.tid = tn.tid INNER JOIN {node} n ON tn.nid = n.nid LEFT JOIN {node} n2 ON tn.vid = n2.vid')->fetchField(); - - // Use an inline version of Drupal 6 taxonomy_get_vocabularies() here since - // we can no longer rely on $vocabulary->nodes from the API function. - $result = db_query('SELECT v.vid, v.machine_name, n.type FROM {taxonomy_vocabulary} v INNER JOIN {taxonomy_vocabulary_node_type} n ON v.vid = n.vid'); - $vocabularies = array(); - foreach ($result as $record) { - - // If no node types are associated with a vocabulary, the LEFT JOIN will - // return a NULL value for type. - if (isset($record->type)) { - $vocabularies[$record->vid][$record->type] = 'taxonomy_'. $record->machine_name; - } - } - - if (!empty($vocabularies)) { - $sandbox['vocabularies'] = $vocabularies; - } - } - else { - // We do each pass in batches of 1000. - $batch = 1000; - - // Query selects all revisions at once and processes them in revision and - // term weight order. Join types: - // - // - INNER JOIN term_node ON tn.tid: We are migrating term-node - // relationships. If there are none for a term, we do not need the - // term_data row. - // - INNER JOIN {node} n ON n.nid: If a term-node relationship exists for a - // nid that does not exist, we cannot migrate it as we have no node to - // relate it to; thus we do not need that row from term_node. - // - LEFT JOIN {node} n2 ON n2.vid: If the current term-node relationship - // is for the current revision of the node, this left join will match and - // is_current will be non-NULL (we also get the current sticky and - // created in this case). This tells us whether to insert into the - // current data tables in addition to the revision data tables. - // - // This query must return a consistent ordering across multiple calls. We - // need them ordered by node vid (since we use that to decide when to reset - // the delta counters) and by term weight so they appear within each node - // in weight order. However, tn.vid,td.weight is not guaranteed to be - // unique, so we add tn.tid as an additional sort key because tn.tid,tn.vid - // is the primary key of the D6 term_node table and so is guaranteed - // unique. Unfortunately it also happens to be in the wrong order which is - // less efficient, but c'est la vie. - $query = 'SELECT td.vid AS vocab_id, td.tid, tn.nid, tn.vid, n.type, n2.created, n2.sticky, n2.nid AS is_current FROM {taxonomy_term_data} td INNER JOIN {taxonomy_term_node} tn ON td.tid = tn.tid INNER JOIN {node} n ON tn.nid = n.nid LEFT JOIN {node} n2 ON tn.vid = n2.vid ORDER BY tn.vid, td.weight ASC, tn.tid'; - $result = db_query_range($query, $sandbox['last'], $batch); - if (isset($sandbox['cursor'])) { - $values = $sandbox['cursor']['values']; - $deltas = $sandbox['cursor']['deltas']; - } - else { - $deltas = array(); - } - foreach ($result as $record) { - $sandbox['count'] += 1; - - // Use the valid field for this vocabulary and node type or use the - // overflow vocabulary if there is no valid field. - $field_name = isset($sandbox['vocabularies'][$record->vocab_id][$record->type]) ? $sandbox['vocabularies'][$record->vocab_id][$record->type] : 'taxonomyextra'; - $field = $field_info[$field_name]; - - // Start deltas from 0, and increment by one for each term attached to a - // node. - if (!isset($deltas[$field_name])) { - $deltas[$field_name] = 0; - } - - if (isset($values)) { - - // If the last inserted revision_id is the same as the current record, - // use the previous deltas to calculate the next delta. - if ($record->vid == $values[2]) { - - // For limited cardinality fields, the delta must not be allowed to - // exceed the cardinality during the update. So ensure that the - // delta about to be inserted is within this limit. - // @see field_default_validate(). - if ($field['cardinality'] != FIELD_CARDINALITY_UNLIMITED && ($deltas[$field_name] + 1) > $field['cardinality']) { - - // For excess values of a single-term vocabulary, switch over to - // the overflow field. - $field_name = 'taxonomyextra'; - $field = $field_info[$field_name]; - if (!isset($deltas[$field_name])) { - $deltas[$field_name] = 0; - } - } - } - else { - - // When the record is a new revision, empty the deltas array. - $deltas = array($field_name => 0); - } - } - - // Table and column found in the field's storage details. During upgrades, - // it's always SQL. - $table_name = "field_data_{$field_name}"; - $revision_name = "field_revision_{$field_name}"; - $value_column = $field_name . '_tid'; - - // Column names and values in field storage are the same for current and - // revision. - $columns = array('entity_type', 'entity_id', 'revision_id', 'bundle', 'language', 'delta', $value_column); - $values = array('node', $record->nid, $record->vid, $record->type, LANGUAGE_NONE, $deltas[$field_name]++, $record->tid); - - // Insert rows into the revision table. - db_insert($revision_name)->fields($columns)->values($values)->execute(); - - // is_current column is a node ID if this revision is also current. - if ($record->is_current) { - db_insert($table_name)->fields($columns)->values($values)->execute(); - - // Update the {taxonomy_index} table. - db_insert('taxonomy_index') - ->fields(array('nid', 'tid', 'sticky', 'created',)) - ->values(array($record->nid, $record->tid, $record->sticky, $record->created)) - ->execute(); - } - } - - // Store the set of inserted values and the current revision's deltas in the - // sandbox. - $sandbox['cursor'] = array( - 'values' => $values, - 'deltas' => $deltas, - ); - $sandbox['last'] += $batch; - } - - if ($sandbox['count'] < $sandbox['total']) { - $sandbox['#finished'] = FALSE; - } - else { - db_drop_table('taxonomy_vocabulary_node_type'); - db_drop_table('taxonomy_term_node'); - - // If there are no vocabs, we're done. - $sandbox['#finished'] = TRUE; - - // Determine necessity of taxonomyextras field. - $field = $field_info['taxonomyextra']; - $revision_name = 'field_revision_' . $field['field_name']; - $node_types = db_select($revision_name)->distinct()->fields($revision_name, array('bundle')) - ->execute()->fetchCol(); - - if (empty($node_types)) { - // Delete the overflow field if there are no rows in the revision table. - _update_7000_field_delete_field('taxonomyextra'); - } - else { - // Remove instances which are not actually used. - $bundles = db_query('SELECT bundle FROM {field_config_instance} WHERE field_name = :field_name', array(':field_name' => 'taxonomyextra'))->fetchCol(); - $bundles = array_diff($bundles, $node_types); - foreach ($bundles as $bundle) { - _update_7000_field_delete_instance('taxonomyextra', 'node', $bundle); - } - } - } -} - -/** - * Add {taxonomy_term_data}.format column. - */ -function taxonomy_update_7006() { - db_add_field('taxonomy_term_data', 'format', array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => FALSE, - 'description' => 'The {filter_format}.format of the description.', - )); -} - -/** - * Add index on {taxonomy_term_data}.name column to speed up taxonomy_get_term_by_name(). - */ -function taxonomy_update_7007() { - db_add_index('taxonomy_term_data', 'name', array('name')); -} - -/** - * Change the weight columns to normal int. - */ -function taxonomy_update_7008() { - db_drop_index('taxonomy_term_data', 'taxonomy_tree'); - db_change_field('taxonomy_term_data', 'weight', 'weight', array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'The weight of this term in relation to other terms.', - ), array( - 'indexes' => array( - 'taxonomy_tree' => array('vid', 'weight', 'name'), - ), - )); - - db_drop_index('taxonomy_vocabulary', 'list'); - db_change_field('taxonomy_vocabulary', 'weight', 'weight', array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => 'The weight of this vocabulary in relation to other vocabularies.', - ), array( - 'indexes' => array( - 'list' => array('weight', 'name'), - ), - )); -} - -/** - * Change {taxonomy_term_data}.format into varchar. - */ -function taxonomy_update_7009() { - db_change_field('taxonomy_term_data', 'format', 'format', array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => FALSE, - 'description' => 'The {filter_format}.format of the description.', - )); -} - -/** - * Change {taxonomy_index}.created to support signed int. -*/ -function taxonomy_update_7010() { - db_change_field('taxonomy_index', 'created', 'created', array( - 'description' => 'The Unix timestamp when the node was created.', - 'type' => 'int', - 'unsigned' => FALSE, - 'not null' => TRUE, - 'default'=> 0, - )); -} - diff --git modules/tracker/tracker.install modules/tracker/tracker.install index 244f537..cfe8dc7 100644 --- modules/tracker/tracker.install +++ modules/tracker/tracker.install @@ -111,110 +111,3 @@ function tracker_schema() { return $schema; } - -/** - * @addtogroup updates-6.x-to-7.x - * @{ - */ - -/** - * Create new tracker_node and tracker_user tables. - */ -function tracker_update_7000() { - $schema['tracker_node'] = array( - 'description' => 'Tracks when nodes were last changed or commented on', - 'fields' => array( - 'nid' => array( - 'description' => 'The {node}.nid this record tracks.', - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'published' => array( - 'description' => 'Boolean indicating whether the node is published.', - 'type' => 'int', - 'not null' => FALSE, - 'default' => 0, - 'size' => 'tiny', - ), - 'changed' => array( - 'description' => 'The Unix timestamp when the node was most recently saved or commented on.', - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'tracker' => array('published', 'changed'), - ), - 'primary key' => array('nid'), - 'foreign keys' => array( - 'tracked_node' => array( - 'table' => 'node', - 'columns' => array('nid' => 'nid'), - ), - ), - ); - - $schema['tracker_user'] = array( - 'description' => 'Tracks when nodes were last changed or commented on, for each user that authored the node or one of its comments.', - 'fields' => array( - 'nid' => array( - 'description' => 'The {node}.nid this record tracks.', - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'uid' => array( - 'description' => 'The {users}.uid of the node author or commenter.', - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - ), - 'published' => array( - 'description' => 'Boolean indicating whether the node is published.', - 'type' => 'int', - 'not null' => FALSE, - 'default' => 0, - 'size' => 'tiny', - ), - 'changed' => array( - 'description' => 'The Unix timestamp when the node was most recently saved or commented on.', - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'indexes' => array( - 'tracker' => array('uid', 'published', 'changed'), - ), - 'primary key' => array('nid', 'uid'), - 'foreign keys' => array( - 'tracked_node' => array( - 'table' => 'node', - 'columns' => array('nid' => 'nid'), - ), - 'tracked_user' => array( - 'table' => 'users', - 'columns' => array('uid' => 'uid'), - ), - ), - ); - - foreach ($schema as $name => $table) { - db_create_table($name, $table); - } - - $max_nid = db_query('SELECT MAX(nid) FROM {node}')->fetchField(); - if ($max_nid != 0) { - variable_set('tracker_index_nid', $max_nid); - } -} - -/** - * @} End of "addtogroup updates-6.x-to-7.x" - */ diff --git modules/trigger/trigger.install modules/trigger/trigger.install index 9a172a2..7dded60 100644 --- modules/trigger/trigger.install +++ modules/trigger/trigger.install @@ -51,20 +51,3 @@ function trigger_install() { // Do initial synchronization of actions in code and the database. actions_synchronize(); } - -/** - * Adds operation names to the hook names and drops the "op" field. - */ -function trigger_update_7000() { - $result = db_query("SELECT hook, op, aid FROM {trigger_assignments} WHERE op <> ''"); - - foreach ($result as $record) { - db_update('trigger_assignments') - ->fields(array('hook' => $record->hook . '_' . $record->op)) - ->condition('hook', $record->hook) - ->condition('op', $record->op) - ->condition('aid', $record->aid) - ->execute(); - } - db_drop_field('trigger_assignments', 'op'); -} diff --git modules/update/update.install modules/update/update.install index 70fb6c3..f0d5499 100644 --- modules/update/update.install +++ modules/update/update.install @@ -157,34 +157,3 @@ function _update_requirement_check($project, $type) { $requirement['value'] = l($requirement_label, update_manager_access() ? 'admin/reports/updates/update' : 'admin/reports/updates'); return $requirement; } - -/** - * @addtogroup updates-6.x-to-7.x - * @{ - */ - -/** - * Create a queue to store tasks for requests to fetch available update data. - */ -function update_update_7000() { - module_load_include('inc', 'system', 'system.queue'); - $queue = DrupalQueue::get('update_fetch_tasks'); - $queue->createQueue(); -} - -/** - * Recreates cache_update table. - * - * Converts fields that hold serialized variables from text to blob. - * Removes 'headers' column. - */ -function update_update_7001() { - $schema = system_schema_cache_7054(); - - db_drop_table('cache_update'); - db_create_table('cache_update', $schema); -} - -/** - * @} End of "addtogroup updates-6.x-to-7.x" - */ diff --git modules/user/user.install modules/user/user.install index 0967818..370427f 100644 --- modules/user/user.install +++ modules/user/user.install @@ -335,524 +335,3 @@ function user_install() { ->execute(); } } - -/** - * Implements hook_update_dependencies(). - */ -function user_update_dependencies() { - // Run all the critical user upgrades before everything. - $dependencies['system'][7000] = array( - 'user' => 7008, - ); - // Both user_update_7006() and user_update_7010() need to query the list of - // existing text formats and therefore must run after filter_update_7003(). - // @todo: move user_update_7006 down below in the upgrade process. - $dependencies['user'][7006] = array( - 'filter' => 7003, - ); - // user_update_7013 relies on system_update_7060. - $dependencies['user'][7013] = array( - 'system' => 7059, - ); - // Ensure that format columns are only changed after Filter module has changed - // the primary records. - $dependencies['user'][7015] = array( - 'filter' => 7010, - ); - - return $dependencies; -} - -/** - * Utility function: grant a set of permissions to a role during update. - * - * This function is valid for a database schema version 7000. - * - * @param $rid - * The role ID. - * @param $permissions - * An array of permissions names. - * @param $module - * The name of the module defining the permissions. - * @ingroup update-api-6.x-to-7.x - */ -function _update_7000_user_role_grant_permissions($rid, array $permissions, $module) { - // Grant new permissions for the role. - foreach ($permissions as $name) { - db_merge('role_permission') - ->key(array( - 'rid' => $rid, - 'permission' => $name, - )) - ->fields(array( - 'module' => $module, - )) - ->execute(); - } -} - -/** - * @addtogroup updates-6.x-to-7.x - * @{ - */ - -/** - * Increase the length of the password field to accommodate better hashes. - * - * Also re-hashes all current passwords to improve security. This may be a - * lengthy process, and is performed batch-wise. - */ -function user_update_7000(&$sandbox) { - $sandbox['#finished'] = 0; - // Lower than DRUPAL_HASH_COUNT to make the update run at a reasonable speed. - $hash_count_log2 = 11; - // Multi-part update. - if (!isset($sandbox['user_from'])) { - db_change_field('users', 'pass', 'pass', array('type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '')); - $sandbox['user_from'] = 0; - $sandbox['user_count'] = db_query("SELECT COUNT(uid) FROM {users}")->fetchField(); - } - else { - require_once DRUPAL_ROOT . '/' . variable_get('password_inc', 'includes/password.inc'); - // Hash again all current hashed passwords. - $has_rows = FALSE; - // Update this many per page load. - $count = 1000; - $result = db_query_range("SELECT uid, pass FROM {users} WHERE uid > 0 ORDER BY uid", $sandbox['user_from'], $count); - foreach ($result as $account) { - $has_rows = TRUE; - $new_hash = user_hash_password($account->pass, $hash_count_log2); - if ($new_hash) { - // Indicate an updated password. - $new_hash = 'U' . $new_hash; - db_update('users') - ->fields(array('pass' => $new_hash)) - ->condition('uid', $account->uid) - ->execute(); - } - } - $sandbox['#finished'] = $sandbox['user_from']/$sandbox['user_count']; - $sandbox['user_from'] += $count; - if (!$has_rows) { - $sandbox['#finished'] = 1; - return t('User passwords rehashed to improve security'); - } - } -} - -/** - * Remove the 'threshold', 'mode' and 'sort' columns from the {users} table. - * - * These fields were previously used to store per-user comment settings. - */ - -function user_update_7001() { - db_drop_field('users', 'threshold'); - db_drop_field('users', 'mode'); - db_drop_field('users', 'sort'); -} - -/** - * Convert user time zones from time zone offsets to time zone names. - */ -function user_update_7002(&$sandbox) { - $sandbox['#finished'] = 0; - - // Multi-part update. - if (!isset($sandbox['user_from'])) { - db_change_field('users', 'timezone', 'timezone', array('type' => 'varchar', 'length' => 32, 'not null' => FALSE)); - $sandbox['user_from'] = 0; - $sandbox['user_count'] = db_query("SELECT COUNT(uid) FROM {users}")->fetchField(); - $sandbox['user_not_migrated'] = 0; - } - else { - $timezones = system_time_zones(); - // Update this many per page load. - $count = 10000; - $contributed_date_module = db_field_exists('users', 'timezone_name'); - $contributed_event_module = db_field_exists('users', 'timezone_id'); - - $results = db_query_range("SELECT uid FROM {users} ORDER BY uid", $sandbox['user_from'], $count); - foreach ($results as $account) { - $timezone = NULL; - // If the contributed Date module has created a users.timezone_name - // column, use this data to set each user's time zone. - if ($contributed_date_module) { - $date_timezone = db_query("SELECT timezone_name FROM {users} WHERE uid = :uid", array(':uid' => $account->uid))->fetchField(); - if (isset($timezones[$date_timezone])) { - $timezone = $date_timezone; - } - } - // If the contributed Event module has stored user time zone information - // use that information to update the user accounts. - if (!$timezone && $contributed_event_module) { - try { - $event_timezone = db_query("SELECT t.name FROM {users} u LEFT JOIN {event_timezones} t ON u.timezone_id = t.timezone WHERE u.uid = :uid", array(':uid' => $account->uid))->fetchField(); - $event_timezone = str_replace(' ', '_', $event_timezone); - if (isset($timezones[$event_timezone])) { - $timezone = $event_timezone; - } - } - catch (PDOException $e) { - // Ignore error if event_timezones table does not exist or unexpected - // schema found. - } - } - if ($timezone) { - db_update('users') - ->fields(array('timezone' => $timezone)) - ->condition('uid', $account->uid) - ->execute(); - } - else { - $sandbox['user_not_migrated']++; - db_update('users') - ->fields(array('timezone' => NULL)) - ->condition('uid', $account->uid) - ->execute(); - } - $sandbox['user_from']++; - } - - $sandbox['#finished'] = $sandbox['user_from'] / $sandbox['user_count']; - if ($sandbox['user_from'] == $sandbox['user_count']) { - if ($sandbox['user_not_migrated'] > 0) { - variable_set('empty_timezone_message', 1); - drupal_set_message('Some user time zones have been emptied and need to be set to the correct values. Use the new ' . l('time zone options', 'admin/config/regional/settings') . ' to choose whether to remind users at login to set the correct time zone.', 'warning'); - } - return t('Migrated user time zones'); - } - } -} - -/** - * Update user settings for cancelling user accounts. - * - * Prior to 7.x, users were not able to cancel their accounts. When - * administrators deleted an account, all contents were assigned to uid 0, - * which is the same as the 'user_cancel_reassign' method now. - */ -function user_update_7003() { - // Set the default account cancellation method. - variable_set('user_cancel_method', 'user_cancel_reassign'); - // Re-assign notification setting. - if ($setting = variable_get('user_mail_status_deleted_notify', FALSE)) { - variable_set('user_mail_status_canceled_notify', $setting); - variable_del('user_mail_status_deleted_notify'); - } - // Re-assign "Account deleted" mail strings to "Account canceled" mail. - if ($setting = variable_get('user_mail_status_deleted_subject', FALSE)) { - variable_set('user_mail_status_canceled_subject', $setting); - variable_del('user_mail_status_deleted_subject'); - } - if ($setting = variable_get('user_mail_status_deleted_body', FALSE)) { - variable_set('user_mail_status_canceled_body', $setting); - variable_del('user_mail_status_deleted_body'); - } -} - -/** - * Changes the users table to allow longer e-mail addresses. - */ -function user_update_7005(&$sandbox) { - $mail_field = array( - 'type' => 'varchar', - 'length' => 254, - 'not null' => FALSE, - 'default' => '', - 'description' => "User's e-mail address.", - ); - $init_field = array( - 'type' => 'varchar', - 'length' => 254, - 'not null' => FALSE, - 'default' => '', - 'description' => 'E-mail address used for initial account creation.', - ); - db_drop_index('users', 'mail'); - db_change_field('users', 'mail', 'mail', $mail_field, array('indexes' => array('mail' => array('mail')))); - db_change_field('users', 'init', 'init', $init_field); -} - -/** - * Add module data to {role_permission}. - */ -function user_update_7006(&$sandbox) { - $module_field = array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - 'description' => "The module declaring the permission.", - ); - // Check that the field hasn't been updated in an aborted run of this - // update. - if (!db_field_exists('role_permission', 'module')) { - // Add a new field for the fid. - db_add_field('role_permission', 'module', $module_field); - } - $permissions = user_permission_get_modules(); - foreach ($permissions as $key => $value) { - db_update('role_permission') - ->fields(array('module' => $value)) - ->condition('permission', $key) - ->execute(); - } -} - -/** - * Add a weight column to user roles. - */ -function user_update_7007() { - db_add_field('role', 'weight', array('type' => 'int', 'not null' => TRUE, 'default' => 0)); - db_add_index('role', 'name_weight', array('name', 'weight')); -} - -/** - * If 'user_register' variable was unset in Drupal 6, set it to be the same as - * the Drupal 6 default setting. - */ -function user_update_7008() { - if (!isset($GLOBALS['conf']['user_register'])) { - // Set to the Drupal 6 default, "visitors can create accounts". - variable_set('user_register', USER_REGISTER_VISITORS); - } -} - -/** - * Converts fields that store serialized variables from text to blob. - */ -function user_update_7009() { - $spec = array( - 'type' => 'blob', - 'not null' => FALSE, - 'size' => 'big', - 'serialize' => TRUE, - 'description' => 'A serialized array of name value pairs that are related to the user. Any form values posted during user edit are stored and are loaded into the $user object during user_load(). Use of this field is discouraged and it will likely disappear in a future version of Drupal.', - ); - db_change_field('users', 'data', 'data', $spec); -} - -/** - * Update the {user}.signature_format column. - */ -function user_update_7010() { - // Update the database column to allow NULL values. - db_change_field('users', 'signature_format', 'signature_format', array( - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => FALSE, - 'description' => 'The {filter_format}.format of the signature.', - )); - - // Replace the signature format with NULL if the signature is empty and does - // not already have a stored text format. - // - // In Drupal 6, "0" (the former FILTER_FORMAT_DEFAULT constant) could be used - // to indicate this situation, but in Drupal 7, only NULL is supported. This - // update therefore preserves the ability of user accounts which were never - // given a signature (for example, if the site did not have user signatures - // enabled, or if the user never edited their account information) to not - // have a particular text format assumed for them the first time the - // signature is edited. - db_update('users') - ->fields(array('signature_format' => NULL)) - ->condition('signature', '') - ->condition('signature_format', 0) - ->execute(); - - // There are a number of situations in which a Drupal 6 site could store - // content with a nonexistent text format. This includes text formats that - // had later been deleted, or non-empty content stored with a value of "0" - // (the former FILTER_FORMAT_DEFAULT constant). Drupal 6 would filter this - // content using whatever the site-wide default text format was at the moment - // the text was being displayed. - // - // In Drupal 7, this behavior is no longer supported, and all content must be - // stored with an explicit text format (or it will not be displayed when it - // is filtered). Therefore, to preserve the behavior of the site after the - // upgrade, we must replace all instances described above with the current - // value of the (old) site-wide default format at the moment of the upgrade. - $existing_formats = db_query("SELECT format FROM {filter_format}")->fetchCol(); - $default_format = variable_get('filter_default_format', 1); - db_update('users') - ->fields(array('signature_format' => $default_format)) - ->isNotNull('signature_format') - ->condition('signature_format', $existing_formats, 'NOT IN') - ->execute(); -} - -/** - * Updates email templates to use new tokens. - * - * This function upgrades customized email templates from the old !token format - * to the new core tokens format. Additionally, in Drupal 7 we no longer e-mail - * plain text passwords to users, and there is no token for a plain text - * password in the new token system. Therefore, it also modifies any saved - * templates using the old '!password' token such that the token is removed, and - * displays a warning to users that they may need to go and modify the wording - * of their templates. - */ -function user_update_7011() { - $message = ''; - - $tokens = array( - '!site-name-token' => '[site:name]', - '!site-url-token' => '[site:url]', - '!user-name-token' => '[user:name]', - '!user-mail-token' => '[user:mail]', - '!site-login-url-token' => '[site:login-url]', - '!site-url-brief-token' => '[site:url-brief]', - '!user-edit-url-token' => '[user:edit-url]', - '!user-one-time-login-url-token' => '[user:one-time-login-url]', - '!user-cancel-url-token' => '[user:cancel-url]', - '!password' => '', - ); - - $result = db_select('variable', 'v') - ->fields('v', array('name', 'value')) - ->condition('value', db_like('user_mail_') . '%', 'LIKE') - ->execute(); - - foreach ($result as $row) { - if (empty($message) && (strpos($row->value, '!password') !== FALSE)) { - $message = t('The ability to send users their passwords in plain text has been removed in Drupal 7. Your existing email templates have been modified to remove it. You should review these templates to make sure they read properly.', array('@template-url' => url('admin/config/people/accounts'))); - } - - variable_set($row->name, str_replace(array_keys($tokens), $tokens, $row->value)); - } - - return $message; -} - -/** - * Add the user's pictures to the {file_managed} table and make them managed - * files. - */ -function user_update_7012(&$sandbox) { - - $picture_field = array( - 'type' => 'int', - 'not null' => TRUE, - 'default' => 0, - 'description' => "Foreign key: {file_managed}.fid of user's picture.", - ); - - if (!isset($sandbox['progress'])) { - // Check that the field hasn't been updated in an aborted run of this - // update. - if (!db_field_exists('users', 'picture_fid')) { - // Add a new field for the fid. - db_add_field('users', 'picture_fid', $picture_field); - } - - // Initialize batch update information. - $sandbox['progress'] = 0; - $sandbox['last_user_processed'] = -1; - $sandbox['max'] = db_query("SELECT COUNT(*) FROM {users} WHERE picture <> ''")->fetchField(); - } - - // As a batch operation move the photos into the {file_managed} table and - // update the {users} records. - $limit = 500; - $result = db_query_range("SELECT uid, picture FROM {users} WHERE picture <> '' AND uid > :uid ORDER BY uid", 0, $limit, array(':uid' => $sandbox['last_user_processed'])); - foreach ($result as $user) { - // Don't bother adding files that don't exist. - if (file_exists($user->picture)) { - - // Check if the file already exists. - $files = file_load_multiple(array(), array('uri' => $user->picture)); - if (count($files)) { - $file = reset($files); - } - else { - // Create a file object. - $file = new stdClass(); - $file->uri = $user->picture; - $file->filename = basename($file->uri); - $file->filemime = file_get_mimetype($file->uri); - $file->uid = $user->uid; - $file->status = FILE_STATUS_PERMANENT; - $file = file_save($file); - } - - db_update('users') - ->fields(array('picture_fid' => $file->fid)) - ->condition('uid', $user->uid) - ->execute(); - } - - // Update our progress information for the batch update. - $sandbox['progress']++; - $sandbox['last_user_processed'] = $user->uid; - } - - // Indicate our current progress to the batch update system. If there's no - // max value then there's nothing to update and we're finished. - $sandbox['#finished'] = empty($sandbox['max']) ? 1 : ($sandbox['progress'] / $sandbox['max']); - - // When we're finished, drop the old picture field and rename the new one to - // replace it. - if (isset($sandbox['#finished']) && $sandbox['#finished'] == 1) { - db_drop_field('users', 'picture'); - db_change_field('users', 'picture_fid', 'picture', $picture_field); - } -} - -/** - * Add user module file usage entries. - */ -function user_update_7013(&$sandbox) { - if (!isset($sandbox['progress'])) { - // Initialize batch update information. - $sandbox['progress'] = 0; - $sandbox['last_uid_processed'] = -1; - $sandbox['max'] = db_query("SELECT COUNT(*) FROM {users} u WHERE u.picture <> 0")->fetchField(); - } - - // Add usage entries for the user picture files. - $limit = 500; - $result = db_query_range('SELECT f.*, u.uid as user_uid FROM {users} u INNER JOIN {file_managed} f ON u.picture = f.fid WHERE u.picture <> 0 AND u.uid > :uid ORDER BY u.uid', 0, $limit, array(':uid' => $sandbox['last_uid_processed']))->fetchAllAssoc('fid', PDO::FETCH_ASSOC); - foreach ($result as $row) { - $uid = $row['user_uid']; - $file = (object) $row; - file_usage_add($file, 'user', 'user', $uid); - - // Update our progress information for the batch update. - $sandbox['progress']++; - $sandbox['last_uid_processed'] = $uid; - } - - // Indicate our current progress to the batch update system. - $sandbox['#finished'] = empty($sandbox['max']) || ($sandbox['progress'] / $sandbox['max']); -} - -/** - * Rename the 'post comments without approval' permission. - * - * In Drupal 7, this permission has been renamed to 'skip comment approval'. - */ -function user_update_7014() { - db_update('role_permission') - ->fields(array('permission' => 'skip comment approval')) - ->condition('permission', 'post comments without approval') - ->execute(); - - return t("Renamed the 'post comments without approval' permission to 'skip comment approval'."); -} - -/** - * Change {users}.signature_format into varchar. - */ -function user_update_7015() { - db_change_field('users', 'signature_format', 'signature_format', array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => FALSE, - 'description' => 'The {filter_format}.format of the signature.', - )); -} - -/** - * @} End of "addtogroup updates-6.x-to-7.x" - */ diff --git update.php update.php index 785c50b..05957fe 100644 --- update.php +++ update.php @@ -346,13 +346,7 @@ require_once DRUPAL_ROOT . '/includes/common.inc'; require_once DRUPAL_ROOT . '/includes/file.inc'; require_once DRUPAL_ROOT . '/includes/entity.inc'; require_once DRUPAL_ROOT . '/includes/unicode.inc'; -update_prepare_d7_bootstrap(); - -// Temporarily disable configurable timezones so the upgrade process uses the -// site-wide timezone. This prevents a PHP notice during session initlization -// and before offsets have been converted in user_update_7002(). -$configurable_timezones = variable_get('configurable_timezones', 1); -$conf['configurable_timezones'] = 0; +update_prepare_d8_bootstrap(); // Determine if the current user has access to run update.php. drupal_bootstrap(DRUPAL_BOOTSTRAP_SESSION); @@ -391,13 +385,13 @@ if (empty($op) && update_access_allowed()) { install_goto('update.php?op=info'); } -// update_fix_d7_requirements() needs to run before bootstrapping beyond path. +// update_fix_d8_requirements() needs to run before bootstrapping beyond path. // So bootstrap to DRUPAL_BOOTSTRAP_LANGUAGE then include unicode.inc. drupal_bootstrap(DRUPAL_BOOTSTRAP_LANGUAGE); include_once DRUPAL_ROOT . '/includes/unicode.inc'; -update_fix_d7_requirements(); +update_fix_d8_requirements(); // Now proceed with a full bootstrap.