Changeset 47891 in spip-zone
- Timestamp:
- May 18, 2011, 9:41:14 AM (10 years ago)
- Location:
- _core_/plugins/organiseur
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
_core_/plugins/organiseur/base/organiseur.php
r43418 r47891 12 12 13 13 if (!defined('_ECRIRE_INC_VERSION')) return; 14 15 16 /** 17 * Declaration des champs complémentaires sur la table auteurs, pour les clients 18 * 19 * @param $tables 20 * @return 21 */ 22 function organiseur_declarer_tables_objets_sql($tables){ 23 24 $tables['spip_auteurs']['field']["imessage"] = "VARCHAR(3)"; 25 $tables['spip_auteurs']['field']["messagerie"] = "VARCHAR(3)"; 26 return $tables; 27 28 } 29 14 30 15 31 /** … … 54 70 array('field' => &$spip_messages, 'key' => &$spip_messages_key); 55 71 56 $tables_principales['spip_auteurs']["field"]["imessage"] = "VARCHAR(3)";57 $tables_principales['spip_auteurs']["field"]["messagerie"] = "VARCHAR(3)";58 59 72 return $tables_principales; 60 73 } -
_core_/plugins/organiseur/plugin.xml
r47606 r47891 24 24 </pipeline> 25 25 26 <pipeline> 27 <nom>declarer_tables_objets_sql</nom> 28 <inclure>base/organiseur.php</inclure> 29 </pipeline> 26 30 <pipeline> 27 31 <nom>declarer_tables_principales</nom>
Note: See TracChangeset
for help on using the changeset viewer.