123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- <?php
- /**
- * Database additions for locale tests.
- */
- db_create_table('languages', array(
- 'fields' => array(
- 'language' => array(
- 'type' => 'varchar',
- 'length' => 12,
- 'not null' => TRUE,
- 'default' => '',
- ),
- 'name' => array(
- 'type' => 'varchar',
- 'length' => 64,
- 'not null' => TRUE,
- 'default' => '',
- ),
- 'native' => array(
- 'type' => 'varchar',
- 'length' => 64,
- 'not null' => TRUE,
- 'default' => '',
- ),
- 'direction' => array(
- 'type' => 'int',
- 'not null' => TRUE,
- 'default' => 0,
- ),
- 'enabled' => array(
- 'type' => 'int',
- 'not null' => TRUE,
- 'default' => 0,
- ),
- 'plurals' => array(
- 'type' => 'int',
- 'not null' => TRUE,
- 'default' => 0,
- ),
- 'formula' => array(
- 'type' => 'varchar',
- 'length' => 128,
- 'not null' => TRUE,
- 'default' => '',
- ),
- 'domain' => array(
- 'type' => 'varchar',
- 'length' => 128,
- 'not null' => TRUE,
- 'default' => '',
- ),
- 'prefix' => array(
- 'type' => 'varchar',
- 'length' => 128,
- 'not null' => TRUE,
- 'default' => '',
- ),
- 'weight' => array(
- 'type' => 'int',
- 'not null' => TRUE,
- 'default' => 0,
- ),
- 'javascript' => array(
- 'type' => 'varchar',
- 'length' => 32,
- 'not null' => TRUE,
- 'default' => '',
- ),
- ),
- 'primary key' => array(
- 'language',
- ),
- 'indexes' => array(
- 'list' => array(
- 'weight',
- 'name',
- ),
- ),
- 'module' => 'locale',
- 'name' => 'languages',
- ));
- db_insert('languages')->fields(array(
- 'language',
- 'name',
- 'native',
- 'direction',
- 'enabled',
- 'plurals',
- 'formula',
- 'domain',
- 'prefix',
- 'weight',
- 'javascript',
- ))
- ->values(array(
- 'language' => 'en',
- 'name' => 'English',
- 'native' => 'English',
- 'direction' => '0',
- 'enabled' => '1',
- 'plurals' => '0',
- 'formula' => '',
- 'domain' => 'http://en.example.com',
- 'prefix' => 'en',
- 'weight' => '0',
- 'javascript' => '',
- ))
- ->values(array(
- 'language' => 'fr',
- 'name' => 'French',
- 'native' => 'Français',
- 'direction' => '0',
- 'enabled' => '1',
- 'plurals' => '2',
- 'formula' => '($n>1)',
- 'domain' => '',
- 'prefix' => 'fr',
- 'weight' => '-3',
- 'javascript' => '51e92dcfe1491f4595b9df7f3b287753',
- ))
- ->execute();
- db_create_table('locales_source', array(
- 'fields' => array(
- 'lid' => array(
- 'type' => 'serial',
- 'not null' => TRUE,
- ),
- 'location' => array(
- 'type' => 'varchar',
- 'length' => 255,
- 'not null' => TRUE,
- 'default' => '',
- ),
- 'textgroup' => array(
- 'type' => 'varchar',
- 'length' => 255,
- 'not null' => TRUE,
- 'default' => 'default',
- ),
- 'source' => array(
- 'type' => 'text',
- 'mysql_type' => 'blob',
- 'not null' => TRUE,
- ),
- 'version' => array(
- 'type' => 'varchar',
- 'length' => 20,
- 'not null' => TRUE,
- 'default' => 'none',
- ),
- ),
- 'primary key' => array(
- 'lid',
- ),
- 'indexes' => array(
- 'source' => array(
- array(
- 'source',
- 30,
- ),
- ),
- ),
- 'module' => 'locale',
- 'name' => 'locales_source',
- ));
- db_create_table('locales_target', array(
- 'fields' => array(
- 'lid' => array(
- 'type' => 'int',
- 'not null' => TRUE,
- 'default' => 0,
- ),
- 'translation' => array(
- 'type' => 'text',
- 'mysql_type' => 'blob',
- 'not null' => TRUE,
- ),
- 'language' => array(
- 'type' => 'varchar',
- 'length' => 12,
- 'not null' => TRUE,
- 'default' => '',
- ),
- 'plid' => array(
- 'type' => 'int',
- 'not null' => TRUE,
- 'default' => 0,
- ),
- 'plural' => array(
- 'type' => 'int',
- 'not null' => TRUE,
- 'default' => 0,
- ),
- ),
- 'primary key' => array(
- 'language',
- 'lid',
- 'plural',
- ),
- 'indexes' => array(
- 'lid' => array(
- 'lid',
- ),
- 'plid' => array(
- 'plid',
- ),
- 'plural' => array(
- 'plural',
- ),
- ),
- 'module' => 'locale',
- 'name' => 'locales_target',
- ));
- // Enable the locale module.
- db_update('system')->fields(array(
- 'status' => 1,
- 'schema_version' => '6006',
- ))
- ->condition('type', 'module')
- ->condition('name', 'locale')
- ->execute();
- // Set the default language.
- db_insert('variable')->fields(array(
- 'name',
- 'value',
- ))
- ->values(array(
- 'name' => 'language_default',
- 'value' => 'O:8:"stdClass":11:{s:8:"language";s:2:"fr";s:4:"name";s:6:"French";s:6:"native";s:9:"Français";s:9:"direction";s:1:"0";s:7:"enabled";i:1;s:7:"plurals";s:1:"2";s:7:"formula";s:6:"($n>1)";s:6:"domain";s:0:"";s:6:"prefix";s:0:"";s:6:"weight";s:2:"-3";s:10:"javascript";s:32:"51e92dcfe1491f4595b9df7f3b287753";}',
- ))
- ->values(array(
- 'name' => 'language_count',
- 'value' => 'i:2;',
- ))
- ->values(array(
- 'name' => 'language_negotiation',
- 'value' => 'i:0;',
- ))
- ->execute();
- // Add the language switcher block in the left region.
- db_insert('blocks')->fields(array(
- 'module',
- 'delta',
- 'theme',
- 'status',
- 'weight',
- 'region',
- 'custom',
- 'throttle',
- 'visibility',
- 'pages',
- 'title',
- 'cache',
- ))
- ->values(array(
- 'module' => 'locale',
- 'delta' => '0',
- 'theme' => 'garland',
- 'status' => '1',
- 'weight' => '0',
- 'region' => 'left',
- 'custom' => '0',
- 'throttle' => '0',
- 'visibility' => '0',
- 'pages' => '',
- 'title' => '',
- 'cache' => '-1',
- ))
- ->execute();
|