Update to drupal 8.0.0-rc1. For more information, see https://www.drupal.org/node/2582663

This commit is contained in:
Greg Anderson 2015-10-08 11:40:12 -07:00
parent eb34d130a8
commit f32e58e4b1
8476 changed files with 211648 additions and 170042 deletions

View file

@ -15,7 +15,7 @@ function migrate_drupal_help($route_name, RouteMatchInterface $route_match) {
case 'help.page.migrate_drupal':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('The Migrate Drupal module provides a framework based on the <a href="!migrate">Migrate module</a> to facilitate migration from a Drupal (6, 7, or 8) site to your website. It does not provide a user interface. For more information, see the <a href="!migrate_drupal">online documentation for the Migrate Drupal module</a>.', array('!migrate' => \Drupal::url('help.page', array('name' => 'migrate')), '!migrate_drupal' => 'https://www.drupal.org/documentation/modules/migrate_drupal')) . '</p>';
$output .= '<p>' . t('The Migrate Drupal module provides a framework based on the <a href=":migrate">Migrate module</a> to facilitate migration from a Drupal (6, 7, or 8) site to your website. It does not provide a user interface. For more information, see the <a href=":migrate_drupal">online documentation for the Migrate Drupal module</a>.', array(':migrate' => \Drupal::url('help.page', array('name' => 'migrate')), ':migrate_drupal' => 'https://www.drupal.org/documentation/modules/migrate_drupal')) . '</p>';
return $output;
}
}

View file

@ -2,12 +2,13 @@
/**
* @file
* Contains \Drupal\migrate_drupal\Plugin\migrate\builder\d6\CckBuilder.
* Contains \Drupal\migrate_drupal\Plugin\migrate\builder\CckBuilder.
*/
namespace Drupal\migrate_drupal\Plugin\migrate\builder\d6;
namespace Drupal\migrate_drupal\Plugin\migrate\builder;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\migrate\Entity\MigrationInterface;
use Drupal\migrate\Plugin\migrate\builder\BuilderBase;
use Drupal\migrate\Plugin\MigratePluginManager;
use Symfony\Component\DependencyInjection\ContainerInterface;
@ -24,6 +25,13 @@ abstract class CckBuilder extends BuilderBase implements ContainerFactoryPluginI
*/
protected $cckPluginManager;
/**
* Already-instantiated cckfield plugins, keyed by ID.
*
* @var \Drupal\migrate_drupal\Plugin\MigrateCckFieldInterface[]
*/
protected $cckPluginCache = [];
/**
* Constructs a CckBuilder.
*
@ -53,4 +61,22 @@ abstract class CckBuilder extends BuilderBase implements ContainerFactoryPluginI
);
}
/**
* Gets a cckfield plugin instance.
*
* @param string $field_type
* The field type (plugin ID).
* @param \Drupal\migrate\Entity\MigrationInterface|NULL $migration
* The migration, if any.
*
* @return \Drupal\migrate_drupal\Plugin\MigrateCckFieldInterface
* The cckfield plugin instance.
*/
protected function getCckPlugin($field_type, MigrationInterface $migration = NULL) {
if (empty($this->cckPluginCache[$field_type])) {
$this->cckPluginCache[$field_type] = $this->cckPluginManager->createInstance($field_type, [], $migration);
}
return $this->cckPluginCache[$field_type];
}
}

View file

@ -8,6 +8,9 @@
namespace Drupal\migrate_drupal\Plugin\migrate\builder\d6;
use Drupal\migrate\Entity\Migration;
use Drupal\migrate\Exception\RequirementsException;
use Drupal\migrate\Plugin\RequirementsInterface;
use Drupal\migrate_drupal\Plugin\migrate\builder\CckBuilder;
/**
* @PluginID("d6_cck_migration")
@ -27,8 +30,20 @@ class CckMigration extends CckBuilder {
public function buildMigrations(array $template) {
$migration = Migration::create($template);
$source_plugin = $migration->getSourcePlugin();
// The source plugin will throw RequirementsException if CCK is not enabled,
// in which case there is nothing else for us to do.
if ($source_plugin instanceof RequirementsInterface) {
try {
$source_plugin->checkRequirements();
}
catch (RequirementsException $e) {
return [$migration];
}
}
// Loop through every field that will be migrated.
foreach ($migration->getSourcePlugin() as $field) {
foreach ($source_plugin as $field) {
$field_type = $field->getSourceProperty('type');
// Each field type should only be processed once.

View file

@ -11,6 +11,7 @@ use Drupal\Component\Plugin\DependentPluginInterface;
use Drupal\Core\Entity\DependencyTrait;
use Drupal\Core\Entity\EntityManagerInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\Core\State\StateInterface;
use Drupal\migrate\Entity\MigrationInterface;
use Drupal\migrate\Exception\RequirementsException;
use Drupal\migrate\Plugin\migrate\source\SqlBase;
@ -51,8 +52,8 @@ abstract class DrupalSqlBase extends SqlBase implements ContainerFactoryPluginIn
/**
* {@inheritdoc}
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, MigrationInterface $migration, EntityManagerInterface $entity_manager) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $migration);
public function __construct(array $configuration, $plugin_id, $plugin_definition, MigrationInterface $migration, StateInterface $state, EntityManagerInterface $entity_manager) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $migration, $state);
$this->entityManager = $entity_manager;
}
@ -89,6 +90,7 @@ abstract class DrupalSqlBase extends SqlBase implements ContainerFactoryPluginIn
$plugin_id,
$plugin_definition,
$migration,
$container->get('state'),
$container->get('entity.manager')
);
}

View file

@ -8,6 +8,7 @@
namespace Drupal\migrate_drupal\Plugin\migrate\source;
use Drupal\Core\Entity\EntityManagerInterface;
use Drupal\Core\State\StateInterface;
use Drupal\migrate\Entity\MigrationInterface;
/**
@ -32,8 +33,8 @@ class Variable extends DrupalSqlBase {
/**
* {@inheritdoc}
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, MigrationInterface $migration, EntityManagerInterface $entity_manager) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $migration, $entity_manager);
public function __construct(array $configuration, $plugin_id, $plugin_definition, MigrationInterface $migration, StateInterface $state, EntityManagerInterface $entity_manager) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $migration, $state, $entity_manager);
$this->variables = $this->configuration['variables'];
}
@ -53,7 +54,10 @@ class Variable extends DrupalSqlBase {
* Only those values are returned that are actually in the database.
*/
protected function values() {
return array_map('unserialize', $this->prepareQuery()->execute()->fetchAllKeyed());
// Create an ID field so we can record migration in the map table.
// Arbitrarily, use the first variable name.
$values['id'] = reset($this->variables);
return $values + array_map('unserialize', $this->prepareQuery()->execute()->fetchAllKeyed());
}
/**
@ -84,7 +88,8 @@ class Variable extends DrupalSqlBase {
* {@inheritdoc}
*/
public function getIds() {
return array();
$ids['id']['type'] = 'string';
return $ids;
}
}

View file

@ -1,57 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase.
*/
namespace Drupal\migrate_drupal\Tests\Dump;
use Drupal\Core\Database\Connection;
/**
* Base class for the dump classes.
*/
class DrupalDumpBase {
/**
* The database connection.
*
* @var \Drupal\Core\Database\Connection
*/
protected $database;
/**
* An array of tables that have already been created.
*
* @var array
*/
protected $migrateTables;
/**
* Sample database schema and values.
*
* @param \Drupal\Core\Database\Connection $database
* The database connection.
*/
public function __construct(Connection $database) {
$this->database = $database;
}
/**
* Create a new table from a Drupal table definition if it doesn't exist.
*
* @param string $name
* The name of the table to create.
* @param array $table
* A Schema API table definition array.
*/
protected function createTable($name, array $table) {
// This must be on the database connection to be shared among classes.
if (empty($this->database->migrateTables[$name])) {
$this->database->migrateTables[$name] = TRUE;
$this->database->schema()->createTable($name, $table);
}
}
}

View file

@ -7,11 +7,9 @@
namespace Drupal\migrate_drupal\Tests;
use Drupal\Core\Database\Database;
use Drupal\migrate\Tests\MigrateTestBase;
use Drupal\migrate\Entity\Migration;
use Drupal\Component\Plugin\Exception\PluginNotFoundException;
use Drupal\migrate\Plugin\migrate\source\SqlBase;
use Drupal\Core\Database\Query\SelectInterface;
/**
* Base class for Drupal migration tests.
@ -30,21 +28,26 @@ abstract class MigrateDrupalTestBase extends MigrateTestBase {
*/
protected function setUp() {
parent::setUp();
$tables = file_scan_directory($this->getDumpDirectory(), '/.php$/', array('recurse' => FALSE));
$this->loadDumps(array_keys($tables));
$this->installEntitySchema('user');
$this->installConfig(['migrate_drupal', 'system']);
}
/**
* Returns the path to the dump directory.
* Loads a database fixture into the source database connection.
*
* @return string
* A string that represents the dump directory path.
* @param string $path
* Path to the dump file.
*/
protected function getDumpDirectory() {
return __DIR__ . '/Table';
protected function loadFixture($path) {
$default_db = Database::getConnection()->getKey();
Database::setActiveConnection($this->sourceDatabase->getKey());
if (substr($path, -3) == '.gz') {
$path = 'compress.zlib://' . $path;
}
require $path;
Database::setActiveConnection($default_db);
}
/**
@ -70,20 +73,4 @@ abstract class MigrateDrupalTestBase extends MigrateTestBase {
}
}
/**
* Test that the source plugin provides a valid query and a valid count.
*/
public function testSourcePlugin() {
if (isset($this->migration)) {
$source = $this->migration->getSourcePlugin();
// Make sure a SqlBase source has a valid query.
if ($source instanceof SqlBase) {
/** @var SqlBase $source */
$this->assertTrue($source->query() instanceof SelectInterface, 'SQL source plugin has valid query');
}
// Validate that any source returns a valid count.
$this->assertTrue(is_numeric($source->count()), 'Source plugin returns valid count');
}
}
}

View file

@ -1,103 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\MigrateFullDrupalTestBase.
*/
namespace Drupal\migrate_drupal\Tests;
use Drupal\migrate\Entity\Migration;
use Drupal\simpletest\TestBase;
/**
* Test helper for running a complete Drupal migration.
*/
abstract class MigrateFullDrupalTestBase extends MigrateDrupalTestBase {
/**
* The group to which tests should belong in order for this test to run them.
*
* @var string
*/
const TEST_GROUP = '';
/**
* Get the test classes that needs to be run for this test.
*
* @return array
* The list of fully-classified test class names.
*/
protected function getTestClassesList() {
$groups = \Drupal::getContainer()->get('test_discovery')->getTestClasses();
return isset($groups[static::TEST_GROUP]) ? array_keys($groups[static::TEST_GROUP]) : [];
}
/**
* {@inheritdoc}
*/
protected function tearDown() {
// Move the results of every class under ours. This is solely for
// reporting, the filename will guide developers.
self::getDatabaseConnection()
->update('simpletest')
->fields(array('test_class' => get_class($this)))
->condition('test_id', $this->testId)
->execute();
parent::tearDown();
}
/**
* Test the complete Drupal migration.
*/
public function testDrupal() {
$classes = $this->getTestClassesList();
foreach ($classes as $class) {
if (is_subclass_of($class, '\Drupal\migrate\Tests\MigrateDumpAlterInterface')) {
$class::migrateDumpAlter($this);
}
}
// Run every migration in the order specified by the storage controller.
$migrations = Migration::loadMultiple(static::$migrations);
array_walk($migrations, [$this, 'executeMigration']);
foreach ($classes as $class) {
$test_object = new $class($this->testId);
$test_object->databasePrefix = $this->databasePrefix;
$test_object->container = $this->container;
// run() does a lot of setup and tear down work which we don't need:
// it would setup a new database connection and wouldn't find the
// Drupal dump. Also by skipping the setUp() methods there are no id
// mappings or entities prepared. The tests run against solely migrated
// data.
foreach (get_class_methods($test_object) as $method) {
if (strtolower(substr($method, 0, 4)) == 'test') {
// Insert a fail record. This will be deleted on completion to ensure
// that testing completed.
$method_info = new \ReflectionMethod($class, $method);
$caller = array(
'file' => $method_info->getFileName(),
'line' => $method_info->getStartLine(),
'function' => $class . '->' . $method . '()',
);
$completion_check_id = TestBase::insertAssert($this->testId, $class, FALSE, 'The test did not complete due to a fatal error.', 'Completion check', $caller);
// Run the test method.
try {
$test_object->$method();
}
catch (\Exception $e) {
$this->exceptionHandler($e);
}
// Remove the completion check record.
TestBase::deleteAssert($completion_check_id);
}
}
// Add the pass/fail/exception/debug results.
foreach ($this->results as $key => &$value) {
$value += $test_object->results[$key];
}
}
}
}

View file

@ -1,35 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\MigrateTableDumpTest.
*/
namespace Drupal\migrate_drupal\Tests;
use Drupal\simpletest\KernelTestBase;
/**
* Validates the table dumps.
*
* @group migrate_drupal
*/
class MigrateTableDumpTest extends KernelTestBase {
protected function verifyDumpFiles($directory) {
$tables = file_scan_directory($directory, '/.php$/');
foreach ($tables as $table) {
$contents = rtrim(file_get_contents($table->uri));
$this->assertIdentical(substr($contents, -32), md5(substr($contents, 0, -33)), $table->uri);
}
}
public function testMigrateDrupal6TableDumps() {
$this->verifyDumpFiles(__DIR__ . '/Table/d6');
}
public function testMigrateDrupal7TableDumps() {
$this->verifyDumpFiles(__DIR__ . '/Table/d7');
}
}

View file

