Line 17... |
Line 17... |
17 |
// | |
|
17 |
// | |
|
18 |
// | You should have received a copy of the GNU Lesser General Public |
|
18 |
// | You should have received a copy of the GNU Lesser General Public |
|
19 |
// | License along with this library; if not, write to the Free Software |
|
19 |
// | License along with this library; if not, write to the Free Software |
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
22 |
// CVS : $Id: integrateur_wikini.admin.php,v 1.4 2005-09-30 07:48:35 ddelon Exp $
|
22 |
// CVS : $Id: integrateur_wikini.admin.php,v 1.5 2006-04-28 12:41:26 florian Exp $
|
23 |
/**
|
23 |
/**
|
24 |
* Gestion des Wikini associé à un menu pour papyrus : lit et stocke les informations dans la
|
24 |
* Gestion des Wikini associé à un menu pour papyrus : lit et stocke les informations dans la
|
25 |
* champs gm_application_arguments de la table gen_menu
|
25 |
* champs gm_application_arguments de la table gen_menu
|
26 |
*
|
26 |
*
|
27 |
* Principe :
|
27 |
* Principe :
|
Line 51... |
Line 51... |
51 |
*
|
51 |
*
|
52 |
*@package IntegrateurWikini
|
52 |
*@package IntegrateurWikini
|
53 |
//Auteur original :
|
53 |
//Auteur original :
|
54 |
*@author David Delon <david.delon@clapas.net>
|
54 |
*@author David Delon <david.delon@clapas.net>
|
55 |
*@copyright Tela-Botanica 2000-2004
|
55 |
*@copyright Tela-Botanica 2000-2004
|
56 |
*@version $Revision: 1.4 $ $Date: 2005-09-30 07:48:35 $
|
56 |
*@version $Revision: 1.5 $ $Date: 2006-04-28 12:41:26 $
|
57 |
// +------------------------------------------------------------------------------------------------------+
|
57 |
// +------------------------------------------------------------------------------------------------------+
|
58 |
*/
|
58 |
*/
|
Line 59... |
Line 59... |
59 |
|
59 |
|
Line 66... |
Line 66... |
66 |
// +------------------------------------------------------------------------------------------------------+
|
66 |
// +------------------------------------------------------------------------------------------------------+
|
67 |
// | CLASSE |
|
67 |
// | CLASSE |
|
68 |
// +------------------------------------------------------------------------------------------------------+
|
68 |
// +------------------------------------------------------------------------------------------------------+
|
Line 69... |
Line 69... |
69 |
|
69 |
|
70 |
/** Inclusion du fichier de configuration de cette application.*/
|
70 |
/** Inclusion du fichier de configuration de cette application.*/
|
Line 71... |
Line 71... |
71 |
require_once 'client/integrateur_wikini/configuration/adwi_configuration.inc.php';
|
71 |
require_once 'configuration/adwi_configuration.inc.php';
|
72 |
|
72 |
|
Line 118... |
Line 118... |
118 |
'FROM gen_menu '.
|
118 |
'FROM gen_menu '.
|
119 |
'WHERE gm_id_menu = '.$_GET['adme_menu_id'];
|
119 |
'WHERE gm_id_menu = '.$_GET['adme_menu_id'];
|
Line 120... |
Line 120... |
120 |
|
120 |
|
121 |
$resultat_menu = $db->query($requete_menu);
|
121 |
$resultat_menu = $db->query($requete_menu);
|
122 |
(DB::isError($resultat_menu))
|
122 |
(DB::isError($resultat_menu))
|
123 |
? die(BOG_afficherErreurSql(__FILE__, __LINE__, $resultat->getMessage(), $requete))
|
123 |
? die(BOG_afficherErreurSql(__FILE__, __LINE__, $resultat->getMessage(), $requete_menu))
|
124 |
: '';
|
124 |
: '';
|
Line 125... |
Line 125... |
125 |
$info_menu = $resultat_menu->fetchRow(DB_FETCHMODE_OBJECT);
|
125 |
$info_menu = $resultat_menu->fetchRow(DB_FETCHMODE_OBJECT);
|
Line 274... |
Line 274... |
274 |
|
274 |
|
275 |
|
275 |
|
276 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
276 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
- |
|
277 |
*
|
- |
|
278 |
* $Log: not supported by cvs2svn $
|
- |
|
279 |
* Revision 1.4 2005/09/30 07:48:35 ddelon
|
277 |
*
|
280 |
* Projet Wikini
|
278 |
* $Log: not supported by cvs2svn $
|
281 |
*
|
279 |
* Revision 1.3 2005/09/14 09:12:15 ddelon
|
282 |
* Revision 1.3 2005/09/14 09:12:15 ddelon
|
280 |
* Integrateur Wikini et administration des Wikini
|
283 |
* Integrateur Wikini et administration des Wikini
|
281 |
*
|
284 |
*
|