Subversion Repositories Applications.projet

Compare Revisions

Ignore whitespace Rev 126 → Rev 127

/trunk/projet.php
19,7 → 19,7
// | License along with this library; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +------------------------------------------------------------------------------------------------------+
// CVS : $Id: projet.php,v 1.11 2006-04-28 12:41:28 florian Exp $
// CVS : $Id: projet.php,v 1.12 2006-07-04 09:35:04 alexandre_tb Exp $
/**
* Application projet
*
31,7 → 31,7
//Autres auteurs :
*@author Aucun
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.11 $
*@version $Revision: 1.12 $
// +------------------------------------------------------------------------------------------------------+
*/
 
44,8 → 44,8
 
// Inclusion des styles selon papyrus
if (function_exists("GEN_stockerStyleExterne")) {
GEN_stockerStyleExterne('projet','client/projet/projet.css') ;
GEN_stockerStyleExterne('projet_arbre','client/projet/arbre.css') ;
if (file_exists('client/projet/projet.css')) GEN_stockerStyleExterne('projet','client/projet/projet.css') ;
if (file_exists('client/projet/arbre.css')) GEN_stockerStyleExterne('projet_arbre','client/projet/arbre.css') ;
}
 
// +------------------------------------------------------------------------------------------------------+
66,10 → 66,7
$_REQUEST[PROJET_VARIABLE_ACTION] = PROJET_ACTION_VOIR_RESUME ;
}
$res = '' ;
if (isset($GLOBALS['_GEN_commun']['info_application']->presentation) &&
(($GLOBALS['_GEN_commun']['info_application']->presentation == 'arbre')
||($GLOBALS['_GEN_commun']['info_application']->presentation == 'liste'
||($GLOBALS['_GEN_commun']['info_application']->presentation == 'tela')))) {
if (isset($GLOBALS['_GEN_commun']['info_application']->presentation)) {
$res .= '<ul class="onglets">';
$GLOBALS['url']->addQueryString(PROJET_VARIABLE_ACTION, PROJET_ACTION_VOIR_RESUME);
$res .= '<li id="projet_resume" class="'.cma(PROJET_ACTION_VOIR_RESUME).'"><a href="'.$GLOBALS['url']->getURL().'">'.PROJET_SYNTHESE.'</a></li>';
118,10 → 115,7
}
// Dans le cas de la présentation par arbre, on met les menus
if (isset($GLOBALS['_GEN_commun']['info_application']->presentation) &&
(($GLOBALS['_GEN_commun']['info_application']->presentation == 'arbre') ||
($GLOBALS['_GEN_commun']['info_application']->presentation == 'liste')
||($GLOBALS['_GEN_commun']['info_application']->presentation == 'tela'))){
if (isset($GLOBALS['_GEN_commun']['info_application']->presentation)){
 
$sortie .= $controleur->menuGeneral() ;
}
228,6 → 222,9
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.11 2006/04/28 12:41:28 florian
* corrections erreurs chemin
*
* Revision 1.10 2005/12/01 16:38:32 alexandre_tb
* ajout de l'action telechargement
*