@ -1,64 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Access.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the access table.
*/
class Access extends DrupalDumpBase {
public function load() {
$this->createTable("access", array(
'primary key' => array(
'aid',
),
'fields' => array(
'aid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '11',
),
'mask' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'type' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'status' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("access")->fields(array(
'aid',
'mask',
'type',
'status',
))
->execute();
}
}
#131cb9eb08548867ec92c3373ac67a42

View file

@ -1,137 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Actions.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the actions table.
*/
class Actions extends DrupalDumpBase {
public function load() {
$this->createTable("actions", array(
'primary key' => array(
'aid',
),
'fields' => array(
'aid' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '0',
),
'type' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '32',
'default' => '',
),
'callback' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'parameters' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'description' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->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();
}
}
#31f375c70c6a362432e25e1256101076

View file

@ -1,44 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\ActionsAid.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the actions_aid table.
*/
class ActionsAid extends DrupalDumpBase {
public function load() {
$this->createTable("actions_aid", array(
'primary key' => array(
'aid',
),
'fields' => array(
'aid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("actions_aid")->fields(array(
'aid',
))
->execute();
}
}
#a58e383f81c657ac36eabc980e148fbd

View file

@ -1,63 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\AggregatorCategory.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the aggregator_category table.
*/
class AggregatorCategory extends DrupalDumpBase {
public function load() {
$this->createTable("aggregator_category", array(
'primary key' => array(
'cid',
),
'fields' => array(
'cid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '11',
),
'title' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'description' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'block' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("aggregator_category")->fields(array(
'cid',
'title',
'description',
'block',
))
->execute();
}
}
#836a3ecaf192c09b996431f0c4b71fe6

View file

@ -1,123 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\AggregatorFeed.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the aggregator_feed table.
*/
class AggregatorFeed extends DrupalDumpBase {
public function load() {
$this->createTable("aggregator_feed", array(
'primary key' => array(
'fid',
),
'fields' => array(
'fid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '11',
),
'title' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'url' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'refresh' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'checked' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'link' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'description' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'image' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'etag' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'modified' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'block' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("aggregator_feed")->fields(array(
'fid',
'title',
'url',
'refresh',
'checked',
'link',
'description',
'image',
'etag',
'modified',
'block',
))
->values(array(
'fid' => '5',
'title' => 'Know Your Meme',
'url' => 'http://knowyourmeme.com/newsfeed.rss',
'refresh' => '900',
'checked' => '1387659487',
'link' => 'http://knowyourmeme.com',
'description' => 'New items added to the News Feed',
'image' => 'http://b.thumbs.redditmedia.com/harEHsUUZVajabtC.png',
'etag' => '"213cc1365b96c310e92053c5551f0504"',
'modified' => '0',
'block' => '5',
))->execute();
}
}
#662f4470777c1bda31d407bb5ba21346

View file

@ -1,98 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\AggregatorItem.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the aggregator_item table.
*/
class AggregatorItem extends DrupalDumpBase {
public function load() {
$this->createTable("aggregator_item", array(
'primary key' => array(
'iid',
),
'fields' => array(
'iid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '11',
),
'fid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'title' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'link' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'author' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'description' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'timestamp' => array(
'type' => 'int',
'not null' => FALSE,
'length' => '11',
),
'guid' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '255',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("aggregator_item")->fields(array(
'iid',
'fid',
'title',
'link',
'author',
'description',
'timestamp',
'guid',
))
->values(array(
'iid' => '1',
'fid' => '5',
'title' => 'This (three) weeks in Drupal Core - January 10th 2014',
'link' => 'https://groups.drupal.org/node/395218',
'author' => 'larowlan',
'description' => "<h2 id='new'>What's new with Drupal 8?</h2>",
'timestamp' => '1389297196',
'guid' => '395218 at https://groups.drupal.org',
))->execute();
}
}
#70ab48fd0f8a2fca2f51df61fdef0443

View file

@ -1,65 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Authmap.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the authmap table.
*/
class Authmap extends DrupalDumpBase {
public function load() {
$this->createTable("authmap", array(
'primary key' => array(
'aid',
),
'fields' => array(
'aid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
'uid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'authname' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '128',
'default' => '',
),
'module' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '128',
'default' => '',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("authmap")->fields(array(
'aid',
'uid',
'authname',
'module',
))
->execute();
}
}
#265fd37faf94406aa5ae64f834c0c09c

View file

@ -1,62 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Batch.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the batch table.
*/
class Batch extends DrupalDumpBase {
public function load() {
$this->createTable("batch", array(
'primary key' => array(
'bid',
),
'fields' => array(
'bid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
'token' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '64',
),
'timestamp' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
),
'batch' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("batch")->fields(array(
'bid',
'token',
'timestamp',
'batch',
))
->execute();
}
}
#7e3b35a2ee513385c7a63500e1a588c6

View file

@ -1,406 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Blocks.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the blocks table.
*/
class Blocks extends DrupalDumpBase {
public function load() {
$this->createTable("blocks", array(
'primary key' => array(
'bid',
),
'fields' => array(
'bid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '11',
),
'module' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '64',
'default' => '',
),
'delta' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '32',
'default' => '0',
),
'theme' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '64',
'default' => '',
),
'status' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'weight' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'region' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '64',
'default' => '',
),
'custom' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'throttle' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'visibility' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'pages' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'title' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '64',
'default' => '',
),
'cache' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '1',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->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' => '-5',
'region' => 'footer',
'custom' => '0',
'throttle' => '0',
'visibility' => '0',
'pages' => 'node/1',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '4',
'module' => 'comment',
'delta' => '0',
'theme' => 'garland',
'status' => '0',
'weight' => '-9',
'region' => '',
'custom' => '0',
'throttle' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '1',
))->values(array(
'bid' => '5',
'module' => 'menu',
'delta' => 'primary-links',
'theme' => 'garland',
'status' => '1',
'weight' => '-5',
'region' => 'header',
'custom' => '0',
'throttle' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '6',
'module' => 'menu',
'delta' => 'secondary-links',
'theme' => 'garland',
'status' => '0',
'weight' => '-8',
'region' => '',
'custom' => '0',
'throttle' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '7',
'module' => 'node',
'delta' => '0',
'theme' => 'garland',
'status' => '0',
'weight' => '-7',
'region' => '',
'custom' => '0',
'throttle' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '8',
'module' => 'user',
'delta' => '2',
'theme' => 'garland',
'status' => '1',
'weight' => '-9',
'region' => 'right',
'custom' => '0',
'throttle' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '1',
))->values(array(
'bid' => '9',
'module' => 'user',
'delta' => '3',
'theme' => 'garland',
'status' => '1',
'weight' => '-6',
'region' => 'right',
'custom' => '0',
'throttle' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '10',
'module' => 'block',
'delta' => '1',
'theme' => 'garland',
'status' => '1',
'weight' => '0',
'region' => 'content',
'custom' => '0',
'throttle' => '0',
'visibility' => '1',
'pages' => '<front>',
'title' => 'Static Block',
'cache' => '-1',
))->values(array(
'bid' => '11',
'module' => 'block',
'delta' => '2',
'theme' => 'bluemarine',
'status' => '1',
'weight' => '-4',
'region' => 'right',
'custom' => '0',
'throttle' => '0',
'visibility' => '1',
'pages' => 'node',
'title' => 'Another Static Block',
'cache' => '-1',
))->values(array(
'bid' => '12',
'module' => 'block',
'delta' => '1',
'theme' => 'test_theme',
'status' => '1',
'weight' => '-7',
'region' => 'right',
'custom' => '0',
'throttle' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '13',
'module' => 'block',
'delta' => '2',
'theme' => 'test_theme',
'status' => '1',
'weight' => '-2',
'region' => 'left',
'custom' => '0',
'throttle' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '14',
'module' => 'aggregator',
'delta' => 'feed-5',
'theme' => 'garland',
'status' => '0',
'weight' => '-2',
'region' => '',
'custom' => '0',
'throttle' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '1',
))->values(array(
'bid' => '15',
'module' => 'block',
'delta' => '2',
'theme' => 'garland',
'status' => '0',
'weight' => '1',
'region' => '',
'custom' => '0',
'throttle' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '16',
'module' => 'profile',
'delta' => '0',
'theme' => 'garland',
'status' => '0',
'weight' => '-5',
'region' => '',
'custom' => '0',
'throttle' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '5',
))->values(array(
'bid' => '17',
'module' => 'event',
'delta' => '0',
'theme' => 'garland',
'status' => '0',
'weight' => '-3',
'region' => '',
'custom' => '0',
'throttle' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '1',
))->values(array(
'bid' => '18',
'module' => 'event',
'delta' => '1',
'theme' => 'garland',
'status' => '0',
'weight' => '0',
'region' => '',
'custom' => '0',
'throttle' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '1',
))->values(array(
'bid' => '19',
'module' => 'event',
'delta' => 'event-upcoming-event',
'theme' => 'garland',
'status' => '0',
'weight' => '-1',
'region' => '',
'custom' => '0',
'throttle' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '1',
))->values(array(
'bid' => '20',
'module' => 'book',
'delta' => '0',
'theme' => 'garland',
'status' => '0',
'weight' => '-4',
'region' => '',
'custom' => '0',
'throttle' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '5',
))->execute();
}
}
#aecc8e1067d73824c43bfaf26f9ebf8c

View file

@ -1,66 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\BlocksRoles.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the blocks_roles table.
*/
class BlocksRoles extends DrupalDumpBase {
public function load() {
$this->createTable("blocks_roles", array(
'primary key' => array(
'module',
'delta',
'rid',
),
'fields' => array(
'module' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '64',
),
'delta' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '32',
),
'rid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("blocks_roles")->fields(array(
'module',
'delta',
'rid',
))
->values(array(
'module' => 'user',
'delta' => '2',
'rid' => '2',
))->values(array(
'module' => 'user',
'delta' => '3',
'rid' => '3',
))->execute();
}
}
#41ed39f4e800ee584535def863835a80

View file

@ -1,81 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Book.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the book table.
*/
class Book extends DrupalDumpBase {
public function load() {
$this->createTable("book", array(
'primary key' => array(
'mlid',
),
'fields' => array(
'mlid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'nid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'bid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("book")->fields(array(
'mlid',
'nid',
'bid',
))
->values(array(
'mlid' => '1',
'nid' => '4',
'bid' => '4',
))->values(array(
'mlid' => '2',
'nid' => '5',
'bid' => '4',
))->values(array(
'mlid' => '3',
'nid' => '6',
'bid' => '4',
))->values(array(
'mlid' => '4',
'nid' => '7',
'bid' => '4',
))->values(array(
'mlid' => '5',
'nid' => '8',
'bid' => '8',
))->execute();
}
}
#6ddf63f063b1bfa617a96764d859a0f1

View file

@ -1,74 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Boxes.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the boxes table.
*/
class Boxes extends DrupalDumpBase {
public function load() {
$this->createTable("boxes", array(
'primary key' => array(
'bid',
),
'fields' => array(
'bid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
'body' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'info' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '128',
'default' => '',
),
'format' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("boxes")->fields(array(
'bid',
'body',
'info',
'format',
))
->values(array(
'bid' => '1',
'body' => '<h3>My first custom block body</h3>',
'info' => 'My block 1',
'format' => '2',
))->values(array(
'bid' => '2',
'body' => '<h3>My second custom block body</h3>',
'info' => 'My block 2',
'format' => '2',
))->execute();
}
}
#2210f6e6a50ddd9c00900cc7e54a5b43

View file

@ -1,77 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Cache.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the cache table.
*/
class Cache extends DrupalDumpBase {
public function load() {
$this->createTable("cache", array(
'primary key' => array(
'cid',
),
'fields' => array(
'cid' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'data' => array(
'type' => 'blob',
'not null' => FALSE,
'length' => 100,
),
'expire' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'created' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'headers' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'serialized' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("cache")->fields(array(
'cid',
'data',
'expire',
'created',
'headers',
'serialized',
))
->execute();
}
}
#67029a22a76da3708c39edc1ea19e8da

View file

@ -1,77 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\CacheBlock.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the cache_block table.
*/
class CacheBlock extends DrupalDumpBase {
public function load() {
$this->createTable("cache_block", array(
'primary key' => array(
'cid',
),
'fields' => array(
'cid' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'data' => array(
'type' => 'blob',
'not null' => FALSE,
'length' => 100,
),
'expire' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'created' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'headers' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'serialized' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("cache_block")->fields(array(
'cid',
'data',
'expire',
'created',
'headers',
'serialized',
))
->execute();
}
}
#a8cd855bd812efa861fb2b1b16a60c88

View file

@ -1,92 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\CacheBootstrap.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the cache_bootstrap table.
*/
class CacheBootstrap extends DrupalDumpBase {
public function load() {
$this->createTable("cache_bootstrap", array(
'primary key' => array(
'cid',
),
'fields' => array(
'cid' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'data' => array(
'type' => 'blob',
'not null' => FALSE,
'length' => 100,
),
'expire' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'created' => array(
'type' => 'numeric',
'not null' => TRUE,
'precision' => '14',
'scale' => '3',
'default' => '0.000',
),
'serialized' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'tags' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'checksum_invalidations' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'checksum_deletions' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("cache_bootstrap")->fields(array(
'cid',
'data',
'expire',
'created',
'serialized',
'tags',
'checksum_invalidations',
'checksum_deletions',
))
->execute();
}
}
#61ee75983133914b8b02a29869f7ced7

View file

@ -1,92 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\CacheConfig.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the cache_config table.
*/
class CacheConfig extends DrupalDumpBase {
public function load() {
$this->createTable("cache_config", array(
'primary key' => array(
'cid',
),
'fields' => array(
'cid' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'data' => array(
'type' => 'blob',
'not null' => FALSE,
'length' => 100,
),
'expire' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'created' => array(
'type' => 'numeric',
'not null' => TRUE,
'precision' => '14',
'scale' => '3',
'default' => '0.000',
),
'serialized' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'tags' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'checksum_invalidations' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'checksum_deletions' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("cache_config")->fields(array(
'cid',
'data',
'expire',
'created',
'serialized',
'tags',
'checksum_invalidations',
'checksum_deletions',
))
->execute();
}
}
#27adbbdaf170149b5b6f3f9d35fa9225

View file

@ -1,77 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\CacheContent.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the cache_content table.
*/
class CacheContent extends DrupalDumpBase {
public function load() {
$this->createTable("cache_content", array(
'primary key' => array(
'cid',
),
'fields' => array(
'cid' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'data' => array(
'type' => 'blob',
'not null' => FALSE,
'length' => 100,
),
'expire' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'created' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'headers' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'serialized' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("cache_content")->fields(array(
'cid',
'data',
'expire',
'created',
'headers',
'serialized',
))
->execute();
}
}
#156a6b622459d99a430e07e3f88a4952

View file

@ -1,92 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\CacheDiscovery.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the cache_discovery table.
*/
class CacheDiscovery extends DrupalDumpBase {
public function load() {
$this->createTable("cache_discovery", array(
'primary key' => array(
'cid',
),
'fields' => array(
'cid' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'data' => array(
'type' => 'blob',
'not null' => FALSE,
'length' => 100,
),
'expire' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'created' => array(
'type' => 'numeric',
'not null' => TRUE,
'precision' => '14',
'scale' => '3',
'default' => '0.000',
),
'serialized' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'tags' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'checksum_invalidations' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'checksum_deletions' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("cache_discovery")->fields(array(
'cid',
'data',
'expire',
'created',
'serialized',
'tags',
'checksum_invalidations',
'checksum_deletions',
))
->execute();
}
}
#2bea5eb7dd5defc47c3bfb5fe004b0ed

View file

@ -1,77 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\CacheFilter.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the cache_filter table.
*/
class CacheFilter extends DrupalDumpBase {
public function load() {
$this->createTable("cache_filter", array(
'primary key' => array(
'cid',
),
'fields' => array(
'cid' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'data' => array(
'type' => 'blob',
'not null' => FALSE,
'length' => 100,
),
'expire' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'created' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'headers' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'serialized' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("cache_filter")->fields(array(
'cid',
'data',
'expire',
'created',
'headers',
'serialized',
))
->execute();
}
}
#2af467369782b455803a601b8b0b2ee7

View file

@ -1,77 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\CacheForm.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the cache_form table.
*/
class CacheForm extends DrupalDumpBase {
public function load() {
$this->createTable("cache_form", array(
'primary key' => array(
'cid',
),
'fields' => array(
'cid' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'data' => array(
'type' => 'blob',
'not null' => FALSE,
'length' => 100,
),
'expire' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'created' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'headers' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'serialized' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("cache_form")->fields(array(
'cid',
'data',
'expire',
'created',
'headers',
'serialized',
))
->execute();
}
}
#bfd409b58ceabeddabf389a8efe8d332

View file

@ -1,77 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\CacheMenu.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the cache_menu table.
*/
class CacheMenu extends DrupalDumpBase {
public function load() {
$this->createTable("cache_menu", array(
'primary key' => array(
'cid',
),
'fields' => array(
'cid' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'data' => array(
'type' => 'blob',
'not null' => FALSE,
'length' => 100,
),
'expire' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'created' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'headers' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'serialized' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("cache_menu")->fields(array(
'cid',
'data',
'expire',
'created',
'headers',
'serialized',
))
->execute();
}
}
#8619c81798239c1dacaaef75f55ee4be

View file

@ -1,77 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\CachePage.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the cache_page table.
*/
class CachePage extends DrupalDumpBase {
public function load() {
$this->createTable("cache_page", array(
'primary key' => array(
'cid',
),
'fields' => array(
'cid' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'data' => array(
'type' => 'blob',
'not null' => FALSE,
'length' => 100,
),
'expire' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'created' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'headers' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'serialized' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("cache_page")->fields(array(
'cid',
'data',
'expire',
'created',
'headers',
'serialized',
))
->execute();
}
}
#79807273423db1b6c053e415f435d597

View file

@ -1,77 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\CacheUpdate.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the cache_update table.
*/
class CacheUpdate extends DrupalDumpBase {
public function load() {
$this->createTable("cache_update", array(
'primary key' => array(
'cid',
),
'fields' => array(
'cid' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'data' => array(
'type' => 'blob',
'not null' => FALSE,
'length' => 100,
),
'expire' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'created' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'headers' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'serialized' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("cache_update")->fields(array(
'cid',
'data',
'expire',
'created',
'headers',
'serialized',
))
->execute();
}
}
#1da5dab9fe3efe5aeb5fabdd1a4fb718

View file

@ -1,58 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Cachetags.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the cachetags table.
*/
class Cachetags extends DrupalDumpBase {
public function load() {
$this->createTable("cachetags", array(
'primary key' => array(
'tag',
),
'fields' => array(
'tag' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'invalidations' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'deletions' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("cachetags")->fields(array(
'tag',
'invalidations',
'deletions',
))
->execute();
}
}
#ffd63ebb3a715c44aeb48e88bde508fa

View file

@ -1,175 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Comments.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the comments table.
*/
class Comments extends DrupalDumpBase {
public function load() {
$this->createTable("comments", array(
'primary key' => array(
'cid',
),
'fields' => array(
'cid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '11',
),
'pid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'nid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'uid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'subject' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '64',
'default' => '',
),
'comment' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'hostname' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '128',
'default' => '',
),
'timestamp' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'status' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'format' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'thread' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
),
'name' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '60',
),
'mail' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '64',
),
'homepage' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '255',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->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' => '0',
'subject' => 'The first comment.',
'comment' => 'The first comment body.',
'hostname' => '127.0.0.1',
'timestamp' => '1390264918',
'status' => '0',
'format' => '1',
'thread' => '01/',
'name' => '1st comment author name',
'mail' => 'comment1@example.com',
'homepage' => 'https://www.drupal.org',
))->values(array(
'cid' => '2',
'pid' => '3',
'nid' => '1',
'uid' => '0',
'subject' => 'The response to the second comment.',
'comment' => 'The second comment response body.',
'hostname' => '127.0.0.1',
'timestamp' => '1390264938',
'status' => '0',
'format' => '1',
'thread' => '02/01',
'name' => '3rd comment author name',
'mail' => 'comment3@example.com',
'homepage' => 'https://www.drupal.org',
))->values(array(
'cid' => '3',
'pid' => '0',
'nid' => '1',
'uid' => '0',
'subject' => 'The second comment.',
'comment' => 'The second comment body.',
'hostname' => '127.0.0.1',
'timestamp' => '1390264948',
'status' => '1',
'format' => '1',
'thread' => '02/',
'name' => '3rd comment author name',
'mail' => 'comment3@example.com',
'homepage' => 'https://www.drupal.org',
))->execute();
}
}
#8ee26900ad900de3abde3e74f89d6765

View file

@ -1,62 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Config.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the config table.
*/
class Config extends DrupalDumpBase {
public function load() {
$this->createTable("config", array(
'primary key' => array(
'collection',
'name',
),
'fields' => array(
'collection' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'data' => array(
'type' => 'blob',
'not null' => FALSE,
'length' => 100,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("config")->fields(array(
'collection',
'name',
'data',
))
->values(array(
'collection' => '',
'name' => 'system.file',
'data' => 'a:1:{s:4:"path";a:1:{s:9:"temporary";s:4:"/tmp";}}',
))->execute();
}
}
#9e924a1aaaf751c5b1db9fb69a9fa7dd

View file

@ -1,98 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Contact.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the contact table.
*/
class Contact extends DrupalDumpBase {
public function load() {
$this->createTable("contact", array(
'primary key' => array(
'cid',
),
'fields' => array(
'cid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
'category' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'recipients' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'reply' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'weight' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'selected' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("contact")->fields(array(
'cid',
'category',
'recipients',
'reply',
'weight',
'selected',
))
->values(array(
'cid' => '1',
'category' => 'Website feedback',
'recipients' => 'admin@example.com',
'reply' => '',
'weight' => '0',
'selected' => '0',
))->values(array(
'cid' => '2',
'category' => 'Some other category',
'recipients' => 'test@example.com',
'reply' => 'Thanks for contacting us, we will reply ASAP!',
'weight' => '1',
'selected' => '1',
))->values(array(
'cid' => '3',
'category' => 'A category much longer than thirty two characters',
'recipients' => 'fortyninechars@example.com',
'reply' => '',
'weight' => '2',
'selected' => '0',
))->execute();
}
}
#e97c7fe79e2079e3935c6cde6871fab3

View file

@ -1,89 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\ContentFieldImage.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the content_field_image table.
*/
class ContentFieldImage extends DrupalDumpBase {
public function load() {
$this->createTable("content_field_image", array(
'primary key' => array(
'vid',
),
'fields' => array(
'vid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'nid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'field_image_fid' => array(
'type' => 'int',
'not null' => FALSE,
'length' => '11',
),
'field_image_list' => array(
'type' => 'int',
'not null' => FALSE,
'length' => '11',
),
'field_image_data' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("content_field_image")->fields(array(
'vid',
'nid',
'field_image_fid',
'field_image_list',
'field_image_data',
))
->values(array(
'vid' => '1',
'nid' => '1',
'field_image_fid' => '2',
'field_image_list' => '1',
'field_image_data' => 'a:2:{s:3:"alt";s:0:"";s:5:"title";s:0:"";}',
))->values(array(
'vid' => '2',
'nid' => '2',
'field_image_fid' => NULL,
'field_image_list' => NULL,
'field_image_data' => NULL,
))->values(array(
'vid' => '3',
'nid' => '1',
'field_image_fid' => '2',
'field_image_list' => '1',
'field_image_data' => 'a:2:{s:3:"alt";s:0:"";s:5:"title";s:0:"";}',
))->execute();
}
}
#2db0e7aa8c758996467e5920e6cc888b

View file

@ -1,79 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\ContentFieldMultivalue.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the content_field_multivalue table.
*/
class ContentFieldMultivalue extends DrupalDumpBase {
public function load() {
$this->createTable("content_field_multivalue", array(
'primary key' => array(
'vid',
'delta',
),
'fields' => array(
'vid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'nid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'field_multivalue_value' => array(
'type' => 'numeric',
'not null' => FALSE,
'precision' => '10',
'scale' => '2',
),
'delta' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("content_field_multivalue")->fields(array(
'vid',
'nid',
'field_multivalue_value',
'delta',
))
->values(array(
'vid' => '4',
'nid' => '3',
'field_multivalue_value' => '33.00',
'delta' => '0',
))->values(array(
'vid' => '4',
'nid' => '3',
'field_multivalue_value' => '44.00',
'delta' => '1',
))->execute();
}
}
#3c8ab8a4159f22b3d38be702b6eaa647

View file

@ -1,86 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\ContentFieldTest.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the content_field_test table.
*/
class ContentFieldTest extends DrupalDumpBase {
public function load() {
$this->createTable("content_field_test", array(
'primary key' => array(
'vid',
),
'fields' => array(
'vid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'nid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'field_test_value' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'field_test_format' => array(
'type' => 'int',
'not null' => FALSE,
'length' => '10',
'unsigned' => TRUE,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("content_field_test")->fields(array(
'vid',
'nid',
'field_test_value',
'field_test_format',
))
->values(array(
'vid' => '1',
'nid' => '1',
'field_test_value' => 'This is a shared text field',
'field_test_format' => '1',
))->values(array(
'vid' => '2',
'nid' => '1',
'field_test_value' => 'This is a shared text field',
'field_test_format' => '1',
))->values(array(
'vid' => '3',
'nid' => '2',
'field_test_value' => NULL,
'field_test_format' => NULL,
))->values(array(
'vid' => '5',
'nid' => '2',
'field_test_value' => NULL,
'field_test_format' => NULL,
))->execute();
}
}
#e7860a4b52cecdb1a6d2fed28665d5e4

View file

@ -1,93 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\ContentFieldTestTwo.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the content_field_test_two table.
*/
class ContentFieldTestTwo extends DrupalDumpBase {
public function load() {
$this->createTable("content_field_test_two", array(
'primary key' => array(
'vid',
'delta',
),
'fields' => array(
'vid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'nid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'delta' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'field_test_two_value' => array(
'type' => 'int',
'not null' => FALSE,
'length' => '11',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("content_field_test_two")->fields(array(
'vid',
'nid',
'delta',
'field_test_two_value',
))
->values(array(
'vid' => '1',
'nid' => '1',
'delta' => '0',
'field_test_two_value' => '10',
))->values(array(
'vid' => '2',
'nid' => '1',
'delta' => '0',
'field_test_two_value' => NULL,
))->values(array(
'vid' => '3',
'nid' => '2',
'delta' => '0',
'field_test_two_value' => NULL,
))->values(array(
'vid' => '5',
'nid' => '2',
'delta' => '0',
'field_test_two_value' => NULL,
))->values(array(
'vid' => '1',
'nid' => '1',
'delta' => '1',
'field_test_two_value' => '20',
))->execute();
}
}
#c4cffd2dbffd6ffdc97ef5b1cb4e0e3a

View file

@ -1,79 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\ContentGroup.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the content_group table.
*/
class ContentGroup extends DrupalDumpBase {
public function load() {
$this->createTable("content_group", array(
'fields' => array(
'group_type' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '32',
'default' => 'standard',
),
'type_name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '32',
'default' => '',
),
'group_name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '32',
'default' => '',
),
'label' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'settings' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'weight' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'primary key' => array(
'type_name',
'group_name',
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("content_group")->fields(array(
'group_type',
'type_name',
'group_name',
'label',
'settings',
'weight',
))
->execute();
}
}
#7e70933ab00570caa7341dab6424469a

View file

@ -1,60 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\ContentGroupFields.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the content_group_fields table.
*/
class ContentGroupFields extends DrupalDumpBase {
public function load() {
$this->createTable("content_group_fields", array(
'primary key' => array(
'type_name',
'group_name',
'field_name',
),
'fields' => array(
'type_name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '32',
'default' => '',
),
'group_name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '32',
'default' => '',
),
'field_name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '32',
'default' => '',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("content_group_fields")->fields(array(
'type_name',
'group_name',
'field_name',
))
->execute();
}
}
#d27d7713a767febbe851794916fc9b0b

View file

@ -1,325 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\ContentNodeField.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the content_node_field table.
*/
class ContentNodeField extends DrupalDumpBase {
public function load() {
$this->createTable("content_node_field", array(
'primary key' => array(
'field_name',
),
'fields' => array(
'field_name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '32',
'default' => '',
),
'type' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '127',
'default' => '',
),
'global_settings' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'required' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'multiple' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'db_storage' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '1',
),
'module' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '127',
'default' => '',
),
'db_columns' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'active' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'locked' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("content_node_field")->fields(array(
'field_name',
'type',
'global_settings',
'required',
'multiple',
'db_storage',
'module',
'db_columns',
'active',
'locked',
))
->values(array(
'field_name' => 'field_multivalue',
'type' => 'number_decimal',
'global_settings' => 'a:9:{s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:3:"min";s:0:"";s:3:"max";s:0:"";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";s:9:"precision";s:2:"10";s:5:"scale";s:1:"2";s:7:"decimal";s:1:".";}',
'required' => '0',
'multiple' => '1',
'db_storage' => '0',
'module' => 'number',
'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:7:"numeric";s:9:"precision";s:2:"10";s:5:"scale";s:1:"2";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
'active' => '1',
'locked' => '0',
))->values(array(
'field_name' => 'field_test',
'type' => 'text',
'global_settings' => 'a:4:{s:15:"text_processing";s:1:"1";s:10:"max_length";s:0:"";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
'required' => '0',
'multiple' => '0',
'db_storage' => '0',
'module' => 'text',
'db_columns' => 'a:2:{s:5:"value";a:5:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";s:8:"not null";b:0;s:8:"sortable";b:1;s:5:"views";b:1;}s:6:"format";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;s:5:"views";b:0;}}',
'active' => '1',
'locked' => '0',
))->values(array(
'field_name' => 'field_test_date',
'type' => 'date',
'global_settings' => 'a:7:{s:11:"granularity";a:5:{s:4:"year";s:4:"year";s:5:"month";s:5:"month";s:3:"day";s:3:"day";s:4:"hour";s:4:"hour";s:6:"minute";s:6:"minute";}s:11:"timezone_db";s:3:"UTC";s:11:"tz_handling";s:4:"site";s:6:"todate";s:0:"";s:6:"repeat";i:0;s:16:"repeat_collapsed";s:0:"";s:14:"default_format";s:6:"medium";}',
'required' => '0',
'multiple' => '0',
'db_storage' => '1',
'module' => 'date',
'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:7:"varchar";s:6:"length";i:20;s:8:"not null";b:0;s:8:"sortable";b:1;s:5:"views";b:1;}}',
'active' => '1',
'locked' => '0',
))->values(array(
'field_name' => 'field_test_datestamp',
'type' => 'datestamp',
'global_settings' => 'a:7:{s:11:"granularity";a:5:{s:4:"year";s:4:"year";s:5:"month";s:5:"month";s:3:"day";s:3:"day";s:4:"hour";s:4:"hour";s:6:"minute";s:6:"minute";}s:11:"timezone_db";s:3:"UTC";s:11:"tz_handling";s:4:"site";s:6:"todate";s:0:"";s:6:"repeat";i:0;s:16:"repeat_collapsed";s:0:"";s:14:"default_format";s:6:"medium";}',
'required' => '0',
'multiple' => '0',
'db_storage' => '1',
'module' => 'date',
'db_columns' => 'a:1:{s:5:"value";a:4:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:8:"sortable";b:1;s:5:"views";b:1;}}',
'active' => '1',
'locked' => '0',
))->values(array(
'field_name' => 'field_test_datetime',
'type' => 'datetime',
'global_settings' => 'a:7:{s:11:"granularity";a:5:{s:4:"year";s:4:"year";s:5:"month";s:5:"month";s:3:"day";s:3:"day";s:4:"hour";s:4:"hour";s:6:"minute";s:6:"minute";}s:11:"timezone_db";s:3:"UTC";s:11:"tz_handling";s:4:"site";s:6:"todate";s:0:"";s:6:"repeat";i:0;s:16:"repeat_collapsed";s:0:"";s:14:"default_format";s:6:"medium";}',
'required' => '0',
'multiple' => '0',
'db_storage' => '1',
'module' => 'date',
'db_columns' => 'a:1:{s:5:"value";a:4:{s:4:"type";s:8:"datetime";s:8:"not null";b:0;s:8:"sortable";b:1;s:5:"views";b:1;}}',
'active' => '1',
'locked' => '0',
))->values(array(
'field_name' => 'field_test_decimal_radio_buttons',
'type' => 'number_decimal',
'global_settings' => "a:9:{s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:14:\"allowed_values\";s:8:\"1.2\r\n2.1\";s:18:\"allowed_values_php\";s:0:\"\";s:9:\"precision\";s:2:\"10\";s:5:\"scale\";s:1:\"2\";s:7:\"decimal\";s:1:\".\";}",
'required' => '0',
'multiple' => '0',
'db_storage' => '1',
'module' => 'number',
'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:7:"numeric";s:9:"precision";s:2:"10";s:5:"scale";s:1:"2";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
'active' => '1',
'locked' => '0',
))->values(array(
'field_name' => 'field_test_email',
'type' => 'email',
'global_settings' => 'a:0:{}',
'required' => '0',
'multiple' => '0',
'db_storage' => '1',
'module' => 'email',
'db_columns' => 'a:1:{s:5:"email";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:8:"not null";b:0;s:8:"sortable";b:1;}}',
'active' => '1',
'locked' => '0',
))->values(array(
'field_name' => 'field_test_exclude_unset',
'type' => 'text',
'global_settings' => 'a:4:{s:15:"text_processing";s:1:"1";s:10:"max_length";s:0:"";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
'required' => '0',
'multiple' => '0',
'db_storage' => '1',
'module' => 'text',
'db_columns' => 'a:2:{s:5:"value";a:5:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";s:8:"not null";b:0;s:8:"sortable";b:1;s:5:"views";b:1;}s:6:"format";a:4:{s:4:"type";s:3:"int";s:8:"unsigned";b:1;s:8:"not null";b:0;s:5:"views";b:0;}}',
'active' => '1',
'locked' => '0',
))->values(array(
'field_name' => 'field_test_filefield',
'type' => 'filefield',
'global_settings' => 'a:3:{s:10:"list_field";s:1:"0";s:12:"list_default";i:1;s:17:"description_field";s:1:"1";}',
'required' => '0',
'multiple' => '0',
'db_storage' => '1',
'module' => 'filefield',
'db_columns' => 'a:3:{s:3:"fid";a:3:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:5:"views";b:1;}s:4:"list";a:4:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;s:5:"views";b:1;}s:4:"data";a:3:{s:4:"type";s:4:"text";s:9:"serialize";b:1;s:5:"views";b:1;}}',
'active' => '1',
'locked' => '0',
))->values(array(
'field_name' => 'field_test_float_single_checkbox',
'type' => 'number_float',
'global_settings' => "a:6:{s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:14:\"allowed_values\";s:12:\"3.142\r\n1.234\";s:18:\"allowed_values_php\";s:0:\"\";}",
'required' => '0',
'multiple' => '0',
'db_storage' => '1',
'module' => 'number',
'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:5:"float";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
'active' => '1',
'locked' => '0',
))->values(array(
'field_name' => 'field_test_four',
'type' => 'number_float',
'global_settings' => 'a:6:{s:6:"prefix";s:3:"id-";s:6:"suffix";s:0:"";s:3:"min";s:3:"100";s:3:"max";s:3:"200";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
'required' => '0',
'multiple' => '0',
'db_storage' => '1',
'module' => 'number',
'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:5:"float";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
'active' => '1',
'locked' => '0',
))->values(array(
'field_name' => 'field_test_identical1',
'type' => 'number_integer',
'global_settings' => 'a:6:{s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:3:"min";s:0:"";s:3:"max";s:0:"";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
'required' => '0',
'multiple' => '0',
'db_storage' => '1',
'module' => 'number',
'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
'active' => '1',
'locked' => '0',
))->values(array(
'field_name' => 'field_test_identical2',
'type' => 'number_integer',
'global_settings' => 'a:6:{s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:3:"min";s:0:"";s:3:"max";s:0:"";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
'required' => '0',
'multiple' => '0',
'db_storage' => '1',
'module' => 'number',
'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
'active' => '1',
'locked' => '0',
))->values(array(
'field_name' => 'field_test_imagefield',
'type' => 'filefield',
'global_settings' => 'a:3:{s:10:"list_field";s:1:"0";s:12:"list_default";i:1;s:17:"description_field";s:1:"0";}',
'required' => '0',
'multiple' => '0',
'db_storage' => '1',
'module' => 'filefield',
'db_columns' => 'a:3:{s:3:"fid";a:3:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:5:"views";b:1;}s:4:"list";a:4:{s:4:"type";s:3:"int";s:4:"size";s:4:"tiny";s:8:"not null";b:0;s:5:"views";b:1;}s:4:"data";a:3:{s:4:"type";s:4:"text";s:9:"serialize";b:1;s:5:"views";b:1;}}',
'active' => '1',
'locked' => '0',
))->values(array(
'field_name' => 'field_test_integer_selectlist',
'type' => 'number_integer',
'global_settings' => "a:6:{s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:14:\"allowed_values\";s:22:\"1234\r\n2341\r\n3412\r\n4123\";s:18:\"allowed_values_php\";s:0:\"\";}",
'required' => '0',
'multiple' => '0',
'db_storage' => '1',
'module' => 'number',
'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
'active' => '1',
'locked' => '0',
))->values(array(
'field_name' => 'field_test_link',
'type' => 'link',
'global_settings' => 'a:7:{s:10:"attributes";a:4:{s:6:"target";s:4:"user";s:3:"rel";s:8:"nofollow";s:5:"class";s:0:"";s:5:"title";s:10:"Link Title";}s:7:"display";a:1:{s:10:"url_cutoff";s:2:"80";}s:3:"url";i:0;s:5:"title";s:8:"required";s:11:"title_value";s:0:"";s:13:"enable_tokens";s:0:"";s:12:"validate_url";i:1;}',
'required' => '0',
'multiple' => '0',
'db_storage' => '1',
'module' => 'link',
'db_columns' => 'a:3:{s:3:"url";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:2048;s:8:"not null";b:0;s:8:"sortable";b:1;}s:5:"title";a:4:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:8:"not null";b:0;s:8:"sortable";b:1;}s:10:"attributes";a:3:{s:4:"type";s:4:"text";s:4:"size";s:6:"medium";s:8:"not null";b:0;}}',
'active' => '1',
'locked' => '0',
))->values(array(
'field_name' => 'field_test_phone',
'type' => 'au_phone',
'global_settings' => 'a:1:{s:18:"phone_country_code";i:0;}',
'required' => '0',
'multiple' => '0',
'db_storage' => '1',
'module' => 'phone',
'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:7:"varchar";s:6:"length";i:255;s:8:"not null";b:0;}}',
'active' => '1',
'locked' => '0',
))->values(array(
'field_name' => 'field_test_text_single_checkbox',
'type' => 'text',
'global_settings' => "a:4:{s:15:\"text_processing\";s:1:\"0\";s:10:\"max_length\";s:0:\"\";s:14:\"allowed_values\";s:18:\"0|Hello\r\n1|Goodbye\";s:18:\"allowed_values_php\";s:0:\"\";}",
'required' => '0',
'multiple' => '0',
'db_storage' => '1',
'module' => 'text',
'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";s:8:"not null";b:0;s:8:"sortable";b:1;s:5:"views";b:1;}}',
'active' => '1',
'locked' => '0',
))->values(array(
'field_name' => 'field_test_three',
'type' => 'number_decimal',
'global_settings' => 'a:9:{s:6:"prefix";s:0:"";s:6:"suffix";s:0:"";s:3:"min";s:0:"";s:3:"max";s:3:"600";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";s:9:"precision";s:2:"10";s:5:"scale";s:1:"2";s:7:"decimal";s:1:".";}',
'required' => '0',
'multiple' => '0',
'db_storage' => '1',
'module' => 'number',
'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:7:"numeric";s:9:"precision";s:2:"10";s:5:"scale";s:1:"2";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
'active' => '1',
'locked' => '0',
))->values(array(
'field_name' => 'field_test_two',
'type' => 'number_integer',
'global_settings' => 'a:6:{s:6:"prefix";s:4:"pref";s:6:"suffix";s:3:"suf";s:3:"min";s:2:"10";s:3:"max";s:3:"100";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
'required' => '0',
'multiple' => '1',
'db_storage' => '0',
'module' => 'number',
'db_columns' => 'a:1:{s:5:"value";a:3:{s:4:"type";s:3:"int";s:8:"not null";b:0;s:8:"sortable";b:1;}}',
'active' => '1',
'locked' => '0',
))->execute();
}
}
#e1fbb3a444896287af59cd6395555fbf

View file

@ -1,336 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\ContentNodeFieldInstance.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the content_node_field_instance table.
*/
class ContentNodeFieldInstance extends DrupalDumpBase {
public function load() {
$this->createTable("content_node_field_instance", array(
'primary key' => array(
'field_name',
'type_name',
),
'fields' => array(
'field_name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '32',
'default' => '',
),
'type_name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '32',
'default' => '',
),
'weight' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'label' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'widget_type' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '32',
'default' => '',
),
'widget_settings' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'display_settings' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'description' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'widget_module' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '127',
'default' => '',
),
'widget_active' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("content_node_field_instance")->fields(array(
'field_name',
'type_name',
'weight',
'label',
'widget_type',
'widget_settings',
'display_settings',
'description',
'widget_module',
'widget_active',
))
->values(array(
'field_name' => 'field_multivalue',
'type_name' => 'test_planet',
'weight' => '2',
'label' => 'Decimal Field',
'widget_type' => 'number',
'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:0:"";s:14:"_error_element";s:48:"default_value_widget][field_multivalue][0][value";}}s:17:"default_value_php";N;}',
'display_settings' => 'a:6:{s:6:"weight";i:2;s:6:"parent";s:0:"";s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
'description' => 'An example multi-valued decimal field.',
'widget_module' => 'number',
'widget_active' => '1',
))->values(array(
'field_name' => 'field_test',
'type_name' => 'story',
'weight' => '1',
'label' => 'Text Field',
'widget_type' => 'text_textfield',
'widget_settings' => 'a:4:{s:4:"rows";i:5;s:4:"size";s:2:"60";s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:22:"text for default value";s:14:"_error_element";s:42:"default_value_widget][field_test][0][value";}}s:17:"default_value_php";N;}',
'display_settings' => 'a:7:{s:6:"weight";s:1:"1";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:1;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"trimmed";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"trimmed";s:7:"exclude";i:0;}}',
'description' => 'An example text field.',
'widget_module' => 'text',
'widget_active' => '1',
))->values(array(
'field_name' => 'field_test',
'type_name' => 'test_page',
'weight' => '35',
'label' => 'Text Field',
'widget_type' => 'text_textfield',
'widget_settings' => 'a:4:{s:4:"rows";i:5;s:4:"size";s:2:"60";s:13:"default_value";a:1:{i:0;a:3:{s:5:"value";s:22:"text for default value";s:6:"format";s:1:"1";s:14:"_error_element";s:42:"default_value_widget][field_test][0][value";}}s:17:"default_value_php";N;}',
'display_settings' => 'a:6:{s:6:"weight";s:2:"35";s:6:"parent";s:0:"";s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"trimmed";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
'description' => 'An example text field.',
'widget_module' => 'text',
'widget_active' => '1',
))->values(array(
'field_name' => 'field_test_date',
'type_name' => 'story',
'weight' => '10',
'label' => 'Date Field',
'widget_type' => 'date_select',
'widget_settings' => 'a:10:{s:13:"default_value";s:5:"blank";s:18:"default_value_code";s:0:"";s:14:"default_value2";s:4:"same";s:19:"default_value_code2";s:0:"";s:12:"input_format";s:13:"m/d/Y - H:i:s";s:19:"input_format_custom";s:0:"";s:9:"increment";s:1:"1";s:10:"text_parts";a:0:{}s:10:"year_range";s:5:"-3:+3";s:14:"label_position";s:5:"above";}',
'display_settings' => 'a:7:{s:6:"weight";s:2:"10";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:4:"long";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
'description' => 'An example date field.',
'widget_module' => 'date',
'widget_active' => '1',
))->values(array(
'field_name' => 'field_test_datestamp',
'type_name' => 'story',
'weight' => '11',
'label' => 'Date Stamp Field',
'widget_type' => 'date_select',
'widget_settings' => 'a:10:{s:13:"default_value";s:5:"blank";s:18:"default_value_code";s:0:"";s:14:"default_value2";s:4:"same";s:19:"default_value_code2";s:0:"";s:12:"input_format";s:13:"m/d/Y - H:i:s";s:19:"input_format_custom";s:0:"";s:9:"increment";s:1:"1";s:10:"text_parts";a:0:{}s:10:"year_range";s:5:"-3:+3";s:14:"label_position";s:5:"above";}',
'display_settings' => 'a:7:{s:6:"weight";s:2:"11";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:6:"medium";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
'description' => 'An example date stamp field.',
'widget_module' => 'date',
'widget_active' => '1',
))->values(array(
'field_name' => 'field_test_datetime',
'type_name' => 'story',
'weight' => '12',
'label' => 'Datetime Field',
'widget_type' => 'date_select',
'widget_settings' => 'a:10:{s:13:"default_value";s:5:"blank";s:18:"default_value_code";s:0:"";s:14:"default_value2";s:4:"same";s:19:"default_value_code2";s:0:"";s:12:"input_format";s:13:"m/d/Y - H:i:s";s:19:"input_format_custom";s:0:"";s:9:"increment";s:1:"1";s:10:"text_parts";a:0:{}s:10:"year_range";s:5:"-3:+3";s:14:"label_position";s:5:"above";}',
'display_settings' => 'a:7:{s:6:"weight";s:2:"12";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:5:"short";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
'description' => 'An example datetime field.',
'widget_module' => 'date',
'widget_active' => '1',
))->values(array(
'field_name' => 'field_test_decimal_radio_buttons',
'type_name' => 'story',
'weight' => '14',
'label' => 'Decimal Radio Buttons Field',
'widget_type' => 'optionwidgets_buttons',
'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";s:0:"";}}s:17:"default_value_php";N;}',
'display_settings' => 'a:7:{s:6:"weight";s:2:"14";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
'description' => 'An example decimal field using radio buttons.',
'widget_module' => 'optionwidgets',
'widget_active' => '1',
))->values(array(
'field_name' => 'field_test_email',
'type_name' => 'story',
'weight' => '6',
'label' => 'Email Field',
'widget_type' => 'email_textfield',
'widget_settings' => 'a:3:{s:4:"size";s:2:"60";s:13:"default_value";a:1:{i:0;a:1:{s:5:"email";s:17:"benjy@example.com";}}s:17:"default_value_php";N;}',
'display_settings' => 'a:7:{s:6:"weight";s:1:"6";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
'description' => 'An example email field.',
'widget_module' => 'email',
'widget_active' => '1',
))->values(array(
'field_name' => 'field_test_exclude_unset',
'type_name' => 'story',
'weight' => '0',
'label' => 'Text Field',
'widget_type' => 'text_textfield',
'widget_settings' => 'a:4:{s:4:"rows";i:5;s:4:"size";s:2:"60";s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:22:"text for default value";s:14:"_error_element";s:42:"default_value_widget][field_test][0][value";}}s:17:"default_value_php";N;}',
'display_settings' => 'a:8:{s:6:"weight";i:0;s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:1;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"trimmed";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"trimmed";s:7:"exclude";i:0;}i:1;a:1:{s:6:"format";s:7:"default";}}',
'description' => 'An example text field without exclude.',
'widget_module' => 'text',
'widget_active' => '1',
))->values(array(
'field_name' => 'field_test_filefield',
'type_name' => 'story',
'weight' => '8',
'label' => 'File Field',
'widget_type' => 'filefield_widget',
'widget_settings' => 'a:5:{s:15:"file_extensions";s:11:"txt pdf doc";s:9:"file_path";s:6:"images";s:18:"progress_indicator";s:3:"bar";s:21:"max_filesize_per_file";s:4:"200K";s:21:"max_filesize_per_node";s:3:"20M";}',
'display_settings' => 'a:7:{s:6:"weight";s:1:"8";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:10:"path_plain";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
'description' => 'An example image field.',
'widget_module' => 'filefield',
'widget_active' => '1',
))->values(array(
'field_name' => 'field_test_float_single_checkbox',
'type_name' => 'story',
'weight' => '15',
'label' => 'Float Single Checkbox Field',
'widget_type' => 'optionwidgets_onoff',
'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";N;}}s:17:"default_value_php";N;}',
'display_settings' => 'a:7:{s:6:"weight";s:2:"15";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
'description' => 'An example float field using a single on/off checkbox.',
'widget_module' => 'optionwidgets',
'widget_active' => '1',
))->values(array(
'field_name' => 'field_test_four',
'type_name' => 'story',
'weight' => '3',
'label' => 'Float Field',
'widget_type' => 'number',
'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:3:"101";s:14:"_error_element";s:47:"default_value_widget][field_test_four][0][value";}}s:17:"default_value_php";N;}',
'display_settings' => 'a:7:{s:6:"weight";s:1:"3";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
'description' => 'An example float field.',
'widget_module' => 'number',
'widget_active' => '1',
))->values(array(
'field_name' => 'field_test_identical1',
'type_name' => 'story',
'weight' => '4',
'label' => 'Integer Field',
'widget_type' => 'number',
'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:0:"";s:14:"_error_element";s:41:"default_value_widget][field_int][0][value";}}s:17:"default_value_php";N;}',
'display_settings' => 'a:7:{s:6:"weight";s:1:"4";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:1;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:11:"unformatted";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:11:"unformatted";s:7:"exclude";i:0;}}',
'description' => 'An example integer field.',
'widget_module' => 'number',
'widget_active' => '1',
))->values(array(
'field_name' => 'field_test_identical2',
'type_name' => 'story',
'weight' => '5',
'label' => 'Integer Field',
'widget_type' => 'number',
'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:0:"";s:14:"_error_element";s:41:"default_value_widget][field_int][0][value";}}s:17:"default_value_php";N;}',
'display_settings' => 'a:7:{s:6:"weight";s:1:"5";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:1;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:11:"unformatted";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:11:"unformatted";s:7:"exclude";i:0;}}',
'description' => 'An example integer field.',
'widget_module' => 'number',
'widget_active' => '1',
))->values(array(
'field_name' => 'field_test_imagefield',
'type_name' => 'story',
'weight' => '9',
'label' => 'Image Field',
'widget_type' => 'imagefield_widget',
'widget_settings' => 'a:14:{s:15:"file_extensions";s:16:"png gif jpg jpeg";s:9:"file_path";s:0:"";s:18:"progress_indicator";s:3:"bar";s:21:"max_filesize_per_file";s:0:"";s:21:"max_filesize_per_node";s:0:"";s:14:"max_resolution";s:1:"0";s:14:"min_resolution";s:1:"0";s:3:"alt";s:8:"Test alt";s:10:"custom_alt";i:0;s:5:"title";s:10:"Test title";s:12:"custom_title";i:0;s:10:"title_type";s:9:"textfield";s:13:"default_image";N;s:17:"use_default_image";i:0;}',
'display_settings' => 'a:7:{s:6:"weight";s:1:"9";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:1;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:15:"image_imagelink";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:11:"image_plain";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
'description' => 'An example image field.',
'widget_module' => 'imagefield',
'widget_active' => '1',
))->values(array(
'field_name' => 'field_test_integer_selectlist',
'type_name' => 'story',
'weight' => '16',
'label' => 'Integer Select List Field',
'widget_type' => 'optionwidgets_select',
'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";s:0:"";}}s:17:"default_value_php";N;}',
'display_settings' => 'a:7:{s:6:"weight";s:2:"16";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
'description' => 'An example integer field using a select list.',
'widget_module' => 'optionwidgets',
'widget_active' => '1',
))->values(array(
'field_name' => 'field_test_link',
'type_name' => 'story',
'weight' => '7',
'label' => 'Link Field',
'widget_type' => 'link',
'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"title";s:18:"default link title";s:3:"url";s:22:"https://www.drupal.org";}}s:17:"default_value_php";N;}',
'display_settings' => 'a:7:{s:6:"weight";s:1:"7";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:1;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:8:"absolute";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
'description' => 'An example link field.',
'widget_module' => 'link',
'widget_active' => '1',
))->values(array(
'field_name' => 'field_test_phone',
'type_name' => 'story',
'weight' => '13',
'label' => 'Phone Field',
'widget_type' => 'phone_textfield',
'widget_settings' => 'a:3:{s:4:"size";s:2:"60";s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:0:"";s:14:"_error_element";s:48:"default_value_widget][field_test_phone][0][value";}}s:17:"default_value_php";N;}',
'display_settings' => 'a:7:{s:6:"weight";s:2:"13";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
'description' => 'An example phone field.',
'widget_module' => 'phone',
'widget_active' => '1',
))->values(array(
'field_name' => 'field_test_text_single_checkbox',
'type_name' => 'story',
'weight' => '17',
'label' => 'Text Single Checkbox Field',
'widget_type' => 'optionwidgets_onoff',
'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:1:{s:5:"value";s:1:"a";}}s:17:"default_value_php";N;}',
'display_settings' => 'a:7:{s:6:"weight";s:2:"17";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
'description' => 'An example text field using a single on/off checkbox.',
'widget_module' => 'optionwidgets',
'widget_active' => '1',
))->values(array(
'field_name' => 'field_test_three',
'type_name' => 'story',
'weight' => '2',
'label' => 'Decimal Field',
'widget_type' => 'number',
'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";d:101;s:14:"_error_element";s:48:"default_value_widget][field_test_three][0][value";}}s:17:"default_value_php";N;}',
'display_settings' => 'a:7:{s:6:"weight";s:1:"2";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:1;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:11:"unformatted";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:4:"us_2";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:11:"unformatted";s:7:"exclude";i:0;}}',
'description' => 'An example decimal field.',
'widget_module' => 'number',
'widget_active' => '1',
))->values(array(
'field_name' => 'field_test_two',
'type_name' => 'story',
'weight' => '1',
'label' => 'Integer Field',
'widget_type' => 'number',
'widget_settings' => 'a:2:{s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:0:"";s:14:"_error_element";s:46:"default_value_widget][field_test_two][0][value";}}s:17:"default_value_php";N;}',
'display_settings' => 'a:7:{s:6:"weight";s:1:"1";s:6:"parent";s:0:"";i:5;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:1;}s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:4:"us_0";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:4:"us_0";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:11:"unformatted";s:7:"exclude";i:0;}}',
'description' => 'An example integer field.',
'widget_module' => 'number',
'widget_active' => '1',
))->execute();
}
}
#18e0592c55879f37c24ea67f76ade69a

View file

@ -1,67 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\ContentTypePage.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the content_type_page table.
*/
class ContentTypePage extends DrupalDumpBase {
public function load() {
$this->createTable("content_type_page", array(
'primary key' => array(
'vid',
),
'fields' => array(
'vid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'nid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'field_text_field_value' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("content_type_page")->fields(array(
'vid',
'nid',
'field_text_field_value',
))
->values(array(
'vid' => '1',
'nid' => '1',
'field_text_field_value' => NULL,
))->values(array(
'vid' => '3',
'nid' => '1',
'field_text_field_value' => NULL,
))->execute();
}
}
#a22194f55d9c79d0c83e97ee7c96714b

View file

@ -1,322 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\ContentTypeStory.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the content_type_story table.
*/
class ContentTypeStory extends DrupalDumpBase {
public function load() {
$this->createTable("content_type_story", array(
'fields' => array(
'nid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'vid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
'uid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
'field_test_three_value' => array(
'type' => 'numeric',
'not null' => FALSE,
'precision' => '10',
'scale' => '2',
),
'field_test_identical1_value' => array(
'type' => 'int',
'not null' => FALSE,
'length' => '10',
'unsigned' => TRUE,
),
'field_test_identical2_value' => array(
'type' => 'int',
'not null' => FALSE,
'length' => '10',
'unsigned' => TRUE,
),
'field_test_link_url' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '2048',
),
'field_test_link_title' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '255',
),
'field_test_link_attributes' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'field_test_date_value' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '20',
),
'field_test_datestamp_value' => array(
'type' => 'int',
'not null' => FALSE,
'length' => '11',
),
'field_test_datetime_value' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '100',
),
'field_test_email_email' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '255',
),
'field_test_filefield_fid' => array(
'type' => 'int',
'not null' => FALSE,
'length' => '11',
),
'field_test_filefield_list' => array(
'type' => 'int',
'not null' => FALSE,
'length' => '11',
),
'field_test_filefield_data' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'field_test_four_value' => array(
'type' => 'numeric',
'not null' => FALSE,
'precision' => '10',
'scale' => '0',
),
'field_test_text_single_checkbox_value' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'field_test_integer_selectlist_value' => array(
'type' => 'int',
'not null' => FALSE,
'length' => '11',
),
'field_test_float_single_checkbox_value' => array(
'type' => 'numeric',
'not null' => FALSE,
'precision' => '10',
'scale' => '0',
),
'field_test_decimal_radio_buttons_value' => array(
'type' => 'numeric',
'not null' => FALSE,
'precision' => '10',
'scale' => '2',
),
'field_test_phone_value' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '255',
),
'field_test_exclude_unset_value' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'field_test_exclude_unset_format' => array(
'type' => 'int',
'not null' => FALSE,
'length' => '10',
'unsigned' => TRUE,
),
'field_test_imagefield_fid' => array(
'type' => 'int',
'not null' => FALSE,
'length' => '11',
),
'field_test_imagefield_list' => array(
'type' => 'int',
'not null' => FALSE,
'length' => '11',
),
'field_test_imagefield_data' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
),
'primary key' => array(
'vid',
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("content_type_story")->fields(array(
'nid',
'vid',
'uid',
'field_test_three_value',
'field_test_identical1_value',
'field_test_identical2_value',
'field_test_link_url',
'field_test_link_title',
'field_test_link_attributes',
'field_test_date_value',
'field_test_datestamp_value',
'field_test_datetime_value',
'field_test_email_email',
'field_test_filefield_fid',
'field_test_filefield_list',
'field_test_filefield_data',
'field_test_four_value',
'field_test_text_single_checkbox_value',
'field_test_integer_selectlist_value',
'field_test_float_single_checkbox_value',
'field_test_decimal_radio_buttons_value',
'field_test_phone_value',
'field_test_exclude_unset_value',
'field_test_exclude_unset_format',
'field_test_imagefield_fid',
'field_test_imagefield_list',
'field_test_imagefield_data',
))
->values(array(
'nid' => '1',
'vid' => '1',
'uid' => '1',
'field_test_three_value' => '42.42',
'field_test_identical1_value' => '1',
'field_test_identical2_value' => '1',
'field_test_link_url' => 'https://www.drupal.org/project/drupal',
'field_test_link_title' => 'Drupal project page',
'field_test_link_attributes' => 's:32:"a:1:{s:6:"target";s:6:"_blank";}";',
'field_test_date_value' => NULL,
'field_test_datestamp_value' => NULL,
'field_test_datetime_value' => NULL,
'field_test_email_email' => NULL,
'field_test_filefield_fid' => '5',
'field_test_filefield_list' => '1',
'field_test_filefield_data' => 'a:1:{s:11:"description";s:4:"desc";}',
'field_test_four_value' => NULL,
'field_test_text_single_checkbox_value' => '0',
'field_test_integer_selectlist_value' => '3412',
'field_test_float_single_checkbox_value' => '3',
'field_test_decimal_radio_buttons_value' => NULL,
'field_test_phone_value' => NULL,
'field_test_exclude_unset_value' => 'This is a field with exclude unset.',
'field_test_exclude_unset_format' => '1',
'field_test_imagefield_fid' => NULL,
'field_test_imagefield_list' => NULL,
'field_test_imagefield_data' => NULL,
))->values(array(
'nid' => '1',
'vid' => '2',
'uid' => '1',
'field_test_three_value' => '42.42',
'field_test_identical1_value' => '1',
'field_test_identical2_value' => '1',
'field_test_link_url' => 'https://www.drupal.org/project/drupal',
'field_test_link_title' => 'Drupal project page',
'field_test_link_attributes' => 's:32:"a:1:{s:6:"target";s:6:"_blank";}";',
'field_test_date_value' => NULL,
'field_test_datestamp_value' => NULL,
'field_test_datetime_value' => NULL,
'field_test_email_email' => NULL,
'field_test_filefield_fid' => NULL,
'field_test_filefield_list' => NULL,
'field_test_filefield_data' => NULL,
'field_test_four_value' => NULL,
'field_test_text_single_checkbox_value' => NULL,
'field_test_integer_selectlist_value' => NULL,
'field_test_float_single_checkbox_value' => NULL,
'field_test_decimal_radio_buttons_value' => NULL,
'field_test_phone_value' => NULL,
'field_test_exclude_unset_value' => NULL,
'field_test_exclude_unset_format' => NULL,
'field_test_imagefield_fid' => NULL,
'field_test_imagefield_list' => NULL,
'field_test_imagefield_data' => NULL,
))->values(array(
'nid' => '2',
'vid' => '3',
'uid' => '1',
'field_test_three_value' => '23.20',
'field_test_identical1_value' => '1',
'field_test_identical2_value' => '1',
'field_test_link_url' => 'http://groups.drupal.org/',
'field_test_link_title' => 'Drupal Groups',
'field_test_link_attributes' => 's:6:"a:0:{}";',
'field_test_date_value' => NULL,
'field_test_datestamp_value' => NULL,
'field_test_datetime_value' => NULL,
'field_test_email_email' => NULL,
'field_test_filefield_fid' => NULL,
'field_test_filefield_list' => NULL,
'field_test_filefield_data' => NULL,
'field_test_four_value' => NULL,
'field_test_text_single_checkbox_value' => NULL,
'field_test_integer_selectlist_value' => NULL,
'field_test_float_single_checkbox_value' => NULL,
'field_test_decimal_radio_buttons_value' => NULL,
'field_test_phone_value' => NULL,
'field_test_exclude_unset_value' => NULL,
'field_test_exclude_unset_format' => NULL,
'field_test_imagefield_fid' => NULL,
'field_test_imagefield_list' => NULL,
'field_test_imagefield_data' => NULL,
))->values(array(
'nid' => '2',
'vid' => '5',
'uid' => '1',
'field_test_three_value' => '23.20',
'field_test_identical1_value' => '1',
'field_test_identical2_value' => '1',
'field_test_link_url' => 'http://groups.drupal.org/',
'field_test_link_title' => 'Drupal Groups',
'field_test_link_attributes' => 's:6:"a:0:{}";',
'field_test_date_value' => NULL,
'field_test_datestamp_value' => NULL,
'field_test_datetime_value' => NULL,
'field_test_email_email' => NULL,
'field_test_filefield_fid' => NULL,
'field_test_filefield_list' => NULL,
'field_test_filefield_data' => NULL,
'field_test_four_value' => NULL,
'field_test_text_single_checkbox_value' => NULL,
'field_test_integer_selectlist_value' => NULL,
'field_test_float_single_checkbox_value' => NULL,
'field_test_decimal_radio_buttons_value' => NULL,
'field_test_phone_value' => NULL,
'field_test_exclude_unset_value' => NULL,
'field_test_exclude_unset_format' => NULL,
'field_test_imagefield_fid' => NULL,
'field_test_imagefield_list' => NULL,
'field_test_imagefield_data' => NULL,
))->execute();
}
}
#e355803b63e8cbefe404f59e30bbf793

View file

@ -1,66 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\ContentTypeTestPage.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the content_type_test_page table.
*/
class ContentTypeTestPage extends DrupalDumpBase {
public function load() {
$this->createTable("content_type_test_page", array(
'primary key' => array(
'vid',
),
'fields' => array(
'vid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'nid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'field_test_value' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'field_test_format' => array(
'type' => 'int',
'not null' => FALSE,
'length' => '10',
'unsigned' => TRUE,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("content_type_test_page")->fields(array(
'vid',
'nid',
'field_test_value',
'field_test_format',
))
->execute();
}
}
#cc8cbe99b5941aeb7e2ae8f0a5099945

View file

@ -1,73 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\ContentTypeTestPlanet.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the content_type_test_planet table.
*/
class ContentTypeTestPlanet extends DrupalDumpBase {
public function load() {
$this->createTable("content_type_test_planet", array(
'fields' => array(
'nid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'vid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
),
'primary key' => array(
'vid',
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("content_type_test_planet")->fields(array(
'nid',
'vid',
))
->values(array(
'nid' => '3',
'vid' => '4',
))->values(array(
'nid' => '4',
'vid' => '6',
))->values(array(
'nid' => '5',
'vid' => '7',
))->values(array(
'nid' => '6',
'vid' => '8',
))->values(array(
'nid' => '7',
'vid' => '9',
))->values(array(
'nid' => '8',
'vid' => '10',
))->values(array(
'nid' => '9',
'vid' => '11',
))->execute();
}
}
#d824be8bf53956e1f6e275f010eb1b86

View file

@ -1,56 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\DateFormatLocale.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the date_format_locale table.
*/
class DateFormatLocale extends DrupalDumpBase {
public function load() {
$this->createTable("date_format_locale", array(
'fields' => array(
'format' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '100',
),
'type' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '200',
),
'language' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '12',
),
),
'primary key' => array(
'type',
'language',
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("date_format_locale")->fields(array(
'format',
'type',
'language',
))
->execute();
}
}
#a9092bf2a65e6797eb144166d7a27ddf

View file

@ -1,68 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\DateFormatTypes.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the date_format_types table.
*/
class DateFormatTypes extends DrupalDumpBase {
public function load() {
$this->createTable("date_format_types", array(
'primary key' => array(
'type',
),
'fields' => array(
'type' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '200',
),
'title' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
),
'locked' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("date_format_types")->fields(array(
'type',
'title',
'locked',
))
->values(array(
'type' => 'long',
'title' => 'Long',
'locked' => '1',
))->values(array(
'type' => 'medium',
'title' => 'Medium',
'locked' => '1',
))->values(array(
'type' => 'short',
'title' => 'Short',
'locked' => '1',
))->execute();
}
}
#8eb9b527c9223036f223beecea90c1e1

View file

@ -1,238 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\DateFormats.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the date_formats table.
*/
class DateFormats extends DrupalDumpBase {
public function load() {
$this->createTable("date_formats", array(
'primary key' => array(
'dfid',
),
'fields' => array(
'dfid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
'format' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '100',
),
'type' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '200',
),
'locked' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("date_formats")->fields(array(
'dfid',
'format',
'type',
'locked',
))
->values(array(
'dfid' => '1',
'format' => 'Y-m-d H:i',
'type' => 'short',
'locked' => '1',
))->values(array(
'dfid' => '2',
'format' => 'm/d/Y - H:i',
'type' => 'short',
'locked' => '1',
))->values(array(
'dfid' => '3',
'format' => 'd/m/Y - H:i',
'type' => 'short',
'locked' => '1',
))->values(array(
'dfid' => '4',
'format' => 'Y/m/d - H:i',
'type' => 'short',
'locked' => '1',
))->values(array(
'dfid' => '5',
'format' => 'd.m.Y - H:i',
'type' => 'short',
'locked' => '1',
))->values(array(
'dfid' => '6',
'format' => 'm/d/Y - g:ia',
'type' => 'short',
'locked' => '1',
))->values(array(
'dfid' => '7',
'format' => 'd/m/Y - g:ia',
'type' => 'short',
'locked' => '1',
))->values(array(
'dfid' => '8',
'format' => 'Y/m/d - g:ia',
'type' => 'short',
'locked' => '1',
))->values(array(
'dfid' => '9',
'format' => 'M j Y - H:i',
'type' => 'short',
'locked' => '1',
))->values(array(
'dfid' => '10',
'format' => 'j M Y - H:i',
'type' => 'short',
'locked' => '1',
))->values(array(
'dfid' => '11',
'format' => 'Y M j - H:i',
'type' => 'short',
'locked' => '1',
))->values(array(
'dfid' => '12',
'format' => 'M j Y - g:ia',
'type' => 'short',
'locked' => '1',
))->values(array(
'dfid' => '13',
'format' => 'j M Y - g:ia',
'type' => 'short',
'locked' => '1',
))->values(array(
'dfid' => '14',
'format' => 'Y M j - g:ia',
'type' => 'short',
'locked' => '1',
))->values(array(
'dfid' => '15',
'format' => 'D, Y-m-d H:i',
'type' => 'medium',
'locked' => '1',
))->values(array(
'dfid' => '16',
'format' => 'D, m/d/Y - H:i',
'type' => 'medium',
'locked' => '1',
))->values(array(
'dfid' => '17',
'format' => 'D, d/m/Y - H:i',
'type' => 'medium',
'locked' => '1',
))->values(array(
'dfid' => '18',
'format' => 'D, Y/m/d - H:i',
'type' => 'medium',
'locked' => '1',
))->values(array(
'dfid' => '19',
'format' => 'F j, Y - H:i',
'type' => 'medium',
'locked' => '1',
))->values(array(
'dfid' => '20',
'format' => 'j F, Y - H:i',
'type' => 'medium',
'locked' => '1',
))->values(array(
'dfid' => '21',
'format' => 'Y, F j - H:i',
'type' => 'medium',
'locked' => '1',
))->values(array(
'dfid' => '22',
'format' => 'D, m/d/Y - g:ia',
'type' => 'medium',
'locked' => '1',
))->values(array(
'dfid' => '23',
'format' => 'D, d/m/Y - g:ia',
'type' => 'medium',
'locked' => '1',
))->values(array(
'dfid' => '24',
'format' => 'D, Y/m/d - g:ia',
'type' => 'medium',
'locked' => '1',
))->values(array(
'dfid' => '25',
'format' => 'F j, Y - g:ia',
'type' => 'medium',
'locked' => '1',
))->values(array(
'dfid' => '26',
'format' => 'j F Y - g:ia',
'type' => 'medium',
'locked' => '1',
))->values(array(
'dfid' => '27',
'format' => 'Y, F j - g:ia',
'type' => 'medium',
'locked' => '1',
))->values(array(
'dfid' => '28',
'format' => 'j. F Y - G:i',
'type' => 'medium',
'locked' => '1',
))->values(array(
'dfid' => '29',
'format' => 'l, F j, Y - H:i',
'type' => 'long',
'locked' => '1',
))->values(array(
'dfid' => '30',
'format' => 'l, j F, Y - H:i',
'type' => 'long',
'locked' => '1',
))->values(array(
'dfid' => '31',
'format' => 'l, Y, F j - H:i',
'type' => 'long',
'locked' => '1',
))->values(array(
'dfid' => '32',
'format' => 'l, F j, Y - g:ia',
'type' => 'long',
'locked' => '1',
))->values(array(
'dfid' => '33',
'format' => 'l, j F Y - g:ia',
'type' => 'long',
'locked' => '1',
))->values(array(
'dfid' => '34',
'format' => 'l, Y, F j - g:ia',
'type' => 'long',
'locked' => '1',
))->values(array(
'dfid' => '35',
'format' => 'l, j. F Y - G:i',
'type' => 'long',
'locked' => '1',
))->execute();
}
}
#7b7e1b59dbb8771c5f9dacbfb31bc771

View file

@ -1,92 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Event.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the event table.
*/
class Event extends DrupalDumpBase {
public function load() {
$this->createTable("event", array(
'primary key' => array(
'nid',
),
'fields' => array(
'nid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'event_start' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '100',
),
'event_end' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '100',
),
'timezone' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'start_in_dst' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'end_in_dst' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'has_time' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '1',
),
'has_end_date' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '1',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("event")->fields(array(
'nid',
'event_start',
'event_end',
'timezone',
'start_in_dst',
'end_in_dst',
'has_time',
'has_end_date',
))
->execute();
}
}
#78a4722634eb7f3ca00a7ced49953072

View file

@ -1,141 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Files.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the files table.
*/
class Files extends DrupalDumpBase {
public function load() {
$this->createTable("files", array(
'primary key' => array(
'fid',
),
'fields' => array(
'fid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
'uid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'filename' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'filepath' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'filemime' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'filesize' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'status' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'timestamp' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("files")->fields(array(
'fid',
'uid',
'filename',
'filepath',
'filemime',
'filesize',
'status',
'timestamp',
))
->values(array(
'fid' => '1',
'uid' => '1',
'filename' => 'Image1.png',
'filepath' => 'core/modules/simpletest/files/image-1.png',
'filemime' => 'image/png',
'filesize' => '39325',
'status' => '1',
'timestamp' => '1388880660',
))->values(array(
'fid' => '2',
'uid' => '1',
'filename' => 'Image2.jpg',
'filepath' => 'core/modules/simpletest/files/image-2.jpg',
'filemime' => 'image/jpeg',
'filesize' => '1831',
'status' => '1',
'timestamp' => '1388880664',
))->values(array(
'fid' => '3',
'uid' => '1',
'filename' => 'Image-test.gif',
'filepath' => 'core/modules/simpletest/files/image-test.gif',
'filemime' => 'image/jpeg',
'filesize' => '183',
'status' => '1',
'timestamp' => '1388880668',
))->values(array(
'fid' => '5',
'uid' => '1',
'filename' => 'html-1.txt',
'filepath' => 'core/modules/simpletest/files/html-1.txt',
'filemime' => 'text/plain',
'filesize' => '24',
'status' => '1',
'timestamp' => '1420858106',
))->values(array(
'fid' => '6',
'uid' => '1',
'filename' => 'some-temp-file.jpg',
'filepath' => '/tmp/some-temp-file.jpg',
'filemime' => 'image/jpeg',
'filesize' => '24',
'status' => '0',
'timestamp' => '1420858106',
))->execute();
}
}
#a36145ffe53b2dd78475b37d99e72612

View file

@ -1,79 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\FilterFormats.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the filter_formats table.
*/
class FilterFormats extends DrupalDumpBase {
public function load() {
$this->createTable("filter_formats", array(
'primary key' => array(
'format',
),
'fields' => array(
'format' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '11',
),
'name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'roles' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'cache' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->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' => '3',
'cache' => '1',
))->values(array(
'format' => '3',
'name' => 'Escape HTML Filter',
'roles' => '',
'cache' => '1',
))->execute();
}
}
#bbec2c10ac788fac1807d23774b34b49

View file

@ -1,137 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Filters.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the filters table.
*/
class Filters extends DrupalDumpBase {
public function load() {
$this->createTable("filters", array(
'primary key' => array(
'fid',
),
'fields' => array(
'fid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '11',
),
'format' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'module' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '64',
'default' => '',
),
'delta' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'weight' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->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',
))->values(array(
'fid' => '8',
'format' => '6',
'module' => 'filter',
'delta' => '2',
'weight' => '0',
))->values(array(
'fid' => '9',
'format' => '6',
'module' => 'filter',
'delta' => '0',
'weight' => '1',
))->values(array(
'fid' => '10',
'format' => '6',
'module' => 'filter',
'delta' => '1',
'weight' => '2',
))->values(array(
'fid' => '11',
'format' => '6',
'module' => 'filter',
'delta' => '3',
'weight' => '10',
))->execute();
}
}
#e4ed25d991f88bc73a10b840dcc1b004

View file

@ -1,64 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Flood.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the flood table.
*/
class Flood extends DrupalDumpBase {
public function load() {
$this->createTable("flood", array(
'primary key' => array(
'fid',
),
'fields' => array(
'fid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '11',
),
'event' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '64',
'default' => '',
),
'hostname' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '128',
'default' => '',
),
'timestamp' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("flood")->fields(array(
'fid',
'event',
'hostname',
'timestamp',
))
->execute();
}
}
#45aa7dba444d7433ed402ede2f8c3ed4

View file

@ -1,59 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\History.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the history table.
*/
class History extends DrupalDumpBase {
public function load() {
$this->createTable("history", array(
'primary key' => array(
'uid',
'nid',
),
'fields' => array(
'uid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'nid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'timestamp' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("history")->fields(array(
'uid',
'nid',
'timestamp',
))
->execute();
}
}
#67ec5e178454878819a02345fabb68fd

View file

@ -1,105 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\ImagecacheAction.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the imagecache_action table.
*/
class ImagecacheAction extends DrupalDumpBase {
public function load() {
$this->createTable("imagecache_action", array(
'primary key' => array(
'actionid',
),
'fields' => array(
'actionid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
'presetid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'weight' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'module' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
),
'action' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
),
'data' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("imagecache_action")->fields(array(
'actionid',
'presetid',
'weight',
'module',
'action',
'data',
))
->values(array(
'actionid' => '3',
'presetid' => '1',
'weight' => '0',
'module' => 'imagecache',
'action' => 'imagecache_scale_and_crop',
'data' => 'a:2:{s:5:"width";s:4:"100%";s:6:"height";s:4:"100%";}',
))->values(array(
'actionid' => '4',
'presetid' => '2',
'weight' => '0',
'module' => 'imagecache',
'action' => 'imagecache_crop',
'data' => 'a:4:{s:5:"width";s:3:"555";s:6:"height";s:4:"5555";s:7:"xoffset";s:6:"center";s:7:"yoffset";s:6:"center";}',
))->values(array(
'actionid' => '5',
'presetid' => '2',
'weight' => '0',
'module' => 'imagecache',
'action' => 'imagecache_resize',
'data' => 'a:2:{s:5:"width";s:3:"55%";s:6:"height";s:3:"55%";}',
))->values(array(
'actionid' => '6',
'presetid' => '2',
'weight' => '0',
'module' => 'imagecache',
'action' => 'imagecache_rotate',
'data' => 'a:3:{s:7:"degrees";s:2:"55";s:6:"random";i:0;s:7:"bgcolor";s:0:"";}',
))->execute();
}
}
#90267fd3a92bd722208f016a23ab5f97

View file

@ -1,56 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\ImagecachePreset.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the imagecache_preset table.
*/
class ImagecachePreset extends DrupalDumpBase {
public function load() {
$this->createTable("imagecache_preset", array(
'primary key' => array(
'presetid',
),
'fields' => array(
'presetid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
'presetname' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("imagecache_preset")->fields(array(
'presetid',
'presetname',
))
->values(array(
'presetid' => '1',
'presetname' => 'slackjaw_boys',
))->values(array(
'presetid' => '2',
'presetname' => 'big_blue_cheese',
))->execute();
}
}
#b2102d82ad5b3d8be026fe23cea75674

View file

@ -1,69 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\MenuCustom.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the menu_custom table.
*/
class MenuCustom extends DrupalDumpBase {
public function load() {
$this->createTable("menu_custom", array(
'primary key' => array(
'menu_name',
),
'fields' => array(
'menu_name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '32',
'default' => '',
),
'title' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'description' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->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();
}
}
#64ae8b573b728a37ea2e345106286576

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,272 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Node.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the node table.
*/
class Node extends DrupalDumpBase {
public function load() {
$this->createTable("node", array(
'primary key' => array(
'nid',
),
'fields' => array(
'nid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
'vid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'type' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '32',
'default' => '',
),
'language' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '12',
'default' => '',
),
'title' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'uid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'status' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '1',
),
'created' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'changed' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'comment' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'promote' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'moderate' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'sticky' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'tnid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'translate' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("node")->fields(array(
'nid',
'vid',
'type',
'language',
'title',
'uid',
'status',
'created',
'changed',
'comment',
'promote',
'moderate',
'sticky',
'tnid',
'translate',
))
->values(array(
'nid' => '1',
'vid' => '1',
'type' => 'story',
'language' => '',
'title' => 'Test title',
'uid' => '1',
'status' => '1',
'created' => '1388271197',
'changed' => '1420861423',
'comment' => '0',
'promote' => '0',
'moderate' => '0',
'sticky' => '0',
'tnid' => '0',
'translate' => '0',
))->values(array(
'nid' => '2',
'vid' => '3',
'type' => 'story',
'language' => '',
'title' => 'Test title rev 3',
'uid' => '1',
'status' => '1',
'created' => '1388271197',
'changed' => '1420718386',
'comment' => '0',
'promote' => '0',
'moderate' => '0',
'sticky' => '0',
'tnid' => '0',
'translate' => '0',
))->values(array(
'nid' => '3',
'vid' => '4',
'type' => 'test_planet',
'language' => '',
'title' => 'Test planet title 3',
'uid' => '1',
'status' => '1',
'created' => '1388271527',
'changed' => '1390096401',
'comment' => '0',
'promote' => '0',
'moderate' => '0',
'sticky' => '0',
'tnid' => '0',
'translate' => '0',
))->values(array(
'nid' => '4',
'vid' => '6',
'type' => 'test_planet',
'language' => '',
'title' => '',
'uid' => '1',
'status' => '1',
'created' => '1388271527',
'changed' => '1390096401',
'comment' => '0',
'promote' => '0',
'moderate' => '0',
'sticky' => '0',
'tnid' => '0',
'translate' => '0',
))->values(array(
'nid' => '5',
'vid' => '7',
'type' => 'test_planet',
'language' => '',
'title' => '',
'uid' => '1',
'status' => '1',
'created' => '1388271527',
'changed' => '1390096401',
'comment' => '0',
'promote' => '0',
'moderate' => '0',
'sticky' => '0',
'tnid' => '0',
'translate' => '0',
))->values(array(
'nid' => '6',
'vid' => '8',
'type' => 'test_planet',
'language' => '',
'title' => '',
'uid' => '1',
'status' => '1',
'created' => '1388271527',
'changed' => '1390096401',
'comment' => '0',
'promote' => '0',
'moderate' => '0',
'sticky' => '0',
'tnid' => '0',
'translate' => '0',
))->values(array(
'nid' => '7',
'vid' => '9',
'type' => 'test_planet',
'language' => '',
'title' => '',
'uid' => '1',
'status' => '1',
'created' => '1388271527',
'changed' => '1390096401',
'comment' => '0',
'promote' => '0',
'moderate' => '0',
'sticky' => '0',
'tnid' => '0',
'translate' => '0',
))->values(array(
'nid' => '8',
'vid' => '10',
'type' => 'test_planet',
'language' => '',
'title' => '',
'uid' => '1',
'status' => '1',
'created' => '1388271527',
'changed' => '1390096401',
'comment' => '0',
'promote' => '0',
'moderate' => '0',
'sticky' => '0',
'tnid' => '0',
'translate' => '0',
))->execute();
}
}
#42987fa1c890b420098af95ec7c86d00

View file

@ -1,93 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\NodeAccess.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the node_access table.
*/
class NodeAccess extends DrupalDumpBase {
public function load() {
$this->createTable("node_access", array(
'primary key' => array(
'nid',
'gid',
'realm',
),
'fields' => array(
'nid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'gid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'realm' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'grant_view' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'grant_update' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'grant_delete' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->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();
}
}
#47b68125af5c4b5deaffc0e19fb29dfb

View file

@ -1,85 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\NodeCommentStatistics.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the node_comment_statistics table.
*/
class NodeCommentStatistics extends DrupalDumpBase {
public function load() {
$this->createTable("node_comment_statistics", array(
'primary key' => array(
'nid',
),
'fields' => array(
'nid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'last_comment_timestamp' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'last_comment_name' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '60',
),
'last_comment_uid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'comment_count' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->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' => '1388271197',
'last_comment_name' => NULL,
'last_comment_uid' => '1',
'comment_count' => '0',
))->values(array(
'nid' => '2',
'last_comment_timestamp' => '1389002813',
'last_comment_name' => NULL,
'last_comment_uid' => '1',
'comment_count' => '0',
))->execute();
}
}
#402ff86fc05564bf2275c27f01c922af

View file

@ -1,68 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\NodeCounter.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the node_counter table.
*/
class NodeCounter extends DrupalDumpBase {
public function load() {
$this->createTable("node_counter", array(
'primary key' => array(
'nid',
),
'fields' => array(
'nid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'totalcount' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'daycount' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'timestamp' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("node_counter")->fields(array(
'nid',
'totalcount',
'daycount',
'timestamp',
))
->execute();
}
}
#f1e838ae00ed337fca5d80787d9d0748

View file

@ -1,208 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\NodeRevisions.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the node_revisions table.
*/
class NodeRevisions extends DrupalDumpBase {
public function load() {
$this->createTable("node_revisions", array(
'fields' => array(
'nid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'vid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
'uid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'title' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'body' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'teaser' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'log' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'timestamp' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'format' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'primary key' => array(
'vid',
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("node_revisions")->fields(array(
'nid',
'vid',
'uid',
'title',
'body',
'teaser',
'log',
'timestamp',
'format',
))
->values(array(
'nid' => '1',
'vid' => '1',
'uid' => '1',
'title' => 'Test title',
'body' => 'test',
'teaser' => 'test',
'log' => '',
'timestamp' => '1420861423',
'format' => '1',
))->values(array(
'nid' => '1',
'vid' => '2',
'uid' => '2',
'title' => 'Test title rev 2',
'body' => 'body test rev 2',
'teaser' => 'teaser test rev 2',
'log' => 'modified rev 2',
'timestamp' => '1390095702',
'format' => '1',
))->values(array(
'nid' => '2',
'vid' => '3',
'uid' => '1',
'title' => 'Test title rev 3',
'body' => 'test rev 3',
'teaser' => 'test rev 3',
'log' => '',
'timestamp' => '1420718386',
'format' => '1',
))->values(array(
'nid' => '3',
'vid' => '4',
'uid' => '1',
'title' => 'Test page title rev 4',
'body' => 'test page body rev 4',
'teaser' => 'test page teaser rev 4',
'log' => '',
'timestamp' => '1390095701',
'format' => '0',
))->values(array(
'nid' => '1',
'vid' => '5',
'uid' => '1',
'title' => 'Test title rev 3',
'body' => 'body test rev 3',
'teaser' => 'teaser test rev 3',
'log' => 'modified rev 3',
'timestamp' => '1390095703',
'format' => '1',
))->values(array(
'nid' => '4',
'vid' => '6',
'uid' => '1',
'title' => 'Node 4',
'body' => 'Node 4 body',
'teaser' => 'test for node 4',
'log' => '',
'timestamp' => '1390095701',
'format' => '1',
))->values(array(
'nid' => '5',
'vid' => '7',
'uid' => '1',
'title' => 'Node 5',
'body' => 'Node 5 body',
'teaser' => 'test for node 5',
'log' => '',
'timestamp' => '1390095701',
'format' => '1',
))->values(array(
'nid' => '6',
'vid' => '8',
'uid' => '1',
'title' => 'Node 6',
'body' => 'Node 6 body',
'teaser' => 'test for node 6',
'log' => '',
'timestamp' => '1390095701',
'format' => '1',
))->values(array(
'nid' => '7',
'vid' => '9',
'uid' => '1',
'title' => 'Node 7',
'body' => 'Node 7 body',
'teaser' => 'test for node 7',
'log' => '',
'timestamp' => '1390095701',
'format' => '1',
))->values(array(
'nid' => '8',
'vid' => '10',
'uid' => '1',
'title' => 'Node 8',
'body' => 'Node 8 body',
'teaser' => 'test for node 8',
'log' => '',
'timestamp' => '1390095701',
'format' => '1',
))->values(array(
'nid' => '9',
'vid' => '11',
'uid' => '1',
'title' => 'Node 9',
'body' => 'Node 9 body',
'teaser' => 'test for node 9',
'log' => '',
'timestamp' => '1390095701',
'format' => '1',
))->execute();
}
}
#8448741f18a4f40eec7bf466dcab82c1

View file

@ -1,296 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\NodeType.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the node_type table.
*/
class NodeType extends DrupalDumpBase {
public function load() {
$this->createTable("node_type", array(
'primary key' => array(
'type',
),
'fields' => array(
'type' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '32',
),
'name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'module' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
),
'description' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'help' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'has_title' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
'title_label' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'has_body' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
'body_label' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'min_word_count' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
'custom' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'modified' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'locked' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'orig_type' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->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' => 'article',
'name' => 'Article',
'module' => 'node',
'description' => 'An <em>article</em>, content type.',
'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',
))->values(array(
'type' => 'company',
'name' => 'Company',
'module' => 'node',
'description' => 'Company node type',
'help' => '',
'has_title' => '1',
'title_label' => 'Name',
'has_body' => '1',
'body_label' => 'Description',
'min_word_count' => '20',
'custom' => '0',
'modified' => '0',
'locked' => '0',
'orig_type' => 'company',
))->values(array(
'type' => 'employee',
'name' => 'Employee',
'module' => 'node',
'description' => 'Employee node type',
'help' => '',
'has_title' => '1',
'title_label' => 'Name',
'has_body' => '1',
'body_label' => 'Bio',
'min_word_count' => '20',
'custom' => '0',
'modified' => '0',
'locked' => '0',
'orig_type' => 'employee',
))->values(array(
'type' => 'event',
'name' => 'Event',
'module' => 'node',
'description' => 'Events have a start date and an optional end date as well as a teaser and a body. They can be extended by other modules, too.',
'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' => 'event',
))->values(array(
'type' => 'page',
'name' => 'Page',
'module' => 'node',
'description' => "A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.",
'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' => 'sponsor',
'name' => 'Sponsor',
'module' => 'node',
'description' => 'Sponsor node type',
'help' => '',
'has_title' => '1',
'title_label' => 'Name',
'has_body' => '0',
'body_label' => 'Body',
'min_word_count' => '0',
'custom' => '0',
'modified' => '0',
'locked' => '0',
'orig_type' => '',
))->values(array(
'type' => 'story',
'name' => 'Story',
'module' => 'node',
'description' => "A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.",
'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',
))->values(array(
'type' => 'test_event',
'name' => 'Migrate test event',
'module' => 'node',
'description' => 'test event description here',
'help' => 'help text here',
'has_title' => '1',
'title_label' => 'Event Name',
'has_body' => '1',
'body_label' => 'Body',
'min_word_count' => '0',
'custom' => '1',
'modified' => '1',
'locked' => '0',
'orig_type' => 'event',
))->values(array(
'type' => 'test_page',
'name' => 'Migrate test page',
'module' => 'node',
'description' => "A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.",
'help' => '',
'has_title' => '1',
'title_label' => 'Title',
'has_body' => '1',
'body_label' => 'This is the body field label',
'min_word_count' => '0',
'custom' => '1',
'modified' => '1',
'locked' => '0',
'orig_type' => 'page',
))->values(array(
'type' => 'test_planet',
'name' => 'Migrate test planet',
'module' => 'node',
'description' => "A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.",
'help' => '',
'has_title' => '1',
'title_label' => 'Title',
'has_body' => '0',
'body_label' => 'Body',
'min_word_count' => '0',
'custom' => '1',
'modified' => '1',
'locked' => '0',
'orig_type' => 'test_planet',
))->values(array(
'type' => 'test_story',
'name' => 'Migrate test story',
'module' => 'node',
'description' => "A <em>story</em>, similar in form to a <em>page</em>, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.",
'help' => '',
'has_title' => '1',
'title_label' => 'Title',
'has_body' => '0',
'body_label' => 'Body',
'min_word_count' => '0',
'custom' => '1',
'modified' => '1',
'locked' => '0',
'orig_type' => 'test_story',
))->execute();
}
}
#ce6e29f5a41cf28d10fe3cf149cda559

View file

@ -1,95 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Permission.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the permission table.
*/
class Permission extends DrupalDumpBase {
public function load() {
$this->createTable("permission", array(
'primary key' => array(
'pid',
),
'fields' => array(
'pid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '11',
),
'rid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'perm' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'tid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("permission")->fields(array(
'pid',
'rid',
'perm',
'tid',
))
->values(array(
'pid' => '1',
'rid' => '1',
'perm' => 'migrate test anonymous permission',
'tid' => '0',
))->values(array(
'pid' => '2',
'rid' => '2',
'perm' => 'migrate test authenticated permission',
'tid' => '0',
))->values(array(
'pid' => '3',
'rid' => '3',
'perm' => 'migrate test role 1 test permission',
'tid' => '0',
))->values(array(
'pid' => '4',
'rid' => '4',
'perm' => 'migrate test role 2 test permission, use PHP for settings, administer contact forms, skip comment approval, edit own blog content, edit any blog content, delete own blog content, delete any blog content, create forum content, delete any forum content, delete own forum content, edit any forum content, edit own forum content, administer nodes',
'tid' => '0',
))->values(array(
'pid' => '5',
'rid' => '1',
'perm' => 'access content',
'tid' => '0',
))->values(array(
'pid' => '6',
'rid' => '2',
'perm' => 'access comments, access content, post comments, post comments without approval',
'tid' => '0',
))->execute();
}
}
#c9d81025ccba3af28983d7e3bbe38802

View file

@ -1,219 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\ProfileFields.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the profile_fields table.
*/
class ProfileFields extends DrupalDumpBase {
public function load() {
$this->createTable("profile_fields", array(
'primary key' => array(
'fid',
),
'fields' => array(
'fid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '11',
),
'title' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '255',
),
'name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '128',
'default' => '',
),
'explanation' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'category' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '255',
),
'page' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '255',
),
'type' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '128',
),
'weight' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'required' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'register' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'visibility' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'autocomplete' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'options' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("profile_fields")->fields(array(
'fid',
'title',
'name',
'explanation',
'category',
'page',
'type',
'weight',
'required',
'register',
'visibility',
'autocomplete',
'options',
))
->values(array(
'fid' => '8',
'title' => 'Favorite color',
'name' => 'profile_color',
'explanation' => 'List your favorite color',
'category' => 'Personal information',
'page' => 'Peole whose favorite color is %value',
'type' => 'textfield',
'weight' => '-10',
'required' => '0',
'register' => '1',
'visibility' => '2',
'autocomplete' => '1',
'options' => '',
))->values(array(
'fid' => '9',
'title' => 'Biography',
'name' => 'profile_biography',
'explanation' => 'Tell people a little bit about yourself',
'category' => 'Personal information',
'page' => '',
'type' => 'textarea',
'weight' => '-8',
'required' => '0',
'register' => '0',
'visibility' => '2',
'autocomplete' => '0',
'options' => '',
))->values(array(
'fid' => '10',
'title' => 'Sell your email address?',
'name' => 'profile_sell_address',
'explanation' => "If you check this box, we'll sell your address to spammers to help line the pockets of our shareholders. Thanks!",
'category' => 'Communication preferences',
'page' => 'People who want us to sell their address',
'type' => 'checkbox',
'weight' => '-10',
'required' => '0',
'register' => '1',
'visibility' => '1',
'autocomplete' => '0',
'options' => '',
))->values(array(
'fid' => '11',
'title' => 'Sales Category',
'name' => 'profile_sold_to',
'explanation' => "Select the sales categories to which this user's address was sold.",
'category' => 'Administrative data',
'page' => 'People whose address was sold to %value',
'type' => 'selection',
'weight' => '-10',
'required' => '0',
'register' => '0',
'visibility' => '4',
'autocomplete' => '0',
'options' => "Pill spammers\r\nFitness spammers\r\nBack\\slash\r\nForward/slash\r\nDot.in.the.middle",
))->values(array(
'fid' => '12',
'title' => 'Favorite bands',
'name' => 'profile_bands',
'explanation' => "Enter your favorite bands. When you've saved your profile, you'll be able to find other people with the same favorites.",
'category' => 'Personal information',
'page' => '',
'type' => 'list',
'weight' => '-6',
'required' => '0',
'register' => '1',
'visibility' => '3',
'autocomplete' => '1',
'options' => '',
))->values(array(
'fid' => '14',
'title' => 'Birthdate',
'name' => 'profile_birthdate',
'explanation' => "Enter your birth date and we'll send you a coupon.",
'category' => 'Personal information',
'page' => '',
'type' => 'date',
'weight' => '4',
'required' => '0',
'register' => '0',
'visibility' => '2',
'autocomplete' => '0',
'options' => '',
))->values(array(
'fid' => '15',
'title' => 'I love migrations',
'name' => 'profile_love_migrations',
'explanation' => 'If you check this box, you love migrations.',
'category' => 'Personal information',
'page' => 'People who love migrations',
'type' => 'checkbox',
'weight' => '-15',
'required' => '0',
'register' => '0',
'visibility' => '2',
'autocomplete' => '0',
'options' => '',
))->execute();
}
}
#59b9afb9195888ed98c5b2dc0c35305c

View file

@ -1,200 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\ProfileValues.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the profile_values table.
*/
class ProfileValues extends DrupalDumpBase {
public function load() {
$this->createTable("profile_values", array(
'primary key' => array(
'fid',
'uid',
),
'fields' => array(
'fid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'uid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'value' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("profile_values")->fields(array(
'fid',
'uid',
'value',
))
->values(array(
'fid' => '8',
'uid' => '2',
'value' => 'red',
))->values(array(
'fid' => '8',
'uid' => '8',
'value' => 'brown',
))->values(array(
'fid' => '8',
'uid' => '15',
'value' => 'orange',
))->values(array(
'fid' => '8',
'uid' => '16',
'value' => 'blue',
))->values(array(
'fid' => '8',
'uid' => '17',
'value' => 'yellow',
))->values(array(
'fid' => '9',
'uid' => '2',
'value' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam nulla sapien, congue nec risus ut, adipiscing aliquet felis. Maecenas quis justo vel nulla varius euismod. Quisque metus metus, cursus sit amet sem non, bibendum vehicula elit. Cras dui nisl, eleifend at iaculis vitae, lacinia ut felis. Nullam aliquam ligula volutpat nulla consectetur accumsan. Maecenas tincidunt molestie diam, a accumsan enim fringilla sit amet. Morbi a tincidunt tellus. Donec imperdiet scelerisque porta. Sed quis sem bibendum eros congue sodales. Vivamus vel fermentum est, at rutrum orci. Nunc consectetur purus ut dolor pulvinar, ut volutpat felis congue. Cras tincidunt odio sed neque sollicitudin, vehicula tempor metus scelerisque.',
))->values(array(
'fid' => '9',
'uid' => '8',
'value' => 'Nunc condimentum ligula felis, eget lacinia purus accumsan at. Pellentesque eu lobortis felis. Duis at accumsan nisl, vel pulvinar risus. Nullam venenatis, tellus non eleifend hendrerit, augue nulla rhoncus leo, eget convallis enim sem ut velit. Mauris tincidunt enim ut eros volutpat dapibus. Curabitur augue libero, imperdiet eget orci sed, malesuada dapibus tellus. Nam lacus sapien, convallis vitae quam vel, bibendum commodo odio.',
))->values(array(
'fid' => '9',
'uid' => '15',
'value' => 'Donec a diam volutpat augue fringilla fringilla. Mauris ultricies turpis ut lacus tempus, vitae pharetra lacus mattis. Nulla semper dui euismod sem bibendum, in eleifend nisi malesuada. Vivamus orci mauris, volutpat vitae enim ac, aliquam tempus lectus.',
))->values(array(
'fid' => '9',
'uid' => '16',
'value' => 'Pellentesque sit amet sem et purus pretium consectetuer.',
))->values(array(
'fid' => '9',
'uid' => '17',
'value' => 'The quick brown fox jumped over the lazy dog.',
))->values(array(
'fid' => '10',
'uid' => '2',
'value' => '1',
))->values(array(
'fid' => '10',
'uid' => '8',
'value' => '0',
))->values(array(
'fid' => '10',
'uid' => '15',
'value' => '1',
))->values(array(
'fid' => '10',
'uid' => '16',
'value' => '0',
))->values(array(
'fid' => '10',
'uid' => '17',
'value' => '0',
))->values(array(
'fid' => '11',
'uid' => '2',
'value' => 'Back\slash',
))->values(array(
'fid' => '11',
'uid' => '8',
'value' => 'Forward/slash',
))->values(array(
'fid' => '11',
'uid' => '15',
'value' => 'Dot.in.the.middle',
))->values(array(
'fid' => '11',
'uid' => '16',
'value' => 'Faithful servant',
))->values(array(
'fid' => '11',
'uid' => '17',
'value' => 'Anonymous donor',
))->values(array(
'fid' => '12',
'uid' => '2',
'value' => "AC/DC\n,,Eagles\r\nElton John,Lemonheads\r\n\r\nRolling Stones\rQueen\nThe White Stripes",
))->values(array(
'fid' => '12',
'uid' => '8',
'value' => "Deep Purple\nWho\nThe Beatles",
))->values(array(
'fid' => '12',
'uid' => '15',
'value' => "ABBA\nBoney M",
))->values(array(
'fid' => '12',
'uid' => '16',
'value' => "Van Halen\nDave M",
))->values(array(
'fid' => '12',
'uid' => '17',
'value' => "Toto\nJohn Denver",
))->values(array(
'fid' => '13',
'uid' => '2',
'value' => 'http://example.com/blog',
))->values(array(
'fid' => '13',
'uid' => '8',
'value' => 'http://blog.example.com',
))->values(array(
'fid' => '13',
'uid' => '15',
'value' => 'http://example.com/journal',
))->values(array(
'fid' => '13',
'uid' => '16',
'value' => 'http://example.com/monkeys',
))->values(array(
'fid' => '13',
'uid' => '17',
'value' => 'http://example.com/penguins',
))->values(array(
'fid' => '14',
'uid' => '2',
'value' => 'a:3:{s:5:"month";s:1:"6";s:3:"day";s:1:"2";s:4:"year";s:4:"1974";}',
))->values(array(
'fid' => '14',
'uid' => '8',
'value' => 'a:3:{s:5:"month";s:1:"9";s:3:"day";s:1:"9";s:4:"year";s:4:"1980";}',
))->values(array(
'fid' => '14',
'uid' => '15',
'value' => 'a:3:{s:5:"month";s:2:"11";s:3:"day";s:2:"25";s:4:"year";s:4:"1982";}',
))->values(array(
'fid' => '14',
'uid' => '16',
'value' => 'a:3:{s:5:"month";s:1:"9";s:3:"day";s:2:"23";s:4:"year";s:4:"1939";}',
))->values(array(
'fid' => '14',
'uid' => '17',
'value' => 'a:3:{s:5:"month";s:2:"12";s:3:"day";s:2:"18";s:4:"year";s:4:"1942";}',
))->execute();
}
}
#9d394555277ddc78f6f904b8df99b3c5

View file

@ -1,66 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Role.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the role table.
*/
class Role extends DrupalDumpBase {
public function load() {
$this->createTable("role", array(
'primary key' => array(
'rid',
),
'fields' => array(
'rid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
'name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '64',
'default' => '',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("role")->fields(array(
'rid',
'name',
))
->values(array(
'rid' => '1',
'name' => 'anonymous user',
))->values(array(
'rid' => '2',
'name' => 'authenticated user',
))->values(array(
'rid' => '3',
'name' => 'migrate test role 1',
))->values(array(
'rid' => '4',
'name' => 'migrate test role 2',
))->values(array(
'rid' => '5',
'name' => 'migrate test role 3 that is longer than thirty two characters',
))->execute();
}
}
#de28ef60b89f3517fe56e03c4d2c1f95

View file

@ -1,58 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Semaphore.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the semaphore table.
*/
class Semaphore extends DrupalDumpBase {
public function load() {
$this->createTable("semaphore", array(
'primary key' => array(
'name',
),
'fields' => array(
'name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'value' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'expire' => array(
'type' => 'numeric',
'not null' => TRUE,
'precision' => '10',
'scale' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("semaphore")->fields(array(
'name',
'value',
'expire',
))
->execute();
}
}
#8dc0ab3dffca2c2b00141f705dc183a6

View file

@ -1,78 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Sessions.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the sessions table.
*/
class Sessions extends DrupalDumpBase {
public function load() {
$this->createTable("sessions", array(
'fields' => array(
'uid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
'sid' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '64',
'default' => '',
),
'hostname' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '128',
'default' => '',
),
'timestamp' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'cache' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'session' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
),
'primary key' => array(
'sid',
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("sessions")->fields(array(
'uid',
'sid',
'hostname',
'timestamp',
'cache',
'session',
))
->execute();
}
}
#b7a70fcb91c8af507894a3593f34b7b4

View file

@ -1,942 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\System.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the system table.
*/
class System extends DrupalDumpBase {
public function load() {
$this->createTable("system", array(
'primary key' => array(
'filename',
),
'fields' => array(
'filename' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'type' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'owner' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'status' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'throttle' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'bootstrap' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'schema_version' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '-1',
),
'weight' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'info' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->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' => '1',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '6001',
'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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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' => '1',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '6000',
'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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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' => '6001',
'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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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' => '1',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '6001',
'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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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' => '0',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '-1',
'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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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' => '6000',
'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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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.29";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:"1384980946";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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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' => '1',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '6001',
'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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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' => '6001',
'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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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' => '0',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '-1',
'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.29";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:"1384980946";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' => '1',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '6000',
'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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
))->values(array(
'filename' => 'sites/all/modules/cck/content.module',
'name' => 'content',
'type' => 'module',
'owner' => '',
'status' => '1',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '6001',
'weight' => '0',
'info' => 'a:10:{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:7:"version";s:7:"6.x-2.9";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1294407979";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}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:10:{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:7:"version";s:7:"6.x-2.9";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1294407979";s:10:"dependents";a:0:{}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:10:{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:7:"version";s:7:"6.x-2.9";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1294407979";s:10:"dependents";a:0:{}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:10:{s:4:"name";s:10:"Fieldgroup";s:11:"description";s:37:"Create display 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:7:"version";s:7:"6.x-2.9";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1294407979";s:10:"dependents";a:0:{}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:10:{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:7:"version";s:7:"6.x-2.9";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1294407979";s:10:"dependents";a:0:{}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' => '1',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '6000',
'weight' => '0',
'info' => 'a:10:{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:7:"version";s:7:"6.x-2.9";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1294407979";s:10:"dependents";a:0:{}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' => '1',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '6001',
'weight' => '0',
'info' => 'a:10:{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:7:"version";s:7:"6.x-2.9";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1294407979";s:10:"dependents";a:0:{}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' => '1',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '6003',
'weight' => '0',
'info' => 'a:10:{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:7:"version";s:7:"6.x-2.9";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1294407979";s:10:"dependents";a:0:{}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:10:{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:7:"version";s:7:"6.x-2.9";s:7:"project";s:3:"cck";s:9:"datestamp";s:10:"1294407979";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
))->values(array(
'filename' => 'sites/all/modules/date/date/date.module',
'name' => 'date',
'type' => 'module',
'owner' => '',
'status' => '1',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '6005',
'weight' => '0',
'info' => 'a:10:{s:4:"name";s:4:"Date";s:11:"description";s:41:"Defines CCK date/time fields and widgets.";s:12:"dependencies";a:3:{i:0;s:7:"content";i:1;s:8:"date_api";i:2;s:13:"date_timezone";}s:7:"package";s:9:"Date/Time";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-2.9";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1335549078";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
))->values(array(
'filename' => 'sites/all/modules/date/date_api.module',
'name' => 'date_api',
'type' => 'module',
'owner' => '',
'status' => '1',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '6006',
'weight' => '0',
'info' => 'a:10:{s:4:"name";s:8:"Date API";s:11:"description";s:45:"A Date API that can be used by other modules.";s:7:"package";s:9:"Date/Time";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-2.9";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1335549078";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
))->values(array(
'filename' => 'sites/all/modules/date/date_locale/date_locale.module',
'name' => 'date_locale',
'type' => 'module',
'owner' => '',
'status' => '0',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '-1',
'weight' => '0',
'info' => 'a:10:{s:4:"name";s:11:"Date Locale";s:11:"description";s:124:"Allows the site admin to configure multiple formats for date/time display to tailor dates for a specific locale or audience.";s:7:"package";s:9:"Date/Time";s:12:"dependencies";a:2:{i:0;s:8:"date_api";i:1;s:6:"locale";}s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-2.9";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1335549078";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
))->values(array(
'filename' => 'sites/all/modules/date/date_php4/date_php4.module',
'name' => 'date_php4',
'type' => 'module',
'owner' => '',
'status' => '0',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '-1',
'weight' => '0',
'info' => 'a:10:{s:4:"name";s:9:"Date PHP4";s:11:"description";s:134:"Emulate PHP 5.2 date functions in PHP 4.x, PHP 5.0, and PHP 5.1. Required when using the Date API with PHP versions less than PHP 5.2.";s:7:"package";s:9:"Date/Time";s:12:"dependencies";a:1:{i:0;s:8:"date_api";}s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-2.9";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1335549078";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
))->values(array(
'filename' => 'sites/all/modules/date/date_popup/date_popup.module',
'name' => 'date_popup',
'type' => 'module',
'owner' => '',
'status' => '0',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '-1',
'weight' => '0',
'info' => 'a:10:{s:4:"name";s:10:"Date Popup";s:11:"description";s:84:"Enables jquery popup calendars and time entry widgets for selecting dates and times.";s:12:"dependencies";a:2:{i:0;s:8:"date_api";i:1;s:13:"date_timezone";}s:7:"package";s:9:"Date/Time";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-2.9";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1335549078";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
))->values(array(
'filename' => 'sites/all/modules/date/date_repeat/date_repeat.module',
'name' => 'date_repeat',
'type' => 'module',
'owner' => '',
'status' => '0',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '-1',
'weight' => '0',
'info' => 'a:10:{s:4:"name";s:15:"Date Repeat API";s:11:"description";s:73:"A Date Repeat API to calculate repeating dates and times from iCal rules.";s:12:"dependencies";a:1:{i:0;s:8:"date_api";}s:7:"package";s:9:"Date/Time";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-2.9";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1335549078";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
))->values(array(
'filename' => 'sites/all/modules/date/date_timezone/date_timezone.module',
'name' => 'date_timezone',
'type' => 'module',
'owner' => '',
'status' => '1',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '5200',
'weight' => '0',
'info' => 'a:10:{s:4:"name";s:13:"Date Timezone";s:11:"description";s:111:"Needed when using Date API. Overrides site and user timezone handling to set timezone names instead of offsets.";s:7:"package";s:9:"Date/Time";s:12:"dependencies";a:1:{i:0;s:8:"date_api";}s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-2.9";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1335549078";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
))->values(array(
'filename' => 'sites/all/modules/date/date_tools/date_tools.module',
'name' => 'date_tools',
'type' => 'module',
'owner' => '',
'status' => '0',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '-1',
'weight' => '0',
'info' => 'a:10:{s:4:"name";s:10:"Date Tools";s:11:"description";s:52:"Tools to import and auto-create dates and calendars.";s:12:"dependencies";a:2:{i:0;s:7:"content";i:1;s:4:"date";}s:7:"package";s:9:"Date/Time";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-2.9";s:7:"project";s:4:"date";s:9:"datestamp";s:10:"1335549078";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
))->values(array(
'filename' => 'sites/all/modules/ddblock/ddblock.module',
'name' => 'ddblock',
'type' => 'module',
'owner' => '',
'status' => '0',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '-1',
'weight' => '0',
'info' => 'a:7:{s:4:"name";s:21:"Dynamic display block";s:11:"description";s:36:"Displays dynamic content in a block.";s:4:"core";s:3:"6.x";s:12:"dependencies";a:1:{i:0;s:13:"jquery_update";}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:10:{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:7:"version";s:8:"6.x-1.28";s:7:"project";s:5:"devel";s:9:"datestamp";s:10:"1391635706";s:10:"dependents";a:0:{}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:10:{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:7:"version";s:8:"6.x-1.28";s:7:"project";s:5:"devel";s:9:"datestamp";s:10:"1391635706";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}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:10:{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:7:"version";s:8:"6.x-1.28";s:7:"project";s:5:"devel";s:9:"datestamp";s:10:"1391635706";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
))->values(array(
'filename' => 'sites/all/modules/email/email.module',
'name' => 'email',
'type' => 'module',
'owner' => '',
'status' => '1',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '6001',
'weight' => '0',
'info' => 'a:10:{s:4:"name";s:5:"Email";s:11:"description";s:35:"Defines an email field type for cck";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-1.4";s:7:"project";s:5:"email";s:9:"datestamp";s:10:"1354093658";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
))->values(array(
'filename' => 'sites/all/modules/event/contrib/calendarsignup/calendarsignup.module',
'name' => 'calendarsignup',
'type' => 'module',
'owner' => '',
'status' => '0',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '-1',
'weight' => '0',
'info' => 'a:10:{s:4:"name";s:15:"Calendar Signup";s:11:"description";s:44:"Add signup forms in an event.module calendar";s:7:"package";s:5:"Event";s:12:"dependencies";a:2:{i:0;s:5:"event";i:1;s:6:"signup";}s:4:"core";s:3:"6.x";s:7:"version";s:11:"6.x-2.x-dev";s:7:"project";s:5:"event";s:9:"datestamp";s:10:"1380577361";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
))->values(array(
'filename' => 'sites/all/modules/event/contrib/datepicker/datepicker.module',
'name' => 'datepicker',
'type' => 'module',
'owner' => '',
'status' => '0',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '-1',
'weight' => '0',
'info' => 'a:10:{s:4:"name";s:11:"Date Picker";s:11:"description";s:40:"Add a date picker to event module forms.";s:7:"package";s:5:"Event";s:12:"dependencies";a:1:{i:0;s:5:"event";}s:4:"core";s:3:"6.x";s:7:"version";s:11:"6.x-2.x-dev";s:7:"project";s:5:"event";s:9:"datestamp";s:10:"1380577361";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
))->values(array(
'filename' => 'sites/all/modules/event/event.module',
'name' => 'event',
'type' => 'module',
'owner' => '',
'status' => '1',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '6005',
'weight' => '0',
'info' => 'a:10:{s:4:"name";s:5:"Event";s:11:"description";s:44:"Calendaring API, calendar display and export";s:7:"package";s:5:"Event";s:4:"core";s:3:"6.x";s:7:"version";s:11:"6.x-2.x-dev";s:7:"project";s:5:"event";s:9:"datestamp";s:10:"1380577361";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
))->values(array(
'filename' => 'sites/all/modules/filefield/filefield.module',
'name' => 'filefield',
'type' => 'module',
'owner' => '',
'status' => '1',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '6104',
'weight' => '0',
'info' => 'a:10:{s:4:"name";s:9:"FileField";s:11:"description";s:26:"Defines a file field type.";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:3:"php";s:3:"5.0";s:7:"version";s:8:"6.x-3.11";s:7:"project";s:9:"filefield";s:9:"datestamp";s:10:"1365968724";s:10:"dependents";a:0:{}}',
))->values(array(
'filename' => 'sites/all/modules/filefield/filefield_meta/filefield_meta.module',
'name' => 'filefield_meta',
'type' => 'module',
'owner' => '',
'status' => '0',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '-1',
'weight' => '0',
'info' => 'a:10:{s:4:"name";s:14:"FileField Meta";s:11:"description";s:48:"Add metadata gathering and storage to FileField.";s:12:"dependencies";a:2:{i:0;s:9:"filefield";i:1;s:6:"getid3";}s:7:"package";s:3:"CCK";s:4:"core";s:3:"6.x";s:3:"php";s:3:"5.0";s:7:"version";s:8:"6.x-3.11";s:7:"project";s:9:"filefield";s:9:"datestamp";s:10:"1365968724";s:10:"dependents";a:0:{}}',
))->values(array(
'filename' => 'sites/all/modules/imagefield/imagefield.module',
'name' => 'imagefield',
'type' => 'module',
'owner' => '',
'status' => '1',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '6006',
'weight' => '0',
'info' => 'a:10:{s:4:"name";s:10:"ImageField";s:11:"description";s:28:"Defines an image field type.";s:4:"core";s:3:"6.x";s:12:"dependencies";a:2:{i:0;s:7:"content";i:1;s:9:"filefield";}s:7:"package";s:3:"CCK";s:7:"version";s:8:"6.x-3.11";s:7:"project";s:10:"imagefield";s:9:"datestamp";s:10:"1365969012";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
))->values(array(
'filename' => 'sites/all/modules/link/link.module',
'name' => 'link',
'type' => 'module',
'owner' => '',
'status' => '1',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '6002',
'weight' => '0',
'info' => 'a:11:{s:4:"name";s:4:"Link";s:11:"description";s:32:"Defines simple link 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:5:"files";a:1:{i:0;s:16:"link.migrate.inc";}s:7:"version";s:8:"6.x-2.10";s:7:"project";s:4:"link";s:9:"datestamp";s:10:"1360451917";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
))->values(array(
'filename' => 'sites/all/modules/nodeaccess/nodeaccess.module',
'name' => 'nodeaccess',
'type' => 'module',
'owner' => '',
'status' => '0',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '-1',
'weight' => '0',
'info' => 'a:9:{s:4:"name";s:10:"Nodeaccess";s:11:"description";s:32:"Provides per node access control";s:4:"core";s:3:"6.x";s:7:"version";s:7:"6.x-1.5";s:7:"project";s:10:"nodeaccess";s:9:"datestamp";s:10:"1412640229";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
))->values(array(
'filename' => 'sites/all/modules/phone/phone.module',
'name' => 'phone',
'type' => 'module',
'owner' => '',
'status' => '1',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '6200',
'weight' => '0',
'info' => 'a:10:{s:4:"name";s:11:"Phone - CCK";s:11:"description";s:84:"The phone module allows administrators to define a CCK field type for phone numbers.";s:7:"package";s:3:"CCK";s:12:"dependencies";a:1:{i:0;s:7:"content";}s:4:"core";s:3:"6.x";s:7:"version";s:8:"6.x-2.18";s:7:"project";s:5:"phone";s:9:"datestamp";s:10:"1294067495";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
))->values(array(
'filename' => 'sites/all/modules/views/tests/views_test.module',
'name' => 'views_test',
'type' => 'module',
'owner' => '',
'status' => '0',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '-1',
'weight' => '0',
'info' => 'a:12:{s:4:"name";s:10:"Views Test";s:11:"description";s:22:"Test module for 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:6:"hidden";b:1;s:5:"files";a:2:{i:0;s:17:"views_test.module";i:1;s:18:"views_test.install";}s:7:"version";s:7:"6.x-3.0";s:7:"project";s:5:"views";s:9:"datestamp";s:10:"1325638545";s:10:"dependents";a:0:{}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:10:{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:7:"version";s:7:"6.x-3.0";s:7:"project";s:5:"views";s:9:"datestamp";s:10:"1325638545";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}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:10:{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:7:"version";s:7:"6.x-3.0";s:7:"project";s:5:"views";s:9:"datestamp";s:10:"1325638545";s:10:"dependents";a:0:{}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:10:{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:7:"version";s:7:"6.x-3.0";s:7:"project";s:5:"views";s:9:"datestamp";s:10:"1325638545";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
))->values(array(
'filename' => 'sites/all/modules/imageapi/imageapi.module',
'name' => 'imageapi',
'type' => 'module',
'owner' => '',
'status' => '1',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '0',
'weight' => '0',
'info' => 'a:10:{s:4:"name";s:8:"ImageAPI";s:11:"description";s:38:"ImageAPI supporting multiple toolkits.";s:7:"package";s:10:"ImageCache";s:4:"core";s:3:"6.x";s:3:"php";s:3:"5.1";s:7:"version";s:8:"6.x-1.10";s:7:"project";s:8:"imageapi";s:9:"datestamp";s:10:"1305563215";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}}',
))->values(array(
'filename' => 'sites/all/modules/imagecache/imagecache.module',
'name' => 'imagecache',
'type' => 'module',
'owner' => '',
'status' => '1',
'throttle' => '0',
'bootstrap' => '0',
'schema_version' => '6001',
'weight' => '0',
'info' => 'a:10:{s:4:"name";s:8:"ImageAPI";s:11:"description";s:38:"ImageAPI supporting multiple toolkits.";s:7:"package";s:10:"ImageCache";s:4:"core";s:3:"6.x";s:3:"php";s:3:"5.1";s:7:"version";s:8:"6.x-1.10";s:7:"project";s:8:"imageapi";s:9:"datestamp";s:10:"1305563215";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}}',
))->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.29";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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.29";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:"1384980946";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.29";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:"1384980946";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.29";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:"1384980946";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.29";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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();
}
}
#f7d26efda87933cbe199c1f232d329b2

View file

@ -1,108 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\TermData.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the term_data table.
*/
class TermData extends DrupalDumpBase {
public function load() {
$this->createTable("term_data", array(
'primary key' => array(
'tid',
),
'fields' => array(
'tid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
'vid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'description' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'weight' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("term_data")->fields(array(
'tid',
'vid',
'name',
'description',
'weight',
))
->values(array(
'tid' => '1',
'vid' => '1',
'name' => 'term 1 of vocabulary 1',
'description' => 'description of term 1 of vocabulary 1',
'weight' => '0',
))->values(array(
'tid' => '2',
'vid' => '2',
'name' => 'term 2 of vocabulary 2',
'description' => 'description of term 2 of vocabulary 2',
'weight' => '3',
))->values(array(
'tid' => '3',
'vid' => '2',
'name' => 'term 3 of vocabulary 2',
'description' => 'description of term 3 of vocabulary 2',
'weight' => '4',
))->values(array(
'tid' => '4',
'vid' => '3',
'name' => 'term 4 of vocabulary 3',
'description' => 'description of term 4 of vocabulary 3',
'weight' => '6',
))->values(array(
'tid' => '5',
'vid' => '3',
'name' => 'term 5 of vocabulary 3',
'description' => 'description of term 5 of vocabulary 3',
'weight' => '7',
))->values(array(
'tid' => '6',
'vid' => '3',
'name' => 'term 6 of vocabulary 3',
'description' => 'description of term 6 of vocabulary 3',
'weight' => '8',
))->execute();
}
}
#5bd3c3673e6cc04e09db9b3d3f601c73

View file

@ -1,75 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\TermHierarchy.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the term_hierarchy table.
*/
class TermHierarchy extends DrupalDumpBase {
public function load() {
$this->createTable("term_hierarchy", array(
'primary key' => array(
'tid',
'parent',
),
'fields' => array(
'tid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'parent' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->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' => '3',
'parent' => '2',
))->values(array(
'tid' => '5',
'parent' => '4',
))->values(array(
'tid' => '6',
'parent' => '4',
))->values(array(
'tid' => '6',
'parent' => '5',
))->execute();
}
}
#4f464394161d2c548911856110c52388

View file

@ -1,82 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\TermNode.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the term_node table.
*/
class TermNode extends DrupalDumpBase {
public function load() {
$this->createTable("term_node", array(
'fields' => array(
'nid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'vid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'tid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
),
'primary key' => array(
'vid',
'tid',
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("term_node")->fields(array(
'nid',
'vid',
'tid',
))
->values(array(
'nid' => '1',
'vid' => '1',
'tid' => '1',
))->values(array(
'nid' => '2',
'vid' => '3',
'tid' => '2',
))->values(array(
'nid' => '2',
'vid' => '3',
'tid' => '3',
))->values(array(
'nid' => '1',
'vid' => '2',
'tid' => '4',
))->values(array(
'nid' => '1',
'vid' => '2',
'tid' => '5',
))->execute();
}
}
#5aba7dc704d20cec864b7ba64af4c48c

View file

@ -1,59 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\TermRelation.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the term_relation table.
*/
class TermRelation extends DrupalDumpBase {
public function load() {
$this->createTable("term_relation", array(
'primary key' => array(
'trid',
),
'fields' => array(
'trid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '11',
),
'tid1' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'tid2' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("term_relation")->fields(array(
'trid',
'tid1',
'tid2',
))
->execute();
}
}
#a5ad4b081bfc203e4428bb943e24948a

View file

@ -1,58 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\TermSynonym.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the term_synonym table.
*/
class TermSynonym extends DrupalDumpBase {
public function load() {
$this->createTable("term_synonym", array(
'primary key' => array(
'tsid',
),
'fields' => array(
'tsid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '11',
),
'tid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("term_synonym")->fields(array(
'tsid',
'tid',
'name',
))
->execute();
}
}
#f872b9f69bd357799c9aebbfc65dd736

View file

@ -1,119 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Upload.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the upload table.
*/
class Upload extends DrupalDumpBase {
public function load() {
$this->createTable("upload", array(
'primary key' => array(
'fid',
'vid',
),
'fields' => array(
'fid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'nid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'vid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'description' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'list' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'weight' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("upload")->fields(array(
'fid',
'nid',
'vid',
'description',
'list',
'weight',
))
->values(array(
'fid' => '1',
'nid' => '1',
'vid' => '1',
'description' => 'file 1-1-1',
'list' => '0',
'weight' => '-1',
))->values(array(
'fid' => '2',
'nid' => '1',
'vid' => '2',
'description' => 'file 1-2-2',
'list' => '1',
'weight' => '4',
))->values(array(
'fid' => '2',
'nid' => '2',
'vid' => '3',
'description' => 'file 2-3-2',
'list' => '1',
'weight' => '2',
))->values(array(
'fid' => '3',
'nid' => '1',
'vid' => '2',
'description' => 'file 1-2-3',
'list' => '0',
'weight' => '3',
))->values(array(
'fid' => '3',
'nid' => '2',
'vid' => '3',
'description' => 'file 2-3-3',
'list' => '0',
'weight' => '1',
))->execute();
}
}
#16d0b4721b6b58f5ac90214e6b508843

View file

@ -1,75 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\UrlAlias.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the url_alias table.
*/
class UrlAlias extends DrupalDumpBase {
public function load() {
$this->createTable("url_alias", array(
'primary key' => array(
'pid',
),
'fields' => array(
'pid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
'src' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '128',
'default' => '',
),
'dst' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '128',
'default' => '',
),
'language' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '12',
'default' => '',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("url_alias")->fields(array(
'pid',
'src',
'dst',
'language',
))
->values(array(
'pid' => '1',
'src' => 'node/1',
'dst' => 'alias-one',
'language' => 'en',
))->values(array(
'pid' => '2',
'src' => 'node/2',
'dst' => 'alias-two',
'language' => 'en',
))->execute();
}
}
#8aa75592c75220bfb2ad948f7528f943

View file

@ -1,315 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Users.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the users table.
*/
class Users extends DrupalDumpBase {
public function load() {
$this->createTable("users", array(
'primary key' => array(
'uid',
),
'fields' => array(
'uid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
'name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '60',
'default' => '',
),
'pass' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '32',
'default' => '',
),
'mail' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '64',
'default' => '',
),
'mode' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'sort' => array(
'type' => 'int',
'not null' => FALSE,
'length' => '11',
'default' => '0',
),
'threshold' => array(
'type' => 'int',
'not null' => FALSE,
'length' => '11',
'default' => '0',
),
'theme' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'signature' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'signature_format' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'created' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'access' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'login' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'status' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'timezone' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '8',
),
'language' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '12',
'default' => '',
),
'picture' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'init' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '64',
'default' => '',
),
'data' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'timezone_name' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '50',
'default' => '',
),
'pass_plain' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'expected_timezone' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '50',
),
'timezone_id' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("users")->fields(array(
'uid',
'name',
'pass',
'mail',
'mode',
'sort',
'threshold',
'theme',
'signature',
'signature_format',
'created',
'access',
'login',
'status',
'timezone',
'language',
'picture',
'init',
'data',
'timezone_name',
'pass_plain',
'expected_timezone',
'timezone_id',
))
->values(array(
'uid' => '2',
'name' => 'john.doe',
'pass' => '671cc45b3e2c6eb751d6a554dc5a5fe7',
'mail' => 'john.doe@example.com',
'mode' => '0',
'sort' => '0',
'threshold' => '0',
'theme' => '',
'signature' => 'John Doe | john.doe@example.com',
'signature_format' => '1',
'created' => '1391150052',
'access' => '1391259672',
'login' => '1391152253',
'status' => '1',
'timezone' => '3600',
'language' => 'fr',
'picture' => 'core/modules/simpletest/files/image-test.jpg',
'init' => 'doe@example.com',
'data' => 'a:2:{s:7:"contact";i:1;s:13:"form_build_id";s:48:"form-qu_DMjE-Vfg01arT5J4VbuBCkOgx_LeySJx4qrPOSuA";}',
'timezone_name' => 'Europe/Berlin',
'pass_plain' => 'john.doe_pass',
'expected_timezone' => 'Europe/Berlin',
'timezone_id' => '1',
))->values(array(
'uid' => '8',
'name' => 'joe.roe',
'pass' => '93a70546e6c032c135499fed70cfe438',
'mail' => 'joe.roe@example.com',
'mode' => '0',
'sort' => '0',
'threshold' => '0',
'theme' => '',
'signature' => 'JR',
'signature_format' => '2',
'created' => '1391150053',
'access' => '1391259673',
'login' => '1391152254',
'status' => '1',
'timezone' => '7200',
'language' => 'ro',
'picture' => 'core/modules/simpletest/files/image-test.png',
'init' => 'roe@example.com',
'data' => 'a:2:{s:7:"contact";i:0;s:13:"form_build_id";s:48:"form-1TxjbL2_1dEHIxEu2Db6OvEsSN1x9ILH1VCgnvsO6LE";}',
'timezone_name' => 'Europe/Helsinki',
'pass_plain' => 'joe.roe_pass',
'expected_timezone' => 'Europe/Helsinki',
'timezone_id' => '0',
))->values(array(
'uid' => '15',
'name' => 'joe.bloggs',
'pass' => '2ff23139aeb404274dc67cbee8c64fb0',
'mail' => 'joe.bloggs@example.com',
'mode' => '0',
'sort' => '0',
'threshold' => '0',
'theme' => '',
'signature' => 'bloggs',
'signature_format' => '1',
'created' => '1391150054',
'access' => '1391259674',
'login' => '1391152255',
'status' => '1',
'timezone' => '-28800',
'language' => 'en',
'picture' => '',
'init' => 'bloggs@example.com',
'data' => 'a:0:{}',
'timezone_name' => 'America/Anchorage',
'pass_plain' => 'joe.bloggs_pass',
'expected_timezone' => NULL,
'timezone_id' => '0',
))->values(array(
'uid' => '16',
'name' => 'sal.saraniti',
'pass' => '77404657c8bcd8e9aa8f3147856efb4f',
'mail' => 'sal.saraniti@example.com',
'mode' => '0',
'sort' => '0',
'threshold' => '0',
'theme' => '',
'signature' => '',
'signature_format' => '0',
'created' => '1391151054',
'access' => '1391259574',
'login' => '1391162255',
'status' => '1',
'timezone' => '0',
'language' => 'en',
'picture' => '',
'init' => 'sal.saraniti@example.com',
'data' => 'a:0:{}',
'timezone_name' => 'UTC',
'pass_plain' => 'sal.saraniti',
'expected_timezone' => NULL,
'timezone_id' => '0',
))->values(array(
'uid' => '17',
'name' => 'terry.saraniti',
'pass' => '8fb310d3ec746d720e0e8efefd0cce5c',
'mail' => 'terry.saraniti@example.com',
'mode' => '0',
'sort' => '0',
'threshold' => '0',
'theme' => '',
'signature' => '',
'signature_format' => '0',
'created' => '1390151054',
'access' => '1390259574',
'login' => '1390162255',
'status' => '1',
'timezone' => NULL,
'language' => 'en',
'picture' => '',
'init' => 'terry.saraniti@example.com',
'data' => 'a:0:{}',
'timezone_name' => NULL,
'pass_plain' => 'terry.saraniti',
'expected_timezone' => NULL,
'timezone_id' => '0',
))->execute();
}
}
#4a42570fa3c819b0b84e9552d689e2e7

View file

@ -1,81 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\UsersRoles.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the users_roles table.
*/
class UsersRoles extends DrupalDumpBase {
public function load() {
$this->createTable("users_roles", array(
'primary key' => array(
'uid',
'rid',
),
'fields' => array(
'uid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'rid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("users_roles")->fields(array(
'uid',
'rid',
))
->values(array(
'uid' => '2',
'rid' => '3',
))->values(array(
'uid' => '15',
'rid' => '3',
))->values(array(
'uid' => '16',
'rid' => '3',
))->values(array(
'uid' => '8',
'rid' => '4',
))->values(array(
'uid' => '15',
'rid' => '4',
))->values(array(
'uid' => '17',
'rid' => '4',
))->values(array(
'uid' => '8',
'rid' => '5',
))->values(array(
'uid' => '15',
'rid' => '5',
))->values(array(
'uid' => '16',
'rid' => '5',
))->execute();
}
}
#6cffea4f67e621d7c498bba3ead7d305

View file

@ -1,737 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Variable.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the variable table.
*/
class Variable extends DrupalDumpBase {
public function load() {
$this->createTable("variable", array(
'primary key' => array(
'name',
),
'fields' => array(
'name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '128',
'default' => '',
),
'value' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("variable")->fields(array(
'name',
'value',
))
->values(array(
'name' => 'actions_max_stack',
'value' => 'i:35;',
))->values(array(
'name' => 'admin_compact_mode',
'value' => 'b:0;',
))->values(array(
'name' => 'aggregator_allowed_html_tags',
'value' => 's:70:"<a> <b> <br /> <dd> <dl> <dt> <em> <i> <li> <ol> <p> <strong> <u> <ul>";',
))->values(array(
'name' => 'aggregator_clear',
'value' => 's:7:"9676800";',
))->values(array(
'name' => 'aggregator_fetcher',
'value' => 's:10:"aggregator";',
))->values(array(
'name' => 'aggregator_parser',
'value' => 's:10:"aggregator";',
))->values(array(
'name' => 'aggregator_processors',
'value' => 'a:1:{i:0;s:10:"aggregator";}',
))->values(array(
'name' => 'aggregator_summary_items',
'value' => 's:1:"3";',
))->values(array(
'name' => 'aggregator_teaser_length',
'value' => 's:3:"600";',
))->values(array(
'name' => 'allowed_html_1',
'value' => 's:61:"<a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>";',
))->values(array(
'name' => 'allow_insecure_uploads',
'value' => 'i:1;',
))->values(array(
'name' => 'anonymous',
'value' => 's:5:"Guest";',
))->values(array(
'name' => 'book_allowed_types',
'value' => 'a:1:{i:0;s:4:"book";}',
))->values(array(
'name' => 'book_block_mode',
'value' => 's:9:"all pages";',
))->values(array(
'name' => 'book_child_type',
'value' => 's:4:"book";',
))->values(array(
'name' => 'cache_lifetime',
'value' => 'i:0;',
))->values(array(
'name' => 'comment_anonymous_article',
'value' => 'i:0;',
))->values(array(
'name' => 'comment_anonymous_page',
'value' => 'i:0;',
))->values(array(
'name' => 'comment_anonymous_story',
'value' => 'i:1;',
))->values(array(
'name' => 'comment_article',
'value' => 's:1:"2";',
))->values(array(
'name' => 'comment_controls_article',
'value' => 's:1:"3";',
))->values(array(
'name' => 'comment_controls_page',
'value' => 's:1:"3";',
))->values(array(
'name' => 'comment_controls_story',
'value' => 's:1:"3";',
))->values(array(
'name' => 'comment_default_mode_article',
'value' => 's:1:"4";',
))->values(array(
'name' => 'comment_default_mode_page',
'value' => 's:1:"4";',
))->values(array(
'name' => 'comment_default_mode_story',
'value' => 's:1:"2";',
))->values(array(
'name' => 'comment_default_order_article',
'value' => 's:1:"1";',
))->values(array(
'name' => 'comment_default_order_page',
'value' => 's:1:"1";',
))->values(array(
'name' => 'comment_default_order_story',
'value' => 's:1:"1";',
))->values(array(
'name' => 'comment_default_per_page_article',
'value' => 's:2:"50";',
))->values(array(
'name' => 'comment_default_per_page_page',
'value' => 's:2:"50";',
))->values(array(
'name' => 'comment_default_per_page_story',
'value' => 's:2:"70";',
))->values(array(
'name' => 'comment_form_location_article',
'value' => 's:1:"0";',
))->values(array(
'name' => 'comment_form_location_page',
'value' => 's:1:"0";',
))->values(array(
'name' => 'comment_form_location_story',
'value' => 's:1:"0";',
))->values(array(
'name' => 'comment_page',
'value' => 's:1:"0";',
))->values(array(
'name' => 'comment_preview_article',
'value' => 's:1:"1";',
))->values(array(
'name' => 'comment_preview_page',
'value' => 's:1:"1";',
))->values(array(
'name' => 'comment_preview_story',
'value' => 's:1:"0";',
))->values(array(
'name' => 'comment_story',
'value' => 's:1:"2";',
))->values(array(
'name' => 'comment_subject_field_article',
'value' => 's:1:"1";',
))->values(array(
'name' => 'comment_subject_field_page',
'value' => 's:1:"1";',
))->values(array(
'name' => 'comment_subject_field_story',
'value' => 's:1:"0";',
))->values(array(
'name' => 'configurable_timezones',
'value' => 's:1:"0";',
))->values(array(
'name' => 'contact_default_status',
'value' => 'i:1;',
))->values(array(
'name' => 'contact_hourly_threshold',
'value' => 'i:3;',
))->values(array(
'name' => 'content_extra_weights_story',
'value' => 'a:9:{s:5:"title";s:2:"-5";s:10:"body_field";s:2:"-2";s:20:"revision_information";s:2:"19";s:6:"author";s:2:"18";s:7:"options";s:2:"20";s:16:"comment_settings";s:2:"22";s:4:"menu";s:2:"-3";s:8:"taxonomy";s:2:"-4";s:11:"attachments";s:2:"21";}',
))->values(array(
'name' => 'content_extra_weights_test_page',
'value' => 'a:8:{s:5:"title";s:2:"37";s:10:"body_field";s:2:"38";s:20:"revision_information";s:2:"40";s:6:"author";s:2:"39";s:7:"options";s:2:"41";s:16:"comment_settings";s:2:"42";s:4:"menu";s:2:"36";s:11:"attachments";s:2:"43";}',
))->values(array(
'name' => 'content_schema_version',
'value' => 's:4:"6010";',
))->values(array(
'name' => 'cron_threshold_error',
'value' => 'i:1209600;',
))->values(array(
'name' => 'cron_threshold_warning',
'value' => 'i:172800;',
))->values(array(
'name' => 'css_js_query_string',
'value' => 's:20:"AkMTxRZndiw700000000";',
))->values(array(
'name' => 'date:story:4:field_test_datestamp_fromto',
'value' => 's:4:"both";',
))->values(array(
'name' => 'date:story:4:field_test_datestamp_multiple_from',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:4:field_test_datestamp_multiple_number',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:4:field_test_datestamp_multiple_to',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:4:field_test_datestamp_show_repeat_rule',
'value' => 's:4:"show";',
))->values(array(
'name' => 'date:story:4:field_test_datetime_fromto',
'value' => 's:4:"both";',
))->values(array(
'name' => 'date:story:4:field_test_datetime_multiple_from',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:4:field_test_datetime_multiple_number',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:4:field_test_datetime_multiple_to',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:4:field_test_datetime_show_repeat_rule',
'value' => 's:4:"show";',
))->values(array(
'name' => 'date:story:4:field_test_date_fromto',
'value' => 's:4:"both";',
))->values(array(
'name' => 'date:story:4:field_test_date_multiple_from',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:4:field_test_date_multiple_number',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:4:field_test_date_multiple_to',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:4:field_test_date_show_repeat_rule',
'value' => 's:4:"show";',
))->values(array(
'name' => 'date:story:5:field_test_datestamp_fromto',
'value' => 's:4:"both";',
))->values(array(
'name' => 'date:story:5:field_test_datestamp_multiple_from',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:5:field_test_datestamp_multiple_number',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:5:field_test_datestamp_multiple_to',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:5:field_test_datestamp_show_repeat_rule',
'value' => 's:4:"show";',
))->values(array(
'name' => 'date:story:5:field_test_datetime_fromto',
'value' => 's:4:"both";',
))->values(array(
'name' => 'date:story:5:field_test_datetime_multiple_from',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:5:field_test_datetime_multiple_number',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:5:field_test_datetime_multiple_to',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:5:field_test_datetime_show_repeat_rule',
'value' => 's:4:"show";',
))->values(array(
'name' => 'date:story:5:field_test_date_fromto',
'value' => 's:4:"both";',
))->values(array(
'name' => 'date:story:5:field_test_date_multiple_from',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:5:field_test_date_multiple_number',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:5:field_test_date_multiple_to',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:5:field_test_date_show_repeat_rule',
'value' => 's:4:"show";',
))->values(array(
'name' => 'date:story:full:field_test_datestamp_fromto',
'value' => 's:4:"both";',
))->values(array(
'name' => 'date:story:full:field_test_datestamp_multiple_from',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:full:field_test_datestamp_multiple_number',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:full:field_test_datestamp_multiple_to',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:full:field_test_datestamp_show_repeat_rule',
'value' => 's:4:"show";',
))->values(array(
'name' => 'date:story:full:field_test_datetime_fromto',
'value' => 's:4:"both";',
))->values(array(
'name' => 'date:story:full:field_test_datetime_multiple_from',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:full:field_test_datetime_multiple_number',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:full:field_test_datetime_multiple_to',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:full:field_test_datetime_show_repeat_rule',
'value' => 's:4:"show";',
))->values(array(
'name' => 'date:story:full:field_test_date_fromto',
'value' => 's:4:"both";',
))->values(array(
'name' => 'date:story:full:field_test_date_multiple_from',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:full:field_test_date_multiple_number',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:full:field_test_date_multiple_to',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:full:field_test_date_show_repeat_rule',
'value' => 's:4:"show";',
))->values(array(
'name' => 'date:story:teaser:field_test_datestamp_fromto',
'value' => 's:4:"both";',
))->values(array(
'name' => 'date:story:teaser:field_test_datestamp_multiple_from',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:teaser:field_test_datestamp_multiple_number',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:teaser:field_test_datestamp_multiple_to',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:teaser:field_test_datestamp_show_repeat_rule',
'value' => 's:4:"show";',
))->values(array(
'name' => 'date:story:teaser:field_test_datetime_fromto',
'value' => 's:4:"both";',
))->values(array(
'name' => 'date:story:teaser:field_test_datetime_multiple_from',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:teaser:field_test_datetime_multiple_number',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:teaser:field_test_datetime_multiple_to',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:teaser:field_test_datetime_show_repeat_rule',
'value' => 's:4:"show";',
))->values(array(
'name' => 'date:story:teaser:field_test_date_fromto',
'value' => 's:4:"both";',
))->values(array(
'name' => 'date:story:teaser:field_test_date_multiple_from',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:teaser:field_test_date_multiple_number',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:teaser:field_test_date_multiple_to',
'value' => 's:0:"";',
))->values(array(
'name' => 'date:story:teaser:field_test_date_show_repeat_rule',
'value' => 's:4:"show";',
))->values(array(
'name' => 'date_api_version',
'value' => 's:3:"5.2";',
))->values(array(
'name' => 'date_default_timezone',
'value' => 's:4:"3600";',
))->values(array(
'name' => 'date_first_day',
'value' => 's:1:"4";',
))->values(array(
'name' => 'date_format_long',
'value' => 's:24:"\L\O\N\G l, F j, Y - H:i";',
))->values(array(
'name' => 'date_format_medium',
'value' => 's:27:"\M\E\D\I\U\M D, m/d/Y - H:i";',
))->values(array(
'name' => 'date_format_short',
'value' => 's:22:"\S\H\O\R\T m/d/Y - H:i";',
))->values(array(
'name' => 'dblog_row_limit',
'value' => 'i:1000;',
))->values(array(
'name' => 'drupal_badge_color',
'value' => 's:12:"powered-blue";',
))->values(array(
'name' => 'drupal_badge_size',
'value' => 's:5:"80x15";',
))->values(array(
'name' => 'drupal_http_request_fails',
'value' => 'b:0;',
))->values(array(
'name' => 'drupal_private_key',
'value' => 's:43:"6bTz0JLHTM1R1c7VtbZtbio47JygBoNuGuzS5G0JYWs";',
))->values(array(
'name' => 'error_level',
'value' => 'i:1;',
))->values(array(
'name' => 'event_nodeapi_event',
'value' => 's:3:"all";',
))->values(array(
'name' => 'feed_default_items',
'value' => 'i:10;',
))->values(array(
'name' => 'feed_item_length',
'value' => 's:5:"title";',
))->values(array(
'name' => 'file_description_length',
'value' => 'i:128;',
))->values(array(
'name' => 'file_description_type',
'value' => 's:9:"textfield";',
))->values(array(
'name' => 'file_directory_path',
'value' => 's:29:"core/modules/simpletest/files";',
))->values(array(
'name' => 'file_directory_temp',
'value' => 's:10:"files/temp";',
))->values(array(
'name' => 'file_downloads',
'value' => 's:1:"1";',
))->values(array(
'name' => 'file_icon_directory',
'value' => 's:25:"sites/default/files/icons";',
))->values(array(
'name' => 'filter_allowed_protocols',
'value' => 'a:13:{i:0;s:4:"http";i:1;s:5:"https";i:2;s:3:"ftp";i:3;s:4:"news";i:4;s:4:"nntp";i:5;s:3:"tel";i:6;s:6:"telnet";i:7;s:6:"mailto";i:8;s:3:"irc";i:9;s:3:"ssh";i:10;s:4:"sftp";i:11;s:6:"webcal";i:12;s:4:"rtsp";}',
))->values(array(
'name' => 'filter_html_1',
'value' => 'i:1;',
))->values(array(
'name' => 'filter_html_help_1',
'value' => 'i:1;',
))->values(array(
'name' => 'filter_html_nofollow_1',
'value' => 'i:0;',
))->values(array(
'name' => 'filter_url_length_1',
'value' => 's:2:"72";',
))->values(array(
'name' => 'form_build_id_article',
'value' => 's:48:"form-uujdfNoFjx9PnvEkSoFnanxF1waDx_AikUQLRTGGdvQ";',
))->values(array(
'name' => 'forum_block_num_0',
'value' => 's:1:"5";',
))->values(array(
'name' => 'forum_block_num_1',
'value' => 's:1:"5";',
))->values(array(
'name' => 'forum_hot_topic',
'value' => 's:2:"15";',
))->values(array(
'name' => 'forum_nav_vocabulary',
'value' => 's:1:"1";',
))->values(array(
'name' => 'forum_order',
'value' => 's:1:"1";',
))->values(array(
'name' => 'forum_per_page',
'value' => 's:2:"25";',
))->values(array(
'name' => 'image_jpeg_quality',
'value' => 'i:75;',
))->values(array(
'name' => 'image_toolkit',
'value' => 's:2:"gd";',
))->values(array(
'name' => 'locale_cache_strings',
'value' => 'i:1;',
))->values(array(
'name' => 'locale_js_directory',
'value' => 's:9:"languages";',
))->values(array(
'name' => 'menu_expanded',
'value' => 'a:1:{i:0;s:15:"secondary-links";}',
))->values(array(
'name' => 'menu_masks',
'value' => 'a:22:{i:0;i:127;i:1;i:63;i:2;i:62;i:3;i:61;i:4;i:59;i:5;i:31;i:6;i:30;i:7;i:29;i:8;i:24;i:9;i:21;i:10;i:15;i:11;i:14;i:12;i:13;i:13;i:12;i:14;i:11;i:15;i:7;i:16;i:6;i:17;i:5;i:18;i:4;i:19;i:3;i:20;i:2;i:21;i:1;}',
))->values(array(
'name' => 'menu_override_parent_selector',
'value' => 'b:0;',
))->values(array(
'name' => 'minimum_word_size',
'value' => 's:1:"3";',
))->values(array(
'name' => 'node_admin_theme',
'value' => 'i:0;',
))->values(array(
'name' => 'node_options_article',
'value' => 'a:1:{i:0;s:7:"promote";}',
))->values(array(
'name' => 'node_options_book',
'value' => 'a:1:{i:0;s:6:"status";}',
))->values(array(
'name' => 'node_options_forum',
'value' => 'a:1:{i:0;s:6:"status";}',
))->values(array(
'name' => 'node_options_test_event',
'value' => 'a:2:{i:0;s:6:"sticky";i:1;s:8:"revision";}',
))->values(array(
'name' => 'node_options_test_page',
'value' => 'a:3:{i:0;s:6:"status";i:1;s:7:"promote";i:2;s:6:"sticky";}',
))->values(array(
'name' => 'node_options_test_planet',
'value' => 'a:2:{i:0;s:6:"sticky";i:1;s:8:"revision";}',
))->values(array(
'name' => 'node_options_test_story',
'value' => 'a:2:{i:0;s:6:"status";i:1;s:7:"promote";}',
))->values(array(
'name' => 'node_preview',
'value' => 'i:0;',
))->values(array(
'name' => 'node_rank_comments',
'value' => 's:1:"5";',
))->values(array(
'name' => 'node_rank_promote',
'value' => 's:1:"0";',
))->values(array(
'name' => 'node_rank_recent',
'value' => 's:1:"0";',
))->values(array(
'name' => 'node_rank_relevance',
'value' => 's:1:"2";',
))->values(array(
'name' => 'node_rank_sticky',
'value' => 's:1:"8";',
))->values(array(
'name' => 'node_rank_views',
'value' => 's:1:"1";',
))->values(array(
'name' => 'overlap_cjk',
'value' => 'i:1;',
))->values(array(
'name' => 'page_compression',
'value' => 's:1:"1";',
))->values(array(
'name' => 'preprocess_css',
'value' => 'i:0;',
))->values(array(
'name' => 'preprocess_js',
'value' => 'i:0;',
))->values(array(
'name' => 'search_cron_limit',
'value' => 's:3:"100";',
))->values(array(
'name' => 'simpletest_clear_results',
'value' => 'b:1;',
))->values(array(
'name' => 'simpletest_httpauth_method',
'value' => 'i:1;',
))->values(array(
'name' => 'simpletest_httpauth_password',
'value' => 'N;',
))->values(array(
'name' => 'simpletest_httpauth_username',
'value' => 'N;',
))->values(array(
'name' => 'simpletest_verbose',
'value' => 'b:1;',
))->values(array(
'name' => 'site_403',
'value' => 's:4:"user";',
))->values(array(
'name' => 'site_404',
'value' => 's:14:"page-not-found";',
))->values(array(
'name' => 'site_frontpage',
'value' => 's:4:"node";',
))->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' => 'site_offline',
'value' => 'i:0;',
))->values(array(
'name' => 'site_offline_message',
'value' => 's:94:"Drupal is currently under maintenance. We should be back shortly. Thank you for your patience.";',
))->values(array(
'name' => 'site_slogan',
'value' => 's:13:"Migrate rocks";',
))->values(array(
'name' => 'statistics_block_top_all_num',
'value' => 'i:0;',
))->values(array(
'name' => 'statistics_block_top_day_num',
'value' => 'i:0;',
))->values(array(
'name' => 'statistics_block_top_last_num',
'value' => 'i:0;',
))->values(array(
'name' => 'statistics_count_content_views',
'value' => 'i:0;',
))->values(array(
'name' => 'statistics_enable_access_log',
'value' => 'i:0;',
))->values(array(
'name' => 'statistics_flush_accesslog_timer',
'value' => 'i:259200;',
))->values(array(
'name' => 'syslog_facility',
'value' => 'i:128;',
))->values(array(
'name' => 'syslog_identity',
'value' => 's:6:"drupal";',
))->values(array(
'name' => 'taxonomy_override_selector',
'value' => 'b:0;',
))->values(array(
'name' => 'taxonomy_terms_per_page_admin',
'value' => 'i:100;',
))->values(array(
'name' => 'teaser_length',
'value' => 'i:456;',
))->values(array(
'name' => 'theme_default',
'value' => 's:7:"garland";',
))->values(array(
'name' => 'theme_settings',
'value' => 'a:22:{s:11:"toggle_logo";i:1;s:11:"toggle_name";i:1;s:13:"toggle_slogan";i:0;s:14:"toggle_mission";i:1;s:24:"toggle_node_user_picture";i:0;s:27:"toggle_comment_user_picture";i:0;s:13:"toggle_search";i:0;s:14:"toggle_favicon";i:1;s:20:"toggle_primary_links";i:1;s:22:"toggle_secondary_links";i:1;s:21:"toggle_node_info_test";i:1;s:26:"toggle_node_info_something";i:1;s:12:"default_logo";i:1;s:9:"logo_path";s:0:"";s:11:"logo_upload";s:0:"";s:15:"default_favicon";i:1;s:12:"favicon_path";s:0:"";s:14:"favicon_upload";s:0:"";s:26:"toggle_node_info_test_page";i:1;s:27:"toggle_node_info_test_story";i:1;s:27:"toggle_node_info_test_event";i:1;s:28:"toggle_node_info_test_planet";i:1;}',
))->values(array(
'name' => 'update_check_frequency',
'value' => 's:1:"7";',
))->values(array(
'name' => 'update_fetch_url',
'value' => 's:41:"http://updates.drupal.org/release-history";',
))->values(array(
'name' => 'update_max_fetch_attempts',
'value' => 'i:2;',
))->values(array(
'name' => 'update_notification_threshold',
'value' => 's:3:"all";',
))->values(array(
'name' => 'update_notify_emails',
'value' => 'a:0:{}',
))->values(array(
'name' => 'upload_article',
'value' => 'b:0;',
))->values(array(
'name' => 'upload_page',
'value' => 'b:1;',
))->values(array(
'name' => 'upload_story',
'value' => 'b:1;',
))->values(array(
'name' => 'user_block_max_list_count',
'value' => 's:2:"10";',
))->values(array(
'name' => 'user_block_seconds_online',
'value' => 's:3:"900";',
))->values(array(
'name' => 'user_block_whois_new_count',
'value' => 's:1:"5";',
))->values(array(
'name' => 'user_email_verification',
'value' => 'i:0;',
))->values(array(
'name' => 'user_mail_password_reset_body',
'value' => "s:409:\"!username,\n\nA request to reset the password for your account has been made at !site.\n\nYou may now log in to !uri_brief by clicking on this link or copying and pasting it in your browser:\n\n!login_url\n\nThis is a one-time login, so it can be used only once. It expires after one day and nothing will happen if it's not used.\n\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\";",
))->values(array(
'name' => 'user_mail_password_reset_subject',
'value' => 's:52:"Replacement login information for !username at !site";',
))->values(array(
'name' => 'user_mail_register_admin_created_body',
'value' => "s:452:\"!username,\n\nA site administrator at !site has created an account for you. You may now log in to !login_uri using the following username and password:\n\nusername: !username\npassword: !password\n\nYou may also log in by clicking on this link or copying and pasting it in your browser:\n\n!login_url\n\nThis is a one-time login, so it can be used only once.\n\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\n\n\n-- !site team\";",
))->values(array(
'name' => 'user_mail_register_admin_created_subject',
'value' => 's:52:"An administrator created an account for you at !site";',
))->values(array(
'name' => 'user_mail_register_no_approval_required_body',
'value' => "s:426:\"!username,\n\nThank you for registering at !site. You may now log in to !login_uri using the following username and password:\n\nusername: !username\npassword: !password\n\nYou may also log in by clicking on this link or copying and pasting it in your browser:\n\n!login_url\n\nThis is a one-time login, so it can be used only once.\n\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\n\n\n-- !site team\";",
))->values(array(
'name' => 'user_mail_register_no_approval_required_subject',
'value' => 's:38:"Account details for !username at !site";',
))->values(array(
'name' => 'user_mail_register_pending_approval_body',
'value' => "s:267:\"!username,\n\nThank you for registering at !site. Your application for an account is currently pending approval. Once it has been approved, you will receive another email containing information about how to log in, set your password, and other details.\n\n\n-- !site team\";",
))->values(array(
'name' => 'user_mail_register_pending_approval_subject',
'value' => 's:63:"Account details for !username at !site (pending admin approval)";',
))->values(array(
'name' => 'user_mail_status_activated_body',
'value' => "s:419:\"!username,\n\nYour account at !site has been activated.\n\nYou may now log in by clicking on this link or copying and pasting it in your browser:\n\n!login_url\n\nThis is a one-time login, so it can be used only once.\n\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\n\nOnce you have set your own password, you will be able to log in to !login_uri in the future using:\n\nusername: !username\n\";",
))->values(array(
'name' => 'user_mail_status_activated_notify',
'value' => 'i:0;',
))->values(array(
'name' => 'user_mail_status_activated_subject',
'value' => 's:49:"Account details for !username at !site (approved)";',
))->values(array(
'name' => 'user_mail_status_blocked_body',
'value' => "s:51:\"!username,\n\nYour account on !site has been blocked.\";",
))->values(array(
'name' => 'user_mail_status_blocked_notify',
'value' => 'i:1;',
))->values(array(
'name' => 'user_mail_status_blocked_subject',
'value' => 's:48:"Account details for !username at !site (blocked)";',
))->values(array(
'name' => 'user_mail_status_deleted_body',
'value' => "s:51:\"!username,\n\nYour account on !site has been deleted.\";",
))->values(array(
'name' => 'user_mail_status_deleted_subject',
'value' => 's:48:"Account details for !username at !site (deleted)";',
))->values(array(
'name' => 'user_register',
'value' => 'i:0;',
))->values(array(
'name' => 'user_signatures',
'value' => 's:1:"1";',
))->execute();
}
}
#f34f009027a42145859ceca526d4c297

View file

@ -1,178 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Vocabulary.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the vocabulary table.
*/
class Vocabulary extends DrupalDumpBase {
public function load() {
$this->createTable("vocabulary", array(
'primary key' => array(
'vid',
),
'fields' => array(
'vid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
'name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'description' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'help' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'relations' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'hierarchy' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'multiple' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'required' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'tags' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'module' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'weight' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->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' => '4',
))->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' => '5',
))->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' => '6',
))->values(array(
'vid' => '4',
'name' => 'Tags',
'description' => 'Tags Vocabulary',
'help' => '',
'relations' => '1',
'hierarchy' => '0',
'multiple' => '0',
'required' => '0',
'tags' => '0',
'module' => 'taxonomy',
'weight' => '0',
))->values(array(
'vid' => '5',
'name' => 'vocabulary name much longer than thirty two characters',
'description' => 'description of vocabulary name much longer than thirty two characters',
'help' => '',
'relations' => '1',
'hierarchy' => '3',
'multiple' => '1',
'required' => '0',
'tags' => '0',
'module' => 'taxonomy',
'weight' => '7',
))->execute();
}
}
#94130b73f1ac1038218716a57d465163

View file

@ -1,68 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\VocabularyNodeTypes.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the vocabulary_node_types table.
*/
class VocabularyNodeTypes extends DrupalDumpBase {
public function load() {
$this->createTable("vocabulary_node_types", array(
'primary key' => array(
'vid',
'type',
),
'fields' => array(
'vid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'type' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '32',
'default' => '',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("vocabulary_node_types")->fields(array(
'vid',
'type',
))
->values(array(
'vid' => '4',
'type' => 'article',
))->values(array(
'vid' => '4',
'type' => 'page',
))->values(array(
'vid' => '1',
'type' => 'story',
))->values(array(
'vid' => '2',
'type' => 'story',
))->values(array(
'vid' => '3',
'type' => 'story',
))->execute();
}
}
#b62db0b4fcc3389a5da405b703632d5a

View file

@ -1,110 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d6\Watchdog.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d6;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the watchdog table.
*/
class Watchdog extends DrupalDumpBase {
public function load() {
$this->createTable("watchdog", array(
'primary key' => array(
'wid',
),
'fields' => array(
'wid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '11',
),
'uid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'type' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '16',
'default' => '',
),
'message' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'variables' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'severity' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'link' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'location' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'referer' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'hostname' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '128',
'default' => '',
),
'timestamp' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("watchdog")->fields(array(
'wid',
'uid',
'type',
'message',
'variables',
'severity',
'link',
'location',
'referer',
'hostname',
'timestamp',
))
->execute();
}
}
#9106430c43c9a1d732e1b44bce21781b

View file

@ -1,128 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d7\Accesslog.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d7;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the accesslog table.
*/
class Accesslog extends DrupalDumpBase {
public function load() {
$this->createTable("accesslog", array(
'primary key' => array(
'aid',
),
'fields' => array(
'aid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '11',
),
'sid' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '128',
'default' => '',
),
'title' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '255',
),
'path' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '255',
),
'url' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'hostname' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '128',
),
'uid' => array(
'type' => 'int',
'not null' => FALSE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'timer' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
'timestamp' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'default' => '0',
'unsigned' => TRUE,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("accesslog")->fields(array(
'aid',
'sid',
'title',
'path',
'url',
'hostname',
'uid',
'timer',
'timestamp',
))
->values(array(
'aid' => '89',
'sid' => 's12XgEKLqGr998aW8pzRB4dCX5SkOVoDm4YO76PPv7g',
'title' => 'Appearance',
'path' => 'admin/appearance',
'url' => 'http://localhost/sandbox7/node/1',
'hostname' => '::1',
'uid' => '1',
'timer' => '922',
'timestamp' => '1421843462',
))->values(array(
'aid' => '90',
'sid' => 's12XgEKLqGr998aW8pzRB4dCX5SkOVoDm4YO76PPv7g',
'title' => 'Modules',
'path' => 'admin/modules',
'url' => 'http://localhost/sandbox7/admin/appearance',
'hostname' => '::1',
'uid' => '1',
'timer' => '492',
'timestamp' => '1421843474',
))->values(array(
'aid' => '91',
'sid' => 's12XgEKLqGr998aW8pzRB4dCX5SkOVoDm4YO76PPv7g',
'title' => 'Configuration',
'path' => 'admin/config',
'url' => 'http://localhost/sandbox7/admin/modules',
'hostname' => '::1',
'uid' => '1',
'timer' => '180',
'timestamp' => '1421843480',
))->execute();
}
}
#1aaa5fa899c08cfc6607be2b0599ef46

View file

@ -1,143 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d7\Actions.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d7;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the actions table.
*/
class Actions extends DrupalDumpBase {
public function load() {
$this->createTable("actions", array(
'primary key' => array(
'aid',
),
'fields' => array(
'aid' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '0',
),
'type' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '32',
'default' => '',
),
'callback' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'parameters' => array(
'type' => 'blob',
'not null' => TRUE,
'length' => 100,
),
'label' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("actions")->fields(array(
'aid',
'type',
'callback',
'parameters',
'label',
))
->values(array(
'aid' => 'comment_publish_action',
'type' => 'comment',
'callback' => 'comment_publish_action',
'parameters' => '',
'label' => 'Publish comment',
))->values(array(
'aid' => 'comment_save_action',
'type' => 'comment',
'callback' => 'comment_save_action',
'parameters' => '',
'label' => 'Save comment',
))->values(array(
'aid' => 'comment_unpublish_action',
'type' => 'comment',
'callback' => 'comment_unpublish_action',
'parameters' => '',
'label' => 'Unpublish comment',
))->values(array(
'aid' => 'node_make_sticky_action',
'type' => 'node',
'callback' => 'node_make_sticky_action',
'parameters' => '',
'label' => 'Make content sticky',
))->values(array(
'aid' => 'node_make_unsticky_action',
'type' => 'node',
'callback' => 'node_make_unsticky_action',
'parameters' => '',
'label' => 'Make content unsticky',
))->values(array(
'aid' => 'node_promote_action',
'type' => 'node',
'callback' => 'node_promote_action',
'parameters' => '',
'label' => 'Promote content to front page',
))->values(array(
'aid' => 'node_publish_action',
'type' => 'node',
'callback' => 'node_publish_action',
'parameters' => '',
'label' => 'Publish content',
))->values(array(
'aid' => 'node_save_action',
'type' => 'node',
'callback' => 'node_save_action',
'parameters' => '',
'label' => 'Save content',
))->values(array(
'aid' => 'node_unpromote_action',
'type' => 'node',
'callback' => 'node_unpromote_action',
'parameters' => '',
'label' => 'Remove content from front page',
))->values(array(
'aid' => 'node_unpublish_action',
'type' => 'node',
'callback' => 'node_unpublish_action',
'parameters' => '',
'label' => 'Unpublish content',
))->values(array(
'aid' => 'system_block_ip_action',
'type' => 'user',
'callback' => 'system_block_ip_action',
'parameters' => '',
'label' => 'Ban IP address of current user',
))->values(array(
'aid' => 'user_block_user_action',
'type' => 'user',
'callback' => 'user_block_user_action',
'parameters' => '',
'label' => 'Block current user',
))->execute();
}
}
#28b8f51b5608625c77b3d08229fb6a73

View file

@ -1,63 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d7\AggregatorCategory.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d7;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the aggregator_category table.
*/
class AggregatorCategory extends DrupalDumpBase {
public function load() {
$this->createTable("aggregator_category", array(
'primary key' => array(
'cid',
),
'fields' => array(
'cid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '11',
),
'title' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'description' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'block' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("aggregator_category")->fields(array(
'cid',
'title',
'description',
'block',
))
->execute();
}
}
#36a675168dc6acf7a70dcf73db0ef24f

View file

@ -1,52 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d7\AggregatorCategoryFeed.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d7;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the aggregator_category_feed table.
*/
class AggregatorCategoryFeed extends DrupalDumpBase {
public function load() {
$this->createTable("aggregator_category_feed", array(
'primary key' => array(
'fid',
'cid',
),
'fields' => array(
'fid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'cid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("aggregator_category_feed")->fields(array(
'fid',
'cid',
))
->execute();
}
}
#b1438209e6c5437928ec638c06bea9f1

View file

@ -1,52 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d7\AggregatorCategoryItem.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d7;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the aggregator_category_item table.
*/
class AggregatorCategoryItem extends DrupalDumpBase {
public function load() {
$this->createTable("aggregator_category_item", array(
'primary key' => array(
'iid',
'cid',
),
'fields' => array(
'iid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'cid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("aggregator_category_item")->fields(array(
'iid',
'cid',
))
->execute();
}
}
#18a56c59bc4bbcf06db0b68ba24b1c49

View file

@ -1,123 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d7\AggregatorFeed.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d7;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the aggregator_feed table.
*/
class AggregatorFeed extends DrupalDumpBase {
public function load() {
$this->createTable("aggregator_feed", array(
'primary key' => array(
'fid',
),
'fields' => array(
'fid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '11',
),
'title' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'url' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'refresh' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'checked' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'queued' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'link' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'description' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'image' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'hash' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '64',
'default' => '',
),
'etag' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'modified' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'block' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("aggregator_feed")->fields(array(
'fid',
'title',
'url',
'refresh',
'checked',
'queued',
'link',
'description',
'image',
'hash',
'etag',
'modified',
'block',
))
->execute();
}
}
#8e8447ae5f187d54c5849399ea7f0983

View file

@ -1,88 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d7\AggregatorItem.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d7;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the aggregator_item table.
*/
class AggregatorItem extends DrupalDumpBase {
public function load() {
$this->createTable("aggregator_item", array(
'primary key' => array(
'iid',
),
'fields' => array(
'iid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '11',
),
'fid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'title' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'link' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'author' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'description' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'timestamp' => array(
'type' => 'int',
'not null' => FALSE,
'length' => '11',
),
'guid' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("aggregator_item")->fields(array(
'iid',
'fid',
'title',
'link',
'author',
'description',
'timestamp',
'guid',
))
->execute();
}
}
#45d66c3443a69e4c2180a0d653725d10

View file

@ -1,65 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d7\Authmap.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d7;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the authmap table.
*/
class Authmap extends DrupalDumpBase {
public function load() {
$this->createTable("authmap", array(
'primary key' => array(
'aid',
),
'fields' => array(
'aid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
'uid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'authname' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '128',
'default' => '',
),
'module' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '128',
'default' => '',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("authmap")->fields(array(
'aid',
'uid',
'authname',
'module',
))
->execute();
}
}
#dbc0bc9089ef2058a02d42783ad948e2

View file

@ -1,62 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d7\Batch.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d7;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the batch table.
*/
class Batch extends DrupalDumpBase {
public function load() {
$this->createTable("batch", array(
'primary key' => array(
'bid',
),
'fields' => array(
'bid' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
'token' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '64',
),
'timestamp' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
),
'batch' => array(
'type' => 'blob',
'not null' => FALSE,
'length' => 100,
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("batch")->fields(array(
'bid',
'token',
'timestamp',
'batch',
))
->execute();
}
}
#83d4e14a851195133d20f9f09a929bbd

View file

@ -1,691 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d7\Block.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d7;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the block table.
*/
class Block extends DrupalDumpBase {
public function load() {
$this->createTable("block", array(
'primary key' => array(
'bid',
),
'fields' => array(
'bid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '11',
),
'module' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '64',
'default' => '',
),
'delta' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '32',
'default' => '0',
),
'theme' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '64',
'default' => '',
),
'status' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'weight' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'region' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '64',
'default' => '',
),
'custom' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'visibility' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '0',
),
'pages' => array(
'type' => 'text',
'not null' => TRUE,
'length' => 100,
),
'title' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'cache' => array(
'type' => 'int',
'not null' => TRUE,
'length' => '11',
'default' => '1',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("block")->fields(array(
'bid',
'module',
'delta',
'theme',
'status',
'weight',
'region',
'custom',
'visibility',
'pages',
'title',
'cache',
))
->values(array(
'bid' => '1',
'module' => 'system',
'delta' => 'main',
'theme' => 'bartik',
'status' => '1',
'weight' => '0',
'region' => 'content',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '2',
'module' => 'search',
'delta' => 'form',
'theme' => 'bartik',
'status' => '1',
'weight' => '-1',
'region' => 'sidebar_first',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '3',
'module' => 'node',
'delta' => 'recent',
'theme' => 'seven',
'status' => '0',
'weight' => '10',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '4',
'module' => 'user',
'delta' => 'login',
'theme' => 'bartik',
'status' => '1',
'weight' => '0',
'region' => 'sidebar_first',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '5',
'module' => 'system',
'delta' => 'navigation',
'theme' => 'bartik',
'status' => '1',
'weight' => '0',
'region' => 'sidebar_first',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '6',
'module' => 'system',
'delta' => 'powered-by',
'theme' => 'bartik',
'status' => '1',
'weight' => '10',
'region' => 'footer',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '7',
'module' => 'system',
'delta' => 'help',
'theme' => 'bartik',
'status' => '1',
'weight' => '0',
'region' => 'help',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '8',
'module' => 'system',
'delta' => 'main',
'theme' => 'seven',
'status' => '1',
'weight' => '0',
'region' => 'content',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '9',
'module' => 'system',
'delta' => 'help',
'theme' => 'seven',
'status' => '1',
'weight' => '0',
'region' => 'help',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '10',
'module' => 'user',
'delta' => 'login',
'theme' => 'seven',
'status' => '1',
'weight' => '10',
'region' => 'content',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '11',
'module' => 'user',
'delta' => 'new',
'theme' => 'seven',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '12',
'module' => 'search',
'delta' => 'form',
'theme' => 'seven',
'status' => '0',
'weight' => '-10',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '13',
'module' => 'comment',
'delta' => 'recent',
'theme' => 'bartik',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '1',
))->values(array(
'bid' => '14',
'module' => 'node',
'delta' => 'syndicate',
'theme' => 'bartik',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '15',
'module' => 'node',
'delta' => 'recent',
'theme' => 'bartik',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '1',
))->values(array(
'bid' => '16',
'module' => 'shortcut',
'delta' => 'shortcuts',
'theme' => 'bartik',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '17',
'module' => 'system',
'delta' => 'management',
'theme' => 'bartik',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '18',
'module' => 'system',
'delta' => 'user-menu',
'theme' => 'bartik',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '19',
'module' => 'system',
'delta' => 'main-menu',
'theme' => 'bartik',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '20',
'module' => 'user',
'delta' => 'new',
'theme' => 'bartik',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '1',
))->values(array(
'bid' => '21',
'module' => 'user',
'delta' => 'online',
'theme' => 'bartik',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '22',
'module' => 'comment',
'delta' => 'recent',
'theme' => 'seven',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '1',
))->values(array(
'bid' => '23',
'module' => 'node',
'delta' => 'syndicate',
'theme' => 'seven',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '24',
'module' => 'shortcut',
'delta' => 'shortcuts',
'theme' => 'seven',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '25',
'module' => 'system',
'delta' => 'powered-by',
'theme' => 'seven',
'status' => '0',
'weight' => '10',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '26',
'module' => 'system',
'delta' => 'navigation',
'theme' => 'seven',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '27',
'module' => 'system',
'delta' => 'management',
'theme' => 'seven',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '28',
'module' => 'system',
'delta' => 'user-menu',
'theme' => 'seven',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '29',
'module' => 'system',
'delta' => 'main-menu',
'theme' => 'seven',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '30',
'module' => 'user',
'delta' => 'online',
'theme' => 'seven',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '31',
'module' => 'blog',
'delta' => 'recent',
'theme' => 'bartik',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '1',
))->values(array(
'bid' => '32',
'module' => 'book',
'delta' => 'navigation',
'theme' => 'bartik',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '5',
))->values(array(
'bid' => '33',
'module' => 'locale',
'delta' => 'language',
'theme' => 'bartik',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '34',
'module' => 'forum',
'delta' => 'active',
'theme' => 'bartik',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-2',
))->values(array(
'bid' => '35',
'module' => 'forum',
'delta' => 'new',
'theme' => 'bartik',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-2',
))->values(array(
'bid' => '36',
'module' => 'blog',
'delta' => 'recent',
'theme' => 'seven',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '1',
))->values(array(
'bid' => '37',
'module' => 'book',
'delta' => 'navigation',
'theme' => 'seven',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '5',
))->values(array(
'bid' => '38',
'module' => 'locale',
'delta' => 'language',
'theme' => 'seven',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '39',
'module' => 'forum',
'delta' => 'active',
'theme' => 'seven',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-2',
))->values(array(
'bid' => '40',
'module' => 'forum',
'delta' => 'new',
'theme' => 'seven',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-2',
))->values(array(
'bid' => '41',
'module' => 'menu',
'delta' => 'menu-test-menu',
'theme' => 'bartik',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '42',
'module' => 'statistics',
'delta' => 'popular',
'theme' => 'bartik',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '43',
'module' => 'menu',
'delta' => 'menu-test-menu',
'theme' => 'seven',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->values(array(
'bid' => '44',
'module' => 'statistics',
'delta' => 'popular',
'theme' => 'seven',
'status' => '0',
'weight' => '0',
'region' => '-1',
'custom' => '0',
'visibility' => '0',
'pages' => '',
'title' => '',
'cache' => '-1',
))->execute();
}
}
#74042b5093754da56e33ac51a867f531

View file

@ -1,63 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\Table\d7\BlockCustom.
*
* THIS IS A GENERATED FILE. DO NOT EDIT.
*
* @see core/scripts/migrate-db.sh
* @see https://www.drupal.org/sandbox/benjy/2405029
*/
namespace Drupal\migrate_drupal\Tests\Table\d7;
use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
/**
* Generated file to represent the block_custom table.
*/
class BlockCustom extends DrupalDumpBase {
public function load() {
$this->createTable("block_custom", array(
'primary key' => array(
'bid',
),
'fields' => array(
'bid' => array(
'type' => 'serial',
'not null' => TRUE,
'length' => '10',
'unsigned' => TRUE,
),
'body' => array(
'type' => 'text',
'not null' => FALSE,
'length' => 100,
),
'info' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '128',
'default' => '',
),
'format' => array(
'type' => 'varchar',
'not null' => FALSE,
'length' => '255',
),
),
'mysql_character_set' => 'utf8',
));
$this->database->insert("block_custom")->fields(array(
'bid',
'body',
'info',
'format',
))
->execute();
}
}
#bcecada721307d09075575d51819ab41

Some files were not shown because too many files have changed in this diff Show more