public static function get_label($type)
 {
     global $lang, $include_path;
     global $dbh;
     if (!count(self::$liste_libelle_type)) {
         if (file_exists($include_path . "/interpreter/statopac/{$lang}.xml")) {
             $liste_libelle = new XMLlist($include_path . "/interpreter/statopac/{$lang}.xml");
         } else {
             $liste_libelle = new XMLlist($include_path . "/interpreter/statopac/fr_FR.xml");
         }
         $liste_libelle->analyser();
         self::$liste_libelle_type = $liste_libelle->table;
         $query = "select id_page, page_name from cms_pages";
         $result = pmb_mysql_query($query, $dbh);
         if (pmb_mysql_num_rows($result)) {
             while ($row = pmb_mysql_fetch_object($result)) {
                 self::$liste_libelle_type["25" . str_pad($row->id_page, 2, "0", STR_PAD_LEFT)] = $row->page_name;
             }
         }
     }
     return self::$liste_libelle_type[$type];
 }