[PLUGINS] +set de base
[lhc/web/www.git] / www / plugins / seo-v1 / base / seo_tables.php
1 <?php
2
3 // Sécurité
4 if (!defined("_ECRIRE_INC_VERSION")) return;
5
6 function seo_declarer_tables_interfaces($interface){
7 $interface['table_des_tables']['seo'] = 'seo';
8
9 return $interface;
10 }
11
12 function seo_declarer_tables_principales($tables_principales){
13 //-- Table SEO -----------------------------------------------------
14 $seo = array(
15 'id_objet' => "int(11) NOT NULL",
16 'objet' => "varchar(10) NOT NULL",
17 'meta_name' => "varchar(20) NOT NULL",
18 'meta_content' => "text NOT NULL"
19 );
20
21 $seo_cles = array(
22 "PRIMARY KEY" => "id_objet, objet, meta_name"
23 );
24
25 $tables_principales['spip_seo'] = array(
26 'field' => &$seo,
27 'key' => &$seo_cles
28 );
29
30 return $tables_principales;
31 }
32
33 ?>