/[openfoncier]/trunk/dyn/shortlinks.inc.php
ViewVC logotype

Diff of /trunk/dyn/shortlinks.inc.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3 by fraynaud, Thu Feb 10 20:46:18 2011 UTC revision 380 by fmichon, Wed Sep 19 06:30:05 2012 UTC
# Line 7  Line 7 
7   * @version SVN : $Id: shortlinks.inc.php 102 2010-09-13 08:42:59Z fmichon $   * @version SVN : $Id: shortlinks.inc.php 102 2010-09-13 08:42:59Z fmichon $
8   */   */
9    
10  /**  //
  * $shortlinks est le tableau associatif qui contient tous les liens presents  
  * dans les raccourcis en dessous des actions  
  *  
  * Caracteristiques :  
  * --- tableau link  
  *     - title [obligatoire]  
  *     - description (texte qui s'affiche au survol de l'element)  
  *     - href [obligatoire] (contenu du lien href)  
  *     - class (classe css qui s'affiche sur l'element)  
  *     - right (droit que l'utilisateur doit avoir pour visionner cet element)  
  *     - target (pour ouvrir le lien dans une nouvelle fenetre)  
  */  
11  $shortlinks = array();  $shortlinks = array();
12    
 // Template  
 /*  
 $link = array(  
     "title" => _(""),  
     "description" => _(""),  
     "href" => "",  
     "target" => "",  
     "class" => "",  
     "right" => "",  
 );  
 array_push($shortlinks, $link);  
 */  
   
13  // Tableau de bord  // Tableau de bord
14  $link = array(  $shortlinks[] = array(
15      "title" => _("Tableau de bord"),      "title" => _("Tableau de bord"),
16      "description" => _("Acceder a la page d'accueil de l'application"),      "description" => _("Acceder a la page d'accueil de l'application"),
17      "href" => "../scr/dashboard.php",      "href" => "../scr/dashboard.php",
18      "class" => "shortlinks-dashboard",      "class" => "shortlinks-dashboard",
19  );  );
 array_push($shortlinks, $link);  
20    
 ?>  
21    ?>

Legend:
Removed from v.3  
changed lines
  Added in v.380

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26