[PLUGINS] ~maj globale
[lhc/web/www.git] / www / plugins / seo-v1 / base / seo_tables.php
diff --git a/www/plugins/seo-v1/base/seo_tables.php b/www/plugins/seo-v1/base/seo_tables.php
deleted file mode 100644 (file)
index 1f9337f..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-
-// Sécurité
-if (!defined("_ECRIRE_INC_VERSION")) return;
-
-function seo_declarer_tables_interfaces($interface){
-       $interface['table_des_tables']['seo'] = 'seo';
-
-       return $interface;
-}
-
-function seo_declarer_tables_principales($tables_principales){
-       //-- Table SEO -----------------------------------------------------
-       $seo = array(
-               'id_objet' => "int(11) NOT NULL",
-               'objet' => "varchar(10) NOT NULL",
-               'meta_name' => "varchar(20) NOT NULL",
-               'meta_content' => "text NOT NULL"
-       );
-
-       $seo_cles = array(
-               "PRIMARY KEY" => "id_objet, objet, meta_name"
-       );
-
-       $tables_principales['spip_seo'] = array(
-               'field' => &$seo,
-               'key' => &$seo_cles
-       );
-
-       return $tables_principales;
-}
-
-?>
\ No newline at end of file