Changeset 98956 in spip-zone for _plugins_/codes_langues/trunk/base/codelang_declarations.php
- Timestamp:
- Jul 19, 2016, 7:09:54 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/codes_langues/trunk/base/codelang_declarations.php
r98925 r98956 151 151 array('field' => &$table_scripts, 'key' => &$table_scripts_key); 152 152 153 // ------------------------------------------------- 154 // Table principale des codes ISO : spip_iso3166countries 155 $table_countries = array( 156 'code_alpha2' => "char(2) DEFAULT '' NOT NULL", // The two-letter identifier 157 'code_alpha3' => "char(2) DEFAULT '' NOT NULL", // The three-letter identifier 158 'code_num' => "char(3) DEFAULT '' NOT NULL", // Numeric identifier 159 'label_en' => "varchar(255) DEFAULT '' NOT NULL", // English name 160 'label_fr' => "varchar(255) DEFAULT '' NOT NULL", // french name 161 'maj' => 'timestamp' 162 ); 163 164 $table_countries_key = array( 165 'PRIMARY KEY' => 'code_alpha2' 166 ); 167 168 $tables_principales['spip_iso3166countries'] = 169 array('field' => &$table_countries, 'key' => &$table_countries_key); 170 153 171 // ------------------------------------------------------------ 154 172 // Tables des codes de langues des services web, spip y compris … … 195 213 $interfaces['table_des_tables']['iso639families'] = 'iso639families'; 196 214 $interfaces['table_des_tables']['iso15924scripts'] = 'iso15924scripts'; 215 $interfaces['table_des_tables']['iso3166countries'] = 'iso3166countries'; 197 216 $interfaces['table_des_tables']['codes_langues'] = 'codes_langues'; 198 217
Note: See TracChangeset
for help on using the changeset viewer.