media_migration-8.x-1.x-dev/tests/fixtures/drupal7_nomedia/menu_custom.php
tests/fixtures/drupal7_nomedia/menu_custom.php
<?php
// phpcs:ignoreFile
/**
* @file
* A database agnostic dump for testing purposes.
*
* This file was generated by the Drupal 9.2.10 db-tools.php script.
*/
use Drupal\Core\Database\Database;
$connection = Database::getConnection();
$connection->schema()->createTable('menu_custom', array(
'fields' => array(
'menu_name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '32',
'default' => '',
),
'title' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '255',
'default' => '',
),
'description' => array(
'type' => 'text',
'not null' => FALSE,
'size' => 'normal',
),
),
'primary key' => array(
'menu_name',
),
'mysql_character_set' => 'utf8',
));
$connection->insert('menu_custom')
->fields(array(
'menu_name',
'title',
'description',
))
->values(array(
'menu_name' => 'main-menu',
'title' => 'Main menu',
'description' => 'The <em>Main</em> menu is used on many sites to show the major sections of the site, often in a top navigation bar.',
))
->values(array(
'menu_name' => 'management',
'title' => 'Management',
'description' => 'The <em>Management</em> menu contains links for administrative tasks.',
))
->values(array(
'menu_name' => 'navigation',
'title' => 'Navigation',
'description' => 'The <em>Navigation</em> menu contains links intended for site visitors. Links are added to the <em>Navigation</em> menu automatically by some modules.',
))
->values(array(
'menu_name' => 'user-menu',
'title' => 'User menu',
'description' => "The <em>User</em> menu contains links related to the user's account, as well as the 'Log out' link.",
))
->execute();
