558 |
public $user_is_tiers = NULL; |
public $user_is_tiers = NULL; |
559 |
var $user_is_admin = NULL; |
var $user_is_admin = NULL; |
560 |
var $user_is_service_ext = NULL; |
var $user_is_service_ext = NULL; |
|
public $user_is_tiers_ext = NULL; |
|
561 |
var $user_is_qualificateur = NULL; |
var $user_is_qualificateur = NULL; |
562 |
var $user_is_chef = NULL; |
var $user_is_chef = NULL; |
563 |
var $user_is_divisionnaire = NULL; |
var $user_is_divisionnaire = NULL; |
564 |
var $user_is_service_int = NULL; |
var $user_is_service_int = NULL; |
|
public $user_is_tiers_int = NULL; |
|
565 |
|
|
566 |
/** |
/** |
567 |
* Méthode de récupération des informations de l'utilisateur connecté. |
* Méthode de récupération des informations de l'utilisateur connecté. |
569 |
function getUserInfos() { |
function getUserInfos() { |
570 |
|
|
571 |
// Si l'utilisateur est loggé $_SESSION existe |
// Si l'utilisateur est loggé $_SESSION existe |
572 |
if(isset($_SESSION['login']) AND !empty($_SESSION['login'])) { |
if(isset($_SESSION['login']) && !empty($_SESSION['login'])) { |
573 |
|
|
574 |
// Récupération des infos utilisateur |
// Récupération des infos utilisateur |
575 |
$qres = $this->get_all_results_from_db_query( |
$qres = $this->get_all_results_from_db_query( |
628 |
$this->user_is_service_int = false; |
$this->user_is_service_int = false; |
629 |
} |
} |
630 |
|
|
|
// TODO : a vérifié parce que je me contente de copier le traitement pour les services |
|
|
// je ne sais pas si ce sera utile ou pas |
|
|
//si c'est un tiers externe |
|
|
if ($resProfil == "TIERS CONSULTÉ") { |
|
|
$this->user_is_tiers_ext = true; |
|
|
} else { |
|
|
$this->user_is_tiers_ext = false; |
|
|
} |
|
|
|
|
|
//si c'est un tiers interne |
|
|
if ($resProfil == "TIERS CONSULTÉ INTERNE") { |
|
|
$this->user_is_tiers_int = true; |
|
|
} else { |
|
|
$this->user_is_tiers_int = false; |
|
|
} |
|
|
|
|
631 |
// si c'est un qualificateur |
// si c'est un qualificateur |
632 |
if ($resProfil == "QUALIFICATEUR") { |
if ($resProfil == "QUALIFICATEUR") { |
633 |
$this->user_is_qualificateur = true; |
$this->user_is_qualificateur = true; |
756 |
* getter user_is_service |
* getter user_is_service |
757 |
*/ |
*/ |
758 |
function isUserService() { |
function isUserService() { |
|
// |
|
759 |
if (is_null($this->user_is_service)) { |
if (is_null($this->user_is_service)) { |
|
// |
|
760 |
$this->getUserInfos(); |
$this->getUserInfos(); |
761 |
} |
} |
|
// |
|
762 |
return $this->user_is_service; |
return $this->user_is_service; |
763 |
} |
} |
764 |
|
|
766 |
* getter user_is_tiers |
* getter user_is_tiers |
767 |
*/ |
*/ |
768 |
function isUserTiers() { |
function isUserTiers() { |
|
// |
|
769 |
if (is_null($this->user_is_tiers)) { |
if (is_null($this->user_is_tiers)) { |
|
// |
|
770 |
$this->getUserInfos(); |
$this->getUserInfos(); |
771 |
} |
} |
|
// |
|
772 |
return $this->user_is_tiers; |
return $this->user_is_tiers; |
773 |
} |
} |
774 |
|
|
776 |
* getter user_is_instr |
* getter user_is_instr |
777 |
*/ |
*/ |
778 |
function isUserInstructeur() { |
function isUserInstructeur() { |
|
// |
|
779 |
if (is_null($this->user_is_instr)) { |
if (is_null($this->user_is_instr)) { |
|
// |
|
780 |
$this->getUserInfos(); |
$this->getUserInfos(); |
781 |
} |
} |
|
// |
|
782 |
return $this->user_is_instr; |
return $this->user_is_instr; |
783 |
} |
} |
784 |
|
|
785 |
function isUserAdministrateur() { |
function isUserAdministrateur() { |
|
// |
|
786 |
if (is_null($this->user_is_admin)) { |
if (is_null($this->user_is_admin)) { |
|
// |
|
787 |
$this->getUserInfos(); |
$this->getUserInfos(); |
788 |
} |
} |
|
// |
|
789 |
return $this->user_is_admin; |
return $this->user_is_admin; |
790 |
} |
} |
791 |
|
|
793 |
* getter user_is_service_ext |
* getter user_is_service_ext |
794 |
*/ |
*/ |
795 |
function isUserServiceExt() { |
function isUserServiceExt() { |
|
// |
|
796 |
if (is_null($this->user_is_service_ext)) { |
if (is_null($this->user_is_service_ext)) { |
|
// |
|
797 |
$this->getUserInfos(); |
$this->getUserInfos(); |
798 |
} |
} |
|
// |
|
799 |
return $this->user_is_service_ext; |
return $this->user_is_service_ext; |
800 |
} |
} |
801 |
|
|
803 |
* getter user_is_service_int |
* getter user_is_service_int |
804 |
*/ |
*/ |
805 |
function isUserServiceInt() { |
function isUserServiceInt() { |
|
// |
|
806 |
if (is_null($this->user_is_service_int)) { |
if (is_null($this->user_is_service_int)) { |
|
// |
|
807 |
$this->getUserInfos(); |
$this->getUserInfos(); |
808 |
} |
} |
|
// |
|
809 |
return $this->user_is_service_int; |
return $this->user_is_service_int; |
810 |
} |
} |
811 |
|
|
813 |
* getter user_is_qualificateur |
* getter user_is_qualificateur |
814 |
*/ |
*/ |
815 |
function isUserQualificateur() { |
function isUserQualificateur() { |
|
// |
|
816 |
if (is_null($this->user_is_qualificateur)) { |
if (is_null($this->user_is_qualificateur)) { |
|
// |
|
817 |
$this->getUserInfos(); |
$this->getUserInfos(); |
818 |
} |
} |
|
// |
|
819 |
return $this->user_is_qualificateur; |
return $this->user_is_qualificateur; |
820 |
} |
} |
821 |
|
|
823 |
* getter user_is_chef |
* getter user_is_chef |
824 |
*/ |
*/ |
825 |
function isUserChef() { |
function isUserChef() { |
|
// |
|
826 |
if (is_null($this->user_is_chef)) { |
if (is_null($this->user_is_chef)) { |
|
// |
|
827 |
$this->getUserInfos(); |
$this->getUserInfos(); |
828 |
} |
} |
|
// |
|
829 |
return $this->user_is_chef; |
return $this->user_is_chef; |
830 |
} |
} |
831 |
|
|
833 |
* getter user_is_divisionnaire |
* getter user_is_divisionnaire |
834 |
*/ |
*/ |
835 |
function isUserDivisionnaire() { |
function isUserDivisionnaire() { |
|
// |
|
836 |
if (is_null($this->user_is_divisionnaire)) { |
if (is_null($this->user_is_divisionnaire)) { |
|
// |
|
837 |
$this->getUserInfos(); |
$this->getUserInfos(); |
838 |
} |
} |
|
// |
|
839 |
return $this->user_is_divisionnaire; |
return $this->user_is_divisionnaire; |
840 |
} |
} |
841 |
|
|
865 |
// Si il n'est pas dans la même division on défini le retour comme faux |
// Si il n'est pas dans la même division on défini le retour comme faux |
866 |
// à moins qu'il ai un droit de changement de decision |
// à moins qu'il ai un droit de changement de decision |
867 |
if($this->isUserInstructeur() === true && |
if($this->isUserInstructeur() === true && |
868 |
($object_instance->getDivisionFromDossier($idx) == $_SESSION["division"] or |
($object_instance->getDivisionFromDossier($idx) == $_SESSION["division"] || |
869 |
($obj == "instruction" && |
($obj == "instruction" && |
870 |
$object_instance->isInstrCanChangeDecision($idx) === true))) { |
$object_instance->isInstrCanChangeDecision($idx) === true))) { |
871 |
|
|
1354 |
$this->layout->display__form_container__end(); |
$this->layout->display__form_container__end(); |
1355 |
|
|
1356 |
// Ajout du lien de redefinition de mot de passe |
// Ajout du lien de redefinition de mot de passe |
1357 |
if (isset($this->config['password_reset']) and $this->config['password_reset'] == true) { |
if (isset($this->config['password_reset']) && $this->config['password_reset'] == true) { |
1358 |
$html .= "\n\t<p class=\"link-password-reset\">\n"; |
$html .= "\n\t<p class=\"link-password-reset\">\n"; |
1359 |
$html .= "\t\t<a href=\"".OM_ROUTE_PASSWORD_RESET."\">"; |
$html .= "\t\t<a href=\"".OM_ROUTE_PASSWORD_RESET."\">"; |
1360 |
$html .= __("Mot de passe oublie ?"); |
$html .= __("Mot de passe oublie ?"); |
1563 |
function notExistsError ($explanation = NULL) { |
function notExistsError ($explanation = NULL) { |
1564 |
// message |
// message |
1565 |
$message_class = "error"; |
$message_class = "error"; |
1566 |
$message = _("Cette page n'existe pas."); |
$message = __("Cette page n'existe pas."); |
1567 |
$this->addToMessage ($message_class, $message); |
$this->addToMessage ($message_class, $message); |
1568 |
// |
// |
1569 |
$this->setFlag(NULL); |
$this->setFlag(NULL); |
1627 |
$date_show = explode ('/', $date[0]); |
$date_show = explode ('/', $date[0]); |
1628 |
|
|
1629 |
// Contrôle la composition de la date |
// Contrôle la composition de la date |
1630 |
if (count ($date_db) != 3 and count ($date_show) != 3) { |
if (count ($date_db) != 3 && count ($date_show) != 3) { |
1631 |
return false; |
return false; |
1632 |
} |
} |
1633 |
|
|
1763 |
$parc["quartier"] = $quartier; |
$parc["quartier"] = $quartier; |
1764 |
// Met en majuscule si besoin |
// Met en majuscule si besoin |
1765 |
$parc["section"] = strtoupper($sect); |
$parc["section"] = strtoupper($sect); |
1766 |
if( $ancien_ref_parc == "" OR $reference_tab[$i-1] == "/") { |
if( $ancien_ref_parc == "" || $reference_tab[$i-1] == "/") { |
1767 |
// 1ere parcelle ou parcelle individuelle |
// 1ere parcelle ou parcelle individuelle |
1768 |
// Compléte par des "0" le début de la chaîne si besoin |
// Compléte par des "0" le début de la chaîne si besoin |
1769 |
$parc["parcelle"] = str_pad($reference_tab[$i], 4, "0", STR_PAD_LEFT); |
$parc["parcelle"] = str_pad($reference_tab[$i], 4, "0", STR_PAD_LEFT); |
1949 |
return array(true, null); |
return array(true, null); |
1950 |
} else { |
} else { |
1951 |
// Message d'erreur |
// Message d'erreur |
1952 |
$error_msg = _("La valeur %s du champ %s est invalide, 'NULL' losque est utilisé doit être la seule valeur du champ."); |
$error_msg = __("La valeur %s du champ %s est invalide, 'NULL' losque est utilisé doit être la seule valeur du champ."); |
1953 |
return array( |
return array( |
1954 |
false, |
false, |
1955 |
sprintf( |
sprintf( |
1956 |
$error_msg, |
$error_msg, |
1957 |
'<b>'.$rule.'</b>', |
'<b>'.$rule.'</b>', |
1958 |
'<b>'._($rule_name).'</b>' |
'<b>'.__($rule_name).'</b>' |
1959 |
) |
) |
1960 |
); |
); |
1961 |
} |
} |
1986 |
return array(true, null); |
return array(true, null); |
1987 |
} else { |
} else { |
1988 |
// Message d'erreur |
// Message d'erreur |
1989 |
$error_msg = _("La valeur %s du champ %s, n'est pas une chaine 'x mois' ou 'x jours' valide."); |
$error_msg = __("La valeur %s du champ %s, n'est pas une chaine 'x mois' ou 'x jours' valide."); |
1990 |
return array( |
return array( |
1991 |
false, |
false, |
1992 |
sprintf( |
sprintf( |
1993 |
$error_msg, |
$error_msg, |
1994 |
'<b>'.$operand.'</b>', |
'<b>'.$operand.'</b>', |
1995 |
'<b>'._($rule_name).'</b>' |
'<b>'.__($rule_name).'</b>' |
1996 |
) |
) |
1997 |
); |
); |
1998 |
} |
} |
2188 |
$clone_obj_id = $clone_obj->valF[$obj]; |
$clone_obj_id = $clone_obj->valF[$obj]; |
2189 |
|
|
2190 |
// Message |
// Message |
2191 |
$message .= sprintf(_("La copie de l'enregistrement %s avec l'identifiant %s s'est effectuee avec succes"), "<span class='bold'>"._($obj)."</span>", "<span class='bold'>".$idx."</span>")."<br />"; |
$message .= sprintf(__("La copie de l'enregistrement %s avec l'identifiant %s s'est effectuee avec succes"), "<span class='bold'>".__($obj)."</span>", "<span class='bold'>".$idx."</span>")."<br />"; |
2192 |
$message .= sprintf( |
$message .= sprintf( |
2193 |
'<a class="om-prev-icon" id="action-link--copy-of-%s-%s" href="%s">%s</a><br/><br/>', |
'<a class="om-prev-icon" id="action-link--copy-of-%s-%s" href="%s">%s</a><br/><br/>', |
2194 |
$obj, |
$obj, |
2265 |
|
|
2266 |
// Message |
// Message |
2267 |
$message .= sprintf( |
$message .= sprintf( |
2268 |
_("La copie de l'enregistrement %s avec l'identifiant %s s'est effectuee avec succes"), |
__("La copie de l'enregistrement %s avec l'identifiant %s s'est effectuee avec succes"), |
2269 |
"<span class='bold'>"._($objsf)."</span>", |
"<span class='bold'>".__($objsf)."</span>", |
2270 |
"<span class='bold'>".$idxsf."</span>" |
"<span class='bold'>".$idxsf."</span>" |
2271 |
)."<br />"; |
)."<br />"; |
2272 |
|
|
3868 |
*/ |
*/ |
3869 |
public function can_user_access_dossiers_confidentiels_from_groupe($groupe) { |
public function can_user_access_dossiers_confidentiels_from_groupe($groupe) { |
3870 |
if ((isset($_SESSION['groupe'][$groupe]['confidentiel']) === true |
if ((isset($_SESSION['groupe'][$groupe]['confidentiel']) === true |
3871 |
AND $_SESSION['groupe'][$groupe]['confidentiel'] === true) |
&& $_SESSION['groupe'][$groupe]['confidentiel'] === true) |
3872 |
|| array_key_exists("bypass", $_SESSION['groupe']) === true) { |
|| array_key_exists("bypass", $_SESSION['groupe']) === true) { |
3873 |
return true; |
return true; |
3874 |
} |
} |
4056 |
$footer[] = array( |
$footer[] = array( |
4057 |
"title" => __("Documentation"), |
"title" => __("Documentation"), |
4058 |
"description" => __("Acceder a l'espace documentation de l'application"), |
"description" => __("Acceder a l'espace documentation de l'application"), |
4059 |
"href" => "http://docs.openmairie.org/?project=openads&version=6.7&format=html&path=manuel_utilisateur", |
"href" => "http://docs.openmairie.org/?project=openads&version=6.8&format=html&path=manuel_utilisateur", |
4060 |
"target" => "_blank", |
"target" => "_blank", |
4061 |
"class" => "footer-documentation", |
"class" => "footer-documentation", |
4062 |
); |
); |
4095 |
$links[] = array( |
$links[] = array( |
4096 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_autorisation", |
"href" => "".OM_ROUTE_TAB."&obj=dossier_autorisation", |
4097 |
"class" => "dossier_autorisation", |
"class" => "dossier_autorisation", |
4098 |
"title" => _("Dossiers d'autorisation"), |
"title" => __("Dossiers d'autorisation"), |
4099 |
"right" => array("dossier_autorisation", "dossier_autorisation_tab", ), |
"right" => array("dossier_autorisation", "dossier_autorisation_tab", ), |
4100 |
"open" => array("index.php|dossier_autorisation[module=tab]", "index.php|dossier_autorisation[module=form]", ), |
"open" => array("index.php|dossier_autorisation[module=tab]", "index.php|dossier_autorisation[module=form]", ), |
4101 |
); |
); |
4104 |
$links[] = array( |
$links[] = array( |
4105 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_autorisation_avis", |
"href" => "".OM_ROUTE_TAB."&obj=dossier_autorisation_avis", |
4106 |
"class" => "dossier_autorisation", |
"class" => "dossier_autorisation", |
4107 |
"title" => _("Dossiers d'autorisation"), |
"title" => __("Dossiers d'autorisation"), |
4108 |
"right" => array( |
"right" => array( |
4109 |
"dossier_autorisation_avis", |
"dossier_autorisation_avis", |
4110 |
"dossier_autorisation_avis_tab", |
"dossier_autorisation_avis_tab", |
4121 |
// {{{ Rubrique GUICHET UNIQUE |
// {{{ Rubrique GUICHET UNIQUE |
4122 |
// |
// |
4123 |
$rubrik = array( |
$rubrik = array( |
4124 |
"title" => _("Guichet Unique"), |
"title" => __("Guichet Unique"), |
4125 |
"class" => "guichet_unique", |
"class" => "guichet_unique", |
4126 |
"right" => "menu_guichet_unique", |
"right" => "menu_guichet_unique", |
4127 |
); |
); |
4131 |
$links[] = array( |
$links[] = array( |
4132 |
"href" => OM_ROUTE_DASHBOARD, |
"href" => OM_ROUTE_DASHBOARD, |
4133 |
"class" => "tableau-de-bord", |
"class" => "tableau-de-bord", |
4134 |
"title" => _("tableau de bord"), |
"title" => __("tableau de bord"), |
4135 |
"right" => "menu_guichet_unique_dashboard", |
"right" => "menu_guichet_unique_dashboard", |
4136 |
"open" => array("index.php|[module=dashboard]",), |
"open" => array("index.php|[module=dashboard]",), |
4137 |
); |
); |
4138 |
// |
// |
4139 |
$links[] = array( |
$links[] = array( |
4140 |
"class" => "category", |
"class" => "category", |
4141 |
"title" => _("nouvelle demande"), |
"title" => __("nouvelle demande"), |
4142 |
"right" => array( |
"right" => array( |
4143 |
"demande", |
"demande", |
4144 |
"demande_nouveau_dossier_ajouter", |
"demande_nouveau_dossier_ajouter", |
4158 |
$links[] = array( |
$links[] = array( |
4159 |
"href" => "".OM_ROUTE_FORM."&obj=demande_nouveau_dossier&action=0&advs_id=&tricol=&valide=&retour=tab&new=", |
"href" => "".OM_ROUTE_FORM."&obj=demande_nouveau_dossier&action=0&advs_id=&tricol=&valide=&retour=tab&new=", |
4160 |
"class" => "nouveau-dossier", |
"class" => "nouveau-dossier", |
4161 |
"title" => _("nouveau dossier"), |
"title" => __("nouveau dossier"), |
4162 |
"right" => array( |
"right" => array( |
4163 |
"demande", |
"demande", |
4164 |
"demande_nouveau_dossier_ajouter", |
"demande_nouveau_dossier_ajouter", |
4168 |
$links[] = array( |
$links[] = array( |
4169 |
"href" => "".OM_ROUTE_TAB."&obj=demande_dossier_encours", |
"href" => "".OM_ROUTE_TAB."&obj=demande_dossier_encours", |
4170 |
"class" => "dossier-existant", |
"class" => "dossier-existant", |
4171 |
"title" => _("dossier en cours"), |
"title" => __("dossier en cours"), |
4172 |
"right" => array( |
"right" => array( |
4173 |
"demande", |
"demande", |
4174 |
"demande_dossier_encours_ajouter", |
"demande_dossier_encours_ajouter", |
4179 |
$links[] = array( |
$links[] = array( |
4180 |
"href" => "".OM_ROUTE_TAB."&obj=demande_autre_dossier", |
"href" => "".OM_ROUTE_TAB."&obj=demande_autre_dossier", |
4181 |
"class" => "autre-dossier", |
"class" => "autre-dossier", |
4182 |
"title" => _("autre dossier"), |
"title" => __("autre dossier"), |
4183 |
"right" => array( |
"right" => array( |
4184 |
"demande", |
"demande", |
4185 |
"demande_autre_dossier_ajouter", |
"demande_autre_dossier_ajouter", |
4198 |
$links[] = array( |
$links[] = array( |
4199 |
"href" => "".OM_ROUTE_TAB."&obj=demande", |
"href" => "".OM_ROUTE_TAB."&obj=demande", |
4200 |
"class" => "pdf", |
"class" => "pdf", |
4201 |
"title" => _("recepisse"), |
"title" => __("recepisse"), |
4202 |
"right" => array( |
"right" => array( |
4203 |
"demande", |
"demande", |
4204 |
"demande_consulter", |
"demande_consulter", |
4217 |
$links[] = array( |
$links[] = array( |
4218 |
"href" => "".OM_ROUTE_TAB."&obj=petitionnaire_frequent", |
"href" => "".OM_ROUTE_TAB."&obj=petitionnaire_frequent", |
4219 |
"class" => "petitionnaire_frequent", |
"class" => "petitionnaire_frequent", |
4220 |
"title" => _("petitionnaire_frequent"), |
"title" => __("petitionnaire_frequent"), |
4221 |
"right" => array( |
"right" => array( |
4222 |
"petitionnaire_frequent", |
"petitionnaire_frequent", |
4223 |
"petitionnaire_frequent_consulter", |
"petitionnaire_frequent_consulter", |
4228 |
// |
// |
4229 |
$links[] = array( |
$links[] = array( |
4230 |
"class" => "category", |
"class" => "category", |
4231 |
"title" => _("affichage reglementaire"), |
"title" => __("affichage reglementaire"), |
4232 |
"right" => array( |
"right" => array( |
4233 |
"affichage_reglementaire_registre", |
"affichage_reglementaire_registre", |
4234 |
"affichage_reglementaire_attestation", |
"affichage_reglementaire_attestation", |
4244 |
$links[] = array( |
$links[] = array( |
4245 |
"href" => "".OM_ROUTE_FORM."&obj=demande_affichage_reglementaire_registre&action=110&idx=0", |
"href" => "".OM_ROUTE_FORM."&obj=demande_affichage_reglementaire_registre&action=110&idx=0", |
4246 |
"class" => "affichage_reglementaire_registre", |
"class" => "affichage_reglementaire_registre", |
4247 |
"title" => _("registre"), |
"title" => __("registre"), |
4248 |
"right" => array( |
"right" => array( |
4249 |
"affichage_reglementaire_registre", |
"affichage_reglementaire_registre", |
4250 |
), |
), |
4253 |
$links[] = array( |
$links[] = array( |
4254 |
"href" => "".OM_ROUTE_FORM."&obj=demande_affichage_reglementaire_attestation&action=120&idx=0", |
"href" => "".OM_ROUTE_FORM."&obj=demande_affichage_reglementaire_attestation&action=120&idx=0", |
4255 |
"class" => "affichage_reglementaire_attestation", |
"class" => "affichage_reglementaire_attestation", |
4256 |
"title" => _("attestation"), |
"title" => __("attestation"), |
4257 |
"right" => array( |
"right" => array( |
4258 |
"affichage_reglementaire_attestation", |
"affichage_reglementaire_attestation", |
4259 |
), |
), |
4268 |
// {{{ Rubrique QUALIFICATION |
// {{{ Rubrique QUALIFICATION |
4269 |
// |
// |
4270 |
$rubrik = array( |
$rubrik = array( |
4271 |
"title" => _("Qualification"), |
"title" => __("Qualification"), |
4272 |
"class" => "qualification", |
"class" => "qualification", |
4273 |
"right" => "qualification_menu", |
"right" => "qualification_menu", |
4274 |
); |
); |
4278 |
$links[] = array( |
$links[] = array( |
4279 |
"href" => OM_ROUTE_DASHBOARD, |
"href" => OM_ROUTE_DASHBOARD, |
4280 |
"class" => "tableau-de-bord", |
"class" => "tableau-de-bord", |
4281 |
"title" => _("tableau de bord"), |
"title" => __("tableau de bord"), |
4282 |
"right" => "menu_qualification_dashboard", |
"right" => "menu_qualification_dashboard", |
4283 |
"open" => array("index.php|[module=dashboard]",), |
"open" => array("index.php|[module=dashboard]",), |
4284 |
); |
); |
4287 |
$links[] = array( |
$links[] = array( |
4288 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_qualifier_qualificateur", |
"href" => "".OM_ROUTE_TAB."&obj=dossier_qualifier_qualificateur", |
4289 |
"class" => "dossier_qualifier_qualificateur", |
"class" => "dossier_qualifier_qualificateur", |
4290 |
"title" => _("dossiers a qualifier"), |
"title" => __("dossiers a qualifier"), |
4291 |
"right" => array( |
"right" => array( |
4292 |
"dossier_qualifier_qualificateur", |
"dossier_qualifier_qualificateur", |
4293 |
"dossier_qualifier_qualificateur_tab", |
"dossier_qualifier_qualificateur_tab", |
4304 |
// {{{ Rubrique INSTRUCTION |
// {{{ Rubrique INSTRUCTION |
4305 |
// |
// |
4306 |
$rubrik = array( |
$rubrik = array( |
4307 |
"title" => _("instruction"), |
"title" => __("instruction"), |
4308 |
"class" => "instruction", |
"class" => "instruction", |
4309 |
"right" => "menu_instruction", |
"right" => "menu_instruction", |
4310 |
); |
); |
4314 |
$links[] = array( |
$links[] = array( |
4315 |
"href" => OM_ROUTE_DASHBOARD, |
"href" => OM_ROUTE_DASHBOARD, |
4316 |
"class" => "tableau-de-bord", |
"class" => "tableau-de-bord", |
4317 |
"title" => _("tableau de bord"), |
"title" => __("tableau de bord"), |
4318 |
"right" => "menu_instruction_dashboard", |
"right" => "menu_instruction_dashboard", |
4319 |
"open" => array("index.php|[module=dashboard]",), |
"open" => array("index.php|[module=dashboard]",), |
4320 |
); |
); |
4321 |
// Catégorie DOSSIERS D'INSTRUCTION |
// Catégorie DOSSIERS D'INSTRUCTION |
4322 |
$links[] = array( |
$links[] = array( |
4323 |
"class" => "category", |
"class" => "category", |
4324 |
"title" => _("dossiers d'instruction"), |
"title" => __("dossiers d'instruction"), |
4325 |
"right" => array( |
"right" => array( |
4326 |
"dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab", |
"dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab", |
4327 |
"dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab", |
"dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab", |
4342 |
$links[] = array( |
$links[] = array( |
4343 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_instruction_mes_encours", |
"href" => "".OM_ROUTE_TAB."&obj=dossier_instruction_mes_encours", |
4344 |
"class" => "dossier_instruction_mes_encours", |
"class" => "dossier_instruction_mes_encours", |
4345 |
"title" => _("mes encours"), |
"title" => __("mes encours"), |
4346 |
"right" => array("dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab", ), |
"right" => array("dossier_instruction_mes_encours", "dossier_instruction_mes_encours_tab", ), |
4347 |
"open" => array("index.php|dossier_instruction_mes_encours[module=tab]", "index.php|dossier_instruction_mes_encours[module=form]", ), |
"open" => array("index.php|dossier_instruction_mes_encours[module=tab]", "index.php|dossier_instruction_mes_encours[module=form]", ), |
4348 |
); |
); |
4350 |
$links[] = array( |
$links[] = array( |
4351 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_instruction_tous_encours", |
"href" => "".OM_ROUTE_TAB."&obj=dossier_instruction_tous_encours", |
4352 |
"class" => "dossier_instruction_tous_encours", |
"class" => "dossier_instruction_tous_encours", |
4353 |
"title" => _("tous les encours"), |
"title" => __("tous les encours"), |
4354 |
"right" => array("dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab", ), |
"right" => array("dossier_instruction_tous_encours", "dossier_instruction_tous_encours_tab", ), |
4355 |
"open" => array("index.php|dossier_instruction_tous_encours[module=tab]", "index.php|dossier_instruction_tous_encours[module=form]", ), |
"open" => array("index.php|dossier_instruction_tous_encours[module=tab]", "index.php|dossier_instruction_tous_encours[module=form]", ), |
4356 |
); |
); |
4366 |
$links[] = array( |
$links[] = array( |
4367 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_instruction_mes_clotures", |
"href" => "".OM_ROUTE_TAB."&obj=dossier_instruction_mes_clotures", |
4368 |
"class" => "dossier_instruction_mes_clotures", |
"class" => "dossier_instruction_mes_clotures", |
4369 |
"title" => _("mes clotures"), |
"title" => __("mes clotures"), |
4370 |
"right" => array("dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab", ), |
"right" => array("dossier_instruction_mes_clotures", "dossier_instruction_mes_clotures_tab", ), |
4371 |
"open" => array("index.php|dossier_instruction_mes_clotures[module=tab]", "index.php|dossier_instruction_mes_clotures[module=form]", ), |
"open" => array("index.php|dossier_instruction_mes_clotures[module=tab]", "index.php|dossier_instruction_mes_clotures[module=form]", ), |
4372 |
); |
); |
4374 |
$links[] = array( |
$links[] = array( |
4375 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_instruction_tous_clotures", |
"href" => "".OM_ROUTE_TAB."&obj=dossier_instruction_tous_clotures", |
4376 |
"class" => "dossier_instruction_tous_clotures", |
"class" => "dossier_instruction_tous_clotures", |
4377 |
"title" => _("tous les clotures"), |
"title" => __("tous les clotures"), |
4378 |
"right" => array("dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab", ), |
"right" => array("dossier_instruction_tous_clotures", "dossier_instruction_tous_clotures_tab", ), |
4379 |
"open" => array("index.php|dossier_instruction_tous_clotures[module=tab]", "index.php|dossier_instruction_tous_clotures[module=form]", ), |
"open" => array("index.php|dossier_instruction_tous_clotures[module=tab]", "index.php|dossier_instruction_tous_clotures[module=form]", ), |
4380 |
); |
); |
4389 |
$links[] = array( |
$links[] = array( |
4390 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_instruction", |
"href" => "".OM_ROUTE_TAB."&obj=dossier_instruction", |
4391 |
"class" => "dossier_instruction_recherche", |
"class" => "dossier_instruction_recherche", |
4392 |
"title" => _("recherche"), |
"title" => __("recherche"), |
4393 |
"right" => array("dossier_instruction", "dossier_instruction_tab", ), |
"right" => array("dossier_instruction", "dossier_instruction_tab", ), |
4394 |
"open" => array("index.php|dossier_instruction[module=tab]", "index.php|dossier_instruction[module=form]", ), |
"open" => array("index.php|dossier_instruction[module=tab]", "index.php|dossier_instruction[module=form]", ), |
4395 |
); |
); |
4397 |
// Catégorier Qualification |
// Catégorier Qualification |
4398 |
$links[] = array( |
$links[] = array( |
4399 |
"class" => "category", |
"class" => "category", |
4400 |
"title" => _("qualification"), |
"title" => __("qualification"), |
4401 |
"right" => array("dossier_qualifier", "architecte_frequent",), |
"right" => array("dossier_qualifier", "architecte_frequent",), |
4402 |
); |
); |
4403 |
// |
// |
4409 |
$links[] = array( |
$links[] = array( |
4410 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_qualifier", |
"href" => "".OM_ROUTE_TAB."&obj=dossier_qualifier", |
4411 |
"class" => "dossier_qualifier", |
"class" => "dossier_qualifier", |
4412 |
"title" => _("dossiers a qualifier"), |
"title" => __("dossiers a qualifier"), |
4413 |
"right" => array("dossier_qualifier", "dossier_qualifier_tab", ), |
"right" => array("dossier_qualifier", "dossier_qualifier_tab", ), |
4414 |
"open" => array("index.php|dossier_qualifier[module=tab]", "index.php|dossier_qualifier[module=form]", ), |
"open" => array("index.php|dossier_qualifier[module=tab]", "index.php|dossier_qualifier[module=form]", ), |
4415 |
); |
); |
4417 |
$links[] = array( |
$links[] = array( |
4418 |
"href" => "".OM_ROUTE_TAB."&obj=architecte_frequent", |
"href" => "".OM_ROUTE_TAB."&obj=architecte_frequent", |
4419 |
"class" => "architecte_frequent", |
"class" => "architecte_frequent", |
4420 |
"title" => _("architecte_frequent"), |
"title" => __("architecte_frequent"), |
4421 |
"right" => array("architecte_frequent", "architecte_frequent_tab", ), |
"right" => array("architecte_frequent", "architecte_frequent_tab", ), |
4422 |
"open" => array("index.php|architecte_frequent[module=tab]", "index.php|architecte_frequent[module=form]", ), |
"open" => array("index.php|architecte_frequent[module=tab]", "index.php|architecte_frequent[module=form]", ), |
4423 |
); |
); |
4424 |
// Catégorie CONSULTATIONS |
// Catégorie CONSULTATIONS |
4425 |
$links[] = array( |
$links[] = array( |
4426 |
"class" => "category", |
"class" => "category", |
4427 |
"title" => _("consultations"), |
"title" => __("consultations"), |
4428 |
"right" => array( |
"right" => array( |
4429 |
"consultation", |
"consultation", |
4430 |
"consultation_mes_retours", |
"consultation_mes_retours", |
4444 |
$links[] = array( |
$links[] = array( |
4445 |
"href" => "".OM_ROUTE_TAB."&obj=consultation_mes_retours", |
"href" => "".OM_ROUTE_TAB."&obj=consultation_mes_retours", |
4446 |
"class" => "consultation_mes_retours", |
"class" => "consultation_mes_retours", |
4447 |
"title" => _("Mes retours"), |
"title" => __("Mes retours"), |
4448 |
"right" => array( |
"right" => array( |
4449 |
"consultation", |
"consultation", |
4450 |
"consultation_mes_retours", |
"consultation_mes_retours", |
4455 |
$links[] = array( |
$links[] = array( |
4456 |
"href" => "".OM_ROUTE_TAB."&obj=consultation_retours_ma_division", |
"href" => "".OM_ROUTE_TAB."&obj=consultation_retours_ma_division", |
4457 |
"class" => "consultation_retours_ma_division", |
"class" => "consultation_retours_ma_division", |
4458 |
"title" => _("Retours de ma division"), |
"title" => __("Retours de ma division"), |
4459 |
"right" => array( |
"right" => array( |
4460 |
"consultation", |
"consultation", |
4461 |
"consultation_retours_ma_division", |
"consultation_retours_ma_division", |
4466 |
$links[] = array( |
$links[] = array( |
4467 |
"href" => "".OM_ROUTE_TAB."&obj=consultation_tous_retours", |
"href" => "".OM_ROUTE_TAB."&obj=consultation_tous_retours", |
4468 |
"class" => "consultation_tous_retours", |
"class" => "consultation_tous_retours", |
4469 |
"title" => _("Tous les retours"), |
"title" => __("Tous les retours"), |
4470 |
"right" => array( |
"right" => array( |
4471 |
"consultation_tous_retours", |
"consultation_tous_retours", |
4472 |
"consultation_tous_retours_tab", |
"consultation_tous_retours_tab", |
4476 |
// Catégorie MESSAGES |
// Catégorie MESSAGES |
4477 |
$links[] = array( |
$links[] = array( |
4478 |
"class" => "category", |
"class" => "category", |
4479 |
"title" => _("Messages"), |
"title" => __("Messages"), |
4480 |
"right" => array( |
"right" => array( |
4481 |
"messages", |
"messages", |
4482 |
"messages_mes_retours", |
"messages_mes_retours", |
4498 |
$links[] = array( |
$links[] = array( |
4499 |
"href" => "".OM_ROUTE_TAB."&obj=messages_mes_retours", |
"href" => "".OM_ROUTE_TAB."&obj=messages_mes_retours", |
4500 |
"class" => "messages_mes_retours", |
"class" => "messages_mes_retours", |
4501 |
"title" => _("Mes messages"), |
"title" => __("Mes messages"), |
4502 |
"right" => array( |
"right" => array( |
4503 |
"messages", |
"messages", |
4504 |
"messages_mes_retours", |
"messages_mes_retours", |
4510 |
$links[] = array( |
$links[] = array( |
4511 |
"href" => "".OM_ROUTE_TAB."&obj=messages_retours_ma_division", |
"href" => "".OM_ROUTE_TAB."&obj=messages_retours_ma_division", |
4512 |
"class" => "messages_retours_ma_division", |
"class" => "messages_retours_ma_division", |
4513 |
"title" => _("Messages de ma division"), |
"title" => __("Messages de ma division"), |
4514 |
"right" => array( |
"right" => array( |
4515 |
"messages", |
"messages", |
4516 |
"messages_retours_ma_division", |
"messages_retours_ma_division", |
4522 |
$links[] = array( |
$links[] = array( |
4523 |
"href" => "".OM_ROUTE_TAB."&obj=messages_tous_retours", |
"href" => "".OM_ROUTE_TAB."&obj=messages_tous_retours", |
4524 |
"class" => "messages_tous_retours", |
"class" => "messages_tous_retours", |
4525 |
"title" => _("Tous les messages"), |
"title" => __("Tous les messages"), |
4526 |
"right" => array( |
"right" => array( |
4527 |
"messages", |
"messages", |
4528 |
"messages_tous_retours", |
"messages_tous_retours", |
4533 |
// Catégorie COMMISSIONS |
// Catégorie COMMISSIONS |
4534 |
$links[] = array( |
$links[] = array( |
4535 |
"class" => "category", |
"class" => "category", |
4536 |
"title" => _("commissions"), |
"title" => __("commissions"), |
4537 |
"right" => array( |
"right" => array( |
4538 |
"commission_mes_retours", |
"commission_mes_retours", |
4539 |
"commission_mes_retours_tab", |
"commission_mes_retours_tab", |
4557 |
$links[] = array( |
$links[] = array( |
4558 |
"href" => "".OM_ROUTE_TAB."&obj=commission_mes_retours", |
"href" => "".OM_ROUTE_TAB."&obj=commission_mes_retours", |
4559 |
"class" => "commission_mes_retours", |
"class" => "commission_mes_retours", |
4560 |
"title" => _("Mes retours"), |
"title" => __("Mes retours"), |
4561 |
"right" => array( |
"right" => array( |
4562 |
"commission_mes_retours", |
"commission_mes_retours", |
4563 |
"commission_mes_retours_tab", |
"commission_mes_retours_tab", |
4567 |
$links[] = array( |
$links[] = array( |
4568 |
"href" => "".OM_ROUTE_TAB."&obj=commission_retours_ma_division", |
"href" => "".OM_ROUTE_TAB."&obj=commission_retours_ma_division", |
4569 |
"class" => "commission_retours_ma_division", |
"class" => "commission_retours_ma_division", |
4570 |
"title" => _("Retours de ma division"), |
"title" => __("Retours de ma division"), |
4571 |
"right" => array( |
"right" => array( |
4572 |
"commission_retours_ma_division", |
"commission_retours_ma_division", |
4573 |
"commission_retours_ma_division_tab", |
"commission_retours_ma_division_tab", |
4577 |
$links[] = array( |
$links[] = array( |
4578 |
"href" => "".OM_ROUTE_TAB."&obj=commission_tous_retours", |
"href" => "".OM_ROUTE_TAB."&obj=commission_tous_retours", |
4579 |
"class" => "commission_tous_retours", |
"class" => "commission_tous_retours", |
4580 |
"title" => _("Tous les retours"), |
"title" => __("Tous les retours"), |
4581 |
"right" => array( |
"right" => array( |
4582 |
"commission_tous_retours", |
"commission_tous_retours", |
4583 |
"commission_tous_retours_tab", |
"commission_tous_retours_tab", |
4594 |
// {{{ Rubrique Contentieux |
// {{{ Rubrique Contentieux |
4595 |
// |
// |
4596 |
$rubrik = array( |
$rubrik = array( |
4597 |
"title" => _("Contentieux"), |
"title" => __("Contentieux"), |
4598 |
"class" => "contentieux", |
"class" => "contentieux", |
4599 |
"right" => "menu_contentieux", |
"right" => "menu_contentieux", |
4600 |
); |
); |
4604 |
$links[] = array( |
$links[] = array( |
4605 |
"href" => OM_ROUTE_DASHBOARD, |
"href" => OM_ROUTE_DASHBOARD, |
4606 |
"class" => "tableau-de-bord", |
"class" => "tableau-de-bord", |
4607 |
"title" => _("tableau de bord"), |
"title" => __("tableau de bord"), |
4608 |
"right" => "menu_contentieux_dashboard", |
"right" => "menu_contentieux_dashboard", |
4609 |
"open" => array("index.php|[module=dashboard]", "index.php|dossier_contentieux_contradictoire[module=tab]", "index.php|dossier_contentieux_ait[module=tab]", "index.php|dossier_contentieux_audience[module=tab]", "index.php|dossier_contentieux_clotures[module=tab]", "index.php|dossier_contentieux_inaffectes[module=tab]", "index.php|dossier_contentieux_alerte_visite[module=tab]", "index.php|dossier_contentieux_alerte_parquet[module=tab]", ), |
"open" => array("index.php|[module=dashboard]", "index.php|dossier_contentieux_contradictoire[module=tab]", "index.php|dossier_contentieux_ait[module=tab]", "index.php|dossier_contentieux_audience[module=tab]", "index.php|dossier_contentieux_clotures[module=tab]", "index.php|dossier_contentieux_inaffectes[module=tab]", "index.php|dossier_contentieux_alerte_visite[module=tab]", "index.php|dossier_contentieux_alerte_parquet[module=tab]", ), |
4610 |
); |
); |
4611 |
// Catégorie Nouvelle demande |
// Catégorie Nouvelle demande |
4612 |
$links[] = array( |
$links[] = array( |
4613 |
"class" => "category", |
"class" => "category", |
4614 |
"title" => _("Nouvelle demande"), |
"title" => __("Nouvelle demande"), |
4615 |
"right" => array( |
"right" => array( |
4616 |
"demande_nouveau_dossier_contentieux_ajouter", |
"demande_nouveau_dossier_contentieux_ajouter", |
4617 |
), |
), |
4619 |
$links[] = array( |
$links[] = array( |
4620 |
"href" => "".OM_ROUTE_FORM."&obj=demande_nouveau_dossier_contentieux&action=0&advs_id=&tricol=&valide=&retour=tab&new=", |
"href" => "".OM_ROUTE_FORM."&obj=demande_nouveau_dossier_contentieux&action=0&advs_id=&tricol=&valide=&retour=tab&new=", |
4621 |
"class" => "nouveau-dossier", |
"class" => "nouveau-dossier", |
4622 |
"title" => _("nouveau dossier"), |
"title" => __("nouveau dossier"), |
4623 |
"right" => array( |
"right" => array( |
4624 |
"demande_nouveau_dossier_contentieux_ajouter", |
"demande_nouveau_dossier_contentieux_ajouter", |
4625 |
), |
), |
4628 |
// Catégorie Recours |
// Catégorie Recours |
4629 |
$links[] = array( |
$links[] = array( |
4630 |
"class" => "category", |
"class" => "category", |
4631 |
"title" => _("Recours"), |
"title" => __("Recours"), |
4632 |
"right" => array( |
"right" => array( |
4633 |
"dossier_contentieux_mes_recours", "dossier_contentieux_mes_recours_tab", |
"dossier_contentieux_mes_recours", "dossier_contentieux_mes_recours_tab", |
4634 |
"dossier_contentieux_tous_recours", "dossier_contentieux_tous_recours_tab", |
"dossier_contentieux_tous_recours", "dossier_contentieux_tous_recours_tab", |
4638 |
$links[] = array( |
$links[] = array( |
4639 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_contentieux_mes_recours", |
"href" => "".OM_ROUTE_TAB."&obj=dossier_contentieux_mes_recours", |
4640 |
"class" => "dossier_contentieux_mes_recours", |
"class" => "dossier_contentieux_mes_recours", |
4641 |
"title" => _("Mes recours"), |
"title" => __("Mes recours"), |
4642 |
"right" => array("dossier_contentieux_mes_recours", "dossier_contentieux_mes_recours_tab", ), |
"right" => array("dossier_contentieux_mes_recours", "dossier_contentieux_mes_recours_tab", ), |
4643 |
"open" => array("index.php|dossier_contentieux_mes_recours[module=tab]", "index.php|dossier_contentieux_mes_recours[module=form]", ), |
"open" => array("index.php|dossier_contentieux_mes_recours[module=tab]", "index.php|dossier_contentieux_mes_recours[module=form]", ), |
4644 |
); |
); |
4645 |
$links[] = array( |
$links[] = array( |
4646 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_contentieux_tous_recours", |
"href" => "".OM_ROUTE_TAB."&obj=dossier_contentieux_tous_recours", |
4647 |
"class" => "dossier_contentieux_tous_recours", |
"class" => "dossier_contentieux_tous_recours", |
4648 |
"title" => _("Tous les recours"), |
"title" => __("Tous les recours"), |
4649 |
"right" => array("dossier_contentieux_tous_recours", "dossier_contentieux_tous_recours_tab", ), |
"right" => array("dossier_contentieux_tous_recours", "dossier_contentieux_tous_recours_tab", ), |
4650 |
"open" => array("index.php|dossier_contentieux_tous_recours[module=tab]", "index.php|dossier_contentieux_tous_recours[module=form]", ), |
"open" => array("index.php|dossier_contentieux_tous_recours[module=tab]", "index.php|dossier_contentieux_tous_recours[module=form]", ), |
4651 |
); |
); |
4652 |
// Catégorie Infractions |
// Catégorie Infractions |
4653 |
$links[] = array( |
$links[] = array( |
4654 |
"class" => "category", |
"class" => "category", |
4655 |
"title" => _("Infractions"), |
"title" => __("Infractions"), |
4656 |
"right" => array( |
"right" => array( |
4657 |
"dossier_contentieux_mes_infractions", "dossier_contentieux_mes_infractions_tab", |
"dossier_contentieux_mes_infractions", "dossier_contentieux_mes_infractions_tab", |
4658 |
"dossier_contentieux_toutes_infractions", "dossier_contentieux_toutes_infractions_tab", |
"dossier_contentieux_toutes_infractions", "dossier_contentieux_toutes_infractions_tab", |
4662 |
$links[] = array( |
$links[] = array( |
4663 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_contentieux_mes_infractions", |
"href" => "".OM_ROUTE_TAB."&obj=dossier_contentieux_mes_infractions", |
4664 |
"class" => "dossier_contentieux_mes_infractions", |
"class" => "dossier_contentieux_mes_infractions", |
4665 |
"title" => _("Mes infractions"), |
"title" => __("Mes infractions"), |
4666 |
"right" => array("dossier_contentieux_mes_infractions", "dossier_contentieux_mes_infractions_tab", ), |
"right" => array("dossier_contentieux_mes_infractions", "dossier_contentieux_mes_infractions_tab", ), |
4667 |
"open" => array("index.php|dossier_contentieux_mes_infractions[module=tab]", "index.php|dossier_contentieux_mes_infractions[module=form]", ), |
"open" => array("index.php|dossier_contentieux_mes_infractions[module=tab]", "index.php|dossier_contentieux_mes_infractions[module=form]", ), |
4668 |
); |
); |
4670 |
$links[] = array( |
$links[] = array( |
4671 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_contentieux_toutes_infractions", |
"href" => "".OM_ROUTE_TAB."&obj=dossier_contentieux_toutes_infractions", |
4672 |
"class" => "dossier_contentieux_toutes_infractions", |
"class" => "dossier_contentieux_toutes_infractions", |
4673 |
"title" => _("Toutes les infractions"), |
"title" => __("Toutes les infractions"), |
4674 |
"right" => array("dossier_contentieux_toutes_infractions", "dossier_contentieux_toutes_infractions_tab", ), |
"right" => array("dossier_contentieux_toutes_infractions", "dossier_contentieux_toutes_infractions_tab", ), |
4675 |
"open" => array("index.php|dossier_contentieux_toutes_infractions[module=tab]", "index.php|dossier_contentieux_toutes_infractions[module=form]", ), |
"open" => array("index.php|dossier_contentieux_toutes_infractions[module=tab]", "index.php|dossier_contentieux_toutes_infractions[module=form]", ), |
4676 |
); |
); |
4677 |
// Catégorie MESSAGES |
// Catégorie MESSAGES |
4678 |
$links[] = array( |
$links[] = array( |
4679 |
"class" => "category", |
"class" => "category", |
4680 |
"title" => _("Messages"), |
"title" => __("Messages"), |
4681 |
"right" => array( |
"right" => array( |
4682 |
"messages_contentieux", |
"messages_contentieux", |
4683 |
"messages_contentieux_mes_retours", |
"messages_contentieux_mes_retours", |
4699 |
$links[] = array( |
$links[] = array( |
4700 |
"href" => "".OM_ROUTE_TAB."&obj=messages_contentieux_mes_retours", |
"href" => "".OM_ROUTE_TAB."&obj=messages_contentieux_mes_retours", |
4701 |
"class" => "messages_contentieux_mes_retours", |
"class" => "messages_contentieux_mes_retours", |
4702 |
"title" => _("Mes messages"), |
"title" => __("Mes messages"), |
4703 |
"right" => array( |
"right" => array( |
4704 |
"messages_contentieux", |
"messages_contentieux", |
4705 |
"messages_contentieux_mes_retours", |
"messages_contentieux_mes_retours", |
4711 |
$links[] = array( |
$links[] = array( |
4712 |
"href" => "".OM_ROUTE_TAB."&obj=messages_contentieux_retours_ma_division", |
"href" => "".OM_ROUTE_TAB."&obj=messages_contentieux_retours_ma_division", |
4713 |
"class" => "messages_contentieux_retours_ma_division", |
"class" => "messages_contentieux_retours_ma_division", |
4714 |
"title" => _("Messages de ma division"), |
"title" => __("Messages de ma division"), |
4715 |
"right" => array( |
"right" => array( |
4716 |
"messages_contentieux", |
"messages_contentieux", |
4717 |
"messages_contentieux_retours_ma_division", |
"messages_contentieux_retours_ma_division", |
4723 |
$links[] = array( |
$links[] = array( |
4724 |
"href" => "".OM_ROUTE_TAB."&obj=messages_contentieux_tous_retours", |
"href" => "".OM_ROUTE_TAB."&obj=messages_contentieux_tous_retours", |
4725 |
"class" => "messages_contentieux_tous_retours", |
"class" => "messages_contentieux_tous_retours", |
4726 |
"title" => _("Tous les messages"), |
"title" => __("Tous les messages"), |
4727 |
"right" => array( |
"right" => array( |
4728 |
"messages_contentieux", |
"messages_contentieux", |
4729 |
"messages_contentieux_tous_retours", |
"messages_contentieux_tous_retours", |
4742 |
// {{{ Rubrique SUIVI |
// {{{ Rubrique SUIVI |
4743 |
// |
// |
4744 |
$rubrik = array( |
$rubrik = array( |
4745 |
"title" => _("Suivi"), |
"title" => __("Suivi"), |
4746 |
"class" => "suivi", |
"class" => "suivi", |
4747 |
"right" => "menu_suivi", |
"right" => "menu_suivi", |
4748 |
); |
); |
4752 |
$links[] = array( |
$links[] = array( |
4753 |
"href" => OM_ROUTE_DASHBOARD, |
"href" => OM_ROUTE_DASHBOARD, |
4754 |
"class" => "tableau-de-bord", |
"class" => "tableau-de-bord", |
4755 |
"title" => _("tableau de bord"), |
"title" => __("tableau de bord"), |
4756 |
"right" => "menu_suivi_dashboard", |
"right" => "menu_suivi_dashboard", |
4757 |
"open" => array("index.php|[module=dashboard]",), |
"open" => array("index.php|[module=dashboard]",), |
4758 |
); |
); |
4759 |
$links[] = array( |
$links[] = array( |
4760 |
"class" => "category", |
"class" => "category", |
4761 |
"title" => _("suivi des pieces"), |
"title" => __("suivi des pieces"), |
4762 |
"right" => array( |
"right" => array( |
4763 |
"instruction_suivi_retours_de_consultation", "instruction_suivi_mise_a_jour_des_dates", |
"instruction_suivi_retours_de_consultation", "instruction_suivi_mise_a_jour_des_dates", |
4764 |
"instruction_suivi_envoi_lettre_rar", "instruction_suivi_bordereaux", |
"instruction_suivi_envoi_lettre_rar", "instruction_suivi_bordereaux", |
4787 |
$links[] = array( |
$links[] = array( |
4788 |
"href" => "".OM_ROUTE_FORM."&obj=instruction_suivi_mise_a_jour_des_dates&action=170&idx=0", |
"href" => "".OM_ROUTE_FORM."&obj=instruction_suivi_mise_a_jour_des_dates&action=170&idx=0", |
4789 |
"class" => "suivi_mise_a_jour_des_dates", |
"class" => "suivi_mise_a_jour_des_dates", |
4790 |
"title" => _("Mise a jour des dates"), |
"title" => __("Mise a jour des dates"), |
4791 |
"right" => array("instruction_suivi_mise_a_jour_des_dates", "instruction_suivi_mise_a_jour_des_dates_consulter", ), |
"right" => array("instruction_suivi_mise_a_jour_des_dates", "instruction_suivi_mise_a_jour_des_dates_consulter", ), |
4792 |
"open" => array("index.php|instruction_suivi_mise_a_jour_des_dates[module=tab]", "index.php|instruction_suivi_mise_a_jour_des_dates[module=form]"), |
"open" => array("index.php|instruction_suivi_mise_a_jour_des_dates[module=tab]", "index.php|instruction_suivi_mise_a_jour_des_dates[module=form]"), |
4793 |
); |
); |
4802 |
$links[] = array( |
$links[] = array( |
4803 |
"href" => "".OM_ROUTE_FORM."&obj=instruction_suivi_envoi_lettre_rar&action=160&idx=0", |
"href" => "".OM_ROUTE_FORM."&obj=instruction_suivi_envoi_lettre_rar&action=160&idx=0", |
4804 |
"class" => "envoi_lettre_rar", |
"class" => "envoi_lettre_rar", |
4805 |
"title" => _("envoi lettre AR"), |
"title" => __("envoi lettre AR"), |
4806 |
"right" => array("instruction_suivi_envoi_lettre_rar", "instruction_suivi_envoi_lettre_rar_consulter", ), |
"right" => array("instruction_suivi_envoi_lettre_rar", "instruction_suivi_envoi_lettre_rar_consulter", ), |
4807 |
"open" => array("index.php|instruction_suivi_envoi_lettre_rar[module=tab]", "index.php|instruction_suivi_envoi_lettre_rar[module=form]"), |
"open" => array("index.php|instruction_suivi_envoi_lettre_rar[module=tab]", "index.php|instruction_suivi_envoi_lettre_rar[module=form]"), |
4808 |
); |
); |
4817 |
$links[] = array( |
$links[] = array( |
4818 |
"href" => "".OM_ROUTE_FORM."&obj=instruction_suivi_bordereaux&action=150&idx=0", |
"href" => "".OM_ROUTE_FORM."&obj=instruction_suivi_bordereaux&action=150&idx=0", |
4819 |
"class" => "bordereaux", |
"class" => "bordereaux", |
4820 |
"title" => _("Bordereaux"), |
"title" => __("Bordereaux"), |
4821 |
"right" => array("instruction_suivi_bordereaux", "instruction_suivi_bordereaux_consulter", ), |
"right" => array("instruction_suivi_bordereaux", "instruction_suivi_bordereaux_consulter", ), |
4822 |
"open" => array("index.php|instruction_suivi_bordereaux[module=tab]", "index.php|instruction_suivi_bordereaux[module=form]"), |
"open" => array("index.php|instruction_suivi_bordereaux[module=tab]", "index.php|instruction_suivi_bordereaux[module=form]"), |
4823 |
); |
); |
4825 |
$links[] = array( |
$links[] = array( |
4826 |
"href" => "".OM_ROUTE_FORM."&obj=bordereau_envoi_maire&action=190&idx=0", |
"href" => "".OM_ROUTE_FORM."&obj=bordereau_envoi_maire&action=190&idx=0", |
4827 |
"class" => "bordereau_envoi_maire", |
"class" => "bordereau_envoi_maire", |
4828 |
"title" => _("Bordereau d'envoi au maire"), |
"title" => __("Bordereau d'envoi au maire"), |
4829 |
"right" => array("instruction_bordereau_envoi_maire","bordereau_envoi_maire"), |
"right" => array("instruction_bordereau_envoi_maire","bordereau_envoi_maire"), |
4830 |
"open" => array("index.php|bordereau_envoi_maire[module=form]",), |
"open" => array("index.php|bordereau_envoi_maire[module=form]",), |
4831 |
); |
); |
4832 |
// |
// |
4833 |
$links[] = array( |
$links[] = array( |
4834 |
"class" => "category", |
"class" => "category", |
4835 |
"title" => _("Demandes d'avis"), |
"title" => __("Demandes d'avis"), |
4836 |
"right" => array( |
"right" => array( |
4837 |
"consultation_suivi_mise_a_jour_des_dates", |
"consultation_suivi_mise_a_jour_des_dates", |
4838 |
"consultation_suivi_retours_de_consultation", |
"consultation_suivi_retours_de_consultation", |
4842 |
$links[] = array( |
$links[] = array( |
4843 |
"href" => "".OM_ROUTE_FORM."&obj=consultation&idx=0&action=110", |
"href" => "".OM_ROUTE_FORM."&obj=consultation&idx=0&action=110", |
4844 |
"class" => "demandes_avis_mise_a_jour_des_dates", |
"class" => "demandes_avis_mise_a_jour_des_dates", |
4845 |
"title" => _("Mise a jour des dates"), |
"title" => __("Mise a jour des dates"), |
4846 |
"right" => array("consultation_suivi_mise_a_jour_des_dates", ), |
"right" => array("consultation_suivi_mise_a_jour_des_dates", ), |
4847 |
"open" => array("index.php|consultation[module=form][action=110]"), |
"open" => array("index.php|consultation[module=form][action=110]"), |
4848 |
); |
); |
4850 |
$links[] = array( |
$links[] = array( |
4851 |
"href" => "".OM_ROUTE_FORM."&obj=consultation&idx=0&action=120", |
"href" => "".OM_ROUTE_FORM."&obj=consultation&idx=0&action=120", |
4852 |
"class" => "consultation-retour", |
"class" => "consultation-retour", |
4853 |
"title" => _("retours de consultation"), |
"title" => __("retours de consultation"), |
4854 |
"right" => array("consultation_suivi_retours_de_consultation", ), |
"right" => array("consultation_suivi_retours_de_consultation", ), |
4855 |
"open" => array("index.php|consultation[module=form][action=120]", "index.php|consultation[module=form][action=100]", ), |
"open" => array("index.php|consultation[module=form][action=120]", "index.php|consultation[module=form][action=100]", ), |
4856 |
); |
); |
4857 |
// Catégorie COMMISSIONS |
// Catégorie COMMISSIONS |
4858 |
$links[] = array( |
$links[] = array( |
4859 |
"class" => "category", |
"class" => "category", |
4860 |
"title" => _("commissions"), |
"title" => __("commissions"), |
4861 |
"right" => array( |
"right" => array( |
4862 |
"commission", |
"commission", |
4863 |
"commission_tab", |
"commission_tab", |
4879 |
$links[] = array( |
$links[] = array( |
4880 |
"href" => "".OM_ROUTE_TAB."&obj=commission", |
"href" => "".OM_ROUTE_TAB."&obj=commission", |
4881 |
"class" => "commissions", |
"class" => "commissions", |
4882 |
"title" => _("gestion"), |
"title" => __("gestion"), |
4883 |
"right" => array( |
"right" => array( |
4884 |
"commission", |
"commission", |
4885 |
), |
), |
4889 |
$links[] = array( |
$links[] = array( |
4890 |
"href" => "".OM_ROUTE_TAB."&obj=commission_demandes_passage", |
"href" => "".OM_ROUTE_TAB."&obj=commission_demandes_passage", |
4891 |
"class" => "commissions-demande-passage", |
"class" => "commissions-demande-passage", |
4892 |
"title" => _("demandes"), |
"title" => __("demandes"), |
4893 |
"right" => array( |
"right" => array( |
4894 |
"commission", |
"commission", |
4895 |
"commission_demandes_passage", |
"commission_demandes_passage", |
4905 |
// {{{ Rubrique DEMANDES D'AVIS |
// {{{ Rubrique DEMANDES D'AVIS |
4906 |
// |
// |
4907 |
$rubrik = array( |
$rubrik = array( |
4908 |
"title" => _("Demandes d'avis"), |
"title" => __("Demandes d'avis"), |
4909 |
"class" => "demande_avis", |
"class" => "demande_avis", |
4910 |
"right" => "menu_demande_avis", |
"right" => "menu_demande_avis", |
4911 |
); |
); |
4915 |
$links[] = array( |
$links[] = array( |
4916 |
"href" => OM_ROUTE_DASHBOARD, |
"href" => OM_ROUTE_DASHBOARD, |
4917 |
"class" => "tableau-de-bord", |
"class" => "tableau-de-bord", |
4918 |
"title" => _("tableau de bord"), |
"title" => __("tableau de bord"), |
4919 |
"right" => "menu_demande_avis_dashboard", |
"right" => "menu_demande_avis_dashboard", |
4920 |
"open" => array("index.php|[module=dashboard]",), |
"open" => array("index.php|[module=dashboard]",), |
4921 |
); |
); |
4932 |
$links[] = array( |
$links[] = array( |
4933 |
"href" => "".OM_ROUTE_TAB."&obj=demande_avis_encours", |
"href" => "".OM_ROUTE_TAB."&obj=demande_avis_encours", |
4934 |
"class" => "demande_avis_encours", |
"class" => "demande_avis_encours", |
4935 |
"title" => _("Demandes en cours"), |
"title" => __("Demandes en cours"), |
4936 |
"right" => array("demande_avis_encours", "demande_avis_encours_tab", ), |
"right" => array("demande_avis_encours", "demande_avis_encours_tab", ), |
4937 |
"open" => array("index.php|demande_avis_encours[module=tab]", "index.php|demande_avis_encours[module=form]", ), |
"open" => array("index.php|demande_avis_encours[module=tab]", "index.php|demande_avis_encours[module=form]", ), |
4938 |
); |
); |
4940 |
$links[] = array( |
$links[] = array( |
4941 |
"href" => "".OM_ROUTE_TAB."&obj=demande_avis_passee", |
"href" => "".OM_ROUTE_TAB."&obj=demande_avis_passee", |
4942 |
"class" => "demande_avis_passee", |
"class" => "demande_avis_passee", |
4943 |
"title" => _("Demandes passees"), |
"title" => __("Demandes passees"), |
4944 |
"right" => array("demande_avis_passee", "demande_avis_passee_tab", ), |
"right" => array("demande_avis_passee", "demande_avis_passee_tab", ), |
4945 |
"open" => array("index.php|demande_avis_passee[module=tab]", "index.php|demande_avis_passee[module=form]", ), |
"open" => array("index.php|demande_avis_passee[module=tab]", "index.php|demande_avis_passee[module=form]", ), |
4946 |
); |
); |
4948 |
$links[] = array( |
$links[] = array( |
4949 |
"href" => "".OM_ROUTE_TAB."&obj=demande_avis", |
"href" => "".OM_ROUTE_TAB."&obj=demande_avis", |
4950 |
"class" => "demande_avis", |
"class" => "demande_avis", |
4951 |
"title" => _("Exports"), |
"title" => __("Exports"), |
4952 |
"right" => array("demande_avis", "demande_avis_tab", ), |
"right" => array("demande_avis", "demande_avis_tab", ), |
4953 |
"open" => array("index.php|demande_avis[module=tab]", "index.php|demande_avis[module=form]", ), |
"open" => array("index.php|demande_avis[module=tab]", "index.php|demande_avis[module=form]", ), |
4954 |
); |
); |
5080 |
// {{{ Rubrique EXPORT |
// {{{ Rubrique EXPORT |
5081 |
// |
// |
5082 |
$rubrik = array( |
$rubrik = array( |
5083 |
"title" => _("export / import"), |
"title" => __("export / import"), |
5084 |
"class" => "edition", |
"class" => "edition", |
5085 |
"right" => "menu_export", |
"right" => "menu_export", |
5086 |
); |
); |
5091 |
$links[] = array( |
$links[] = array( |
5092 |
"href" => "".OM_ROUTE_FORM."&obj=sitadel&action=6&idx=0", |
"href" => "".OM_ROUTE_FORM."&obj=sitadel&action=6&idx=0", |
5093 |
"class" => "sitadel", |
"class" => "sitadel", |
5094 |
"title" => _("export sitadel"), |
"title" => __("export sitadel"), |
5095 |
"right" => "export_sitadel", |
"right" => "export_sitadel", |
5096 |
"open" => "index.php|sitadel[module=form]", |
"open" => "index.php|sitadel[module=form]", |
5097 |
); |
); |
5099 |
$links[] = array( |
$links[] = array( |
5100 |
"href" => "../app/versement_archives.php", |
"href" => "../app/versement_archives.php", |
5101 |
"class" => "versement_archives", |
"class" => "versement_archives", |
5102 |
"title" => _("versement aux archives"), |
"title" => __("versement aux archives"), |
5103 |
"right" => "versement_archives", |
"right" => "versement_archives", |
5104 |
"open" => "versement_archives.php|", |
"open" => "versement_archives.php|", |
5105 |
); |
); |
5107 |
$links[] = array( |
$links[] = array( |
5108 |
"href" => "../app/reqmo_pilot.php", |
"href" => "../app/reqmo_pilot.php", |
5109 |
"class" => "reqmo", |
"class" => "reqmo", |
5110 |
"title" => _("statistiques a la demande"), |
"title" => __("statistiques a la demande"), |
5111 |
"right" => "reqmo_pilot", |
"right" => "reqmo_pilot", |
5112 |
"open" => "reqmo_pilot.php|", |
"open" => "reqmo_pilot.php|", |
5113 |
); |
); |
5132 |
// {{{ Rubrique PARAMETRAGE |
// {{{ Rubrique PARAMETRAGE |
5133 |
// |
// |
5134 |
$rubrik = array( |
$rubrik = array( |
5135 |
"title" => _("parametrage dossiers"), |
"title" => __("parametrage dossiers"), |
5136 |
"class" => "parametrage-dossier", |
"class" => "parametrage-dossier", |
5137 |
"right" => "menu_parametrage", |
"right" => "menu_parametrage", |
5138 |
); |
); |
5141 |
// |
// |
5142 |
$links[] = array( |
$links[] = array( |
5143 |
"class" => "category", |
"class" => "category", |
5144 |
"title" => _("dossiers"), |
"title" => __("dossiers"), |
5145 |
"right" => array( |
"right" => array( |
5146 |
"dossier_autorisation_type", "dossier_autorisation_type_tab", |
"dossier_autorisation_type", "dossier_autorisation_type_tab", |
5147 |
"dossier_autorisation_type_detaille", |
"dossier_autorisation_type_detaille", |
5160 |
$links[] = array( |
$links[] = array( |
5161 |
"href" => "".OM_ROUTE_TAB."&obj=cerfa", |
"href" => "".OM_ROUTE_TAB."&obj=cerfa", |
5162 |
"class" => "cerfa", |
"class" => "cerfa", |
5163 |
"title" => _("cerfa"), |
"title" => __("cerfa"), |
5164 |
"right" => array("cerfa", "cerfa_tab", ), |
"right" => array("cerfa", "cerfa_tab", ), |
5165 |
"open" => array("index.php|cerfa[module=tab]", "index.php|cerfa[module=form]", ), |
"open" => array("index.php|cerfa[module=tab]", "index.php|cerfa[module=form]", ), |
5166 |
); |
); |
5178 |
$links[] = array( |
$links[] = array( |
5179 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_autorisation_type", |
"href" => "".OM_ROUTE_TAB."&obj=dossier_autorisation_type", |
5180 |
"class" => "dossier_autorisation_type", |
"class" => "dossier_autorisation_type", |
5181 |
"title" => _("type DA"), |
"title" => __("type DA"), |
5182 |
"right" => array("dossier_autorisation_type", "dossier_autorisation_type_tab", ), |
"right" => array("dossier_autorisation_type", "dossier_autorisation_type_tab", ), |
5183 |
"open" => array("index.php|dossier_autorisation_type[module=tab]", "index.php|dossier_autorisation_type[module=form]", ), |
"open" => array("index.php|dossier_autorisation_type[module=tab]", "index.php|dossier_autorisation_type[module=form]", ), |
5184 |
); |
); |
5186 |
$links[] = array( |
$links[] = array( |
5187 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_autorisation_type_detaille", |
"href" => "".OM_ROUTE_TAB."&obj=dossier_autorisation_type_detaille", |
5188 |
"class" => "dossier_autorisation_type_detaille", |
"class" => "dossier_autorisation_type_detaille", |
5189 |
"title" => _("type DA detaille"), |
"title" => __("type DA detaille"), |
5190 |
"right" => array("dossier_autorisation_type_detaille", "dossier_autorisation_type_detaille_tab", ), |
"right" => array("dossier_autorisation_type_detaille", "dossier_autorisation_type_detaille_tab", ), |
5191 |
"open" => array("index.php|dossier_autorisation_type_detaille[module=tab]", "index.php|dossier_autorisation_type_detaille[module=form]", ), |
"open" => array("index.php|dossier_autorisation_type_detaille[module=tab]", "index.php|dossier_autorisation_type_detaille[module=form]", ), |
5192 |
); |
); |
5194 |
$links[] = array( |
$links[] = array( |
5195 |
"href" => "".OM_ROUTE_TAB."&obj=dossier_instruction_type", |
"href" => "".OM_ROUTE_TAB."&obj=dossier_instruction_type", |
5196 |
"class" => "dossier_instruction_type", |
"class" => "dossier_instruction_type", |
5197 |
"title" => _("type DI"), |
"title" => __("type DI"), |
5198 |
"right" => array("dossier_instruction_type", "dossier_instruction_type_tab", ), |
"right" => array("dossier_instruction_type", "dossier_instruction_type_tab", ), |
5199 |
"open" => array("index.php|dossier_instruction_type[module=tab]", "index.php|dossier_instruction_type[module=form]", ), |
"open" => array("index.php|dossier_instruction_type[module=tab]", "index.php|dossier_instruction_type[module=form]", ), |
5200 |
); |
); |
5247 |
$links[] = array( |
$links[] = array( |
5248 |
"href" => "".OM_ROUTE_TAB."&obj=contrainte", |
"href" => "".OM_ROUTE_TAB."&obj=contrainte", |
5249 |
"class" => "contrainte", |
"class" => "contrainte", |
5250 |
"title" => _("contrainte"), |
"title" => __("contrainte"), |
5251 |
"right" => array("contrainte", "contrainte_tab", ), |
"right" => array("contrainte", "contrainte_tab", ), |
5252 |
"open" => array( |
"open" => array( |
5253 |
"index.php|contrainte[module=tab]", |
"index.php|contrainte[module=tab]", |
5270 |
// |
// |
5271 |
$links[] = array( |
$links[] = array( |
5272 |
"class" => "category", |
"class" => "category", |
5273 |
"title" => _("demandes"), |
"title" => __("demandes"), |
5274 |
"right" => array( |
"right" => array( |
5275 |
"demande_type", |
"demande_type", |
5276 |
"demande_type_tab", "demande_nature", "demande_nature_tab", |
"demande_type_tab", "demande_nature", "demande_nature_tab", |
5288 |
$links[] = array( |
$links[] = array( |
5289 |
"href" => "".OM_ROUTE_TAB."&obj=demande_nature", |
"href" => "".OM_ROUTE_TAB."&obj=demande_nature", |
5290 |
"class" => "demande_nature", |
"class" => "demande_nature", |
5291 |
"title" => _("nature"), |
"title" => __("nature"), |
5292 |
"right" => array("demande_nature", "demande_nature_tab", ), |
"right" => array("demande_nature", "demande_nature_tab", ), |
5293 |
"open" => array("index.php|demande_nature[module=tab]", "index.php|demande_nature[module=form]", ), |
"open" => array("index.php|demande_nature[module=tab]", "index.php|demande_nature[module=form]", ), |
5294 |
); |
); |
5296 |
$links[] = array( |
$links[] = array( |
5297 |
"href" => "".OM_ROUTE_TAB."&obj=demande_type", |
"href" => "".OM_ROUTE_TAB."&obj=demande_type", |
5298 |
"class" => "demande_type", |
"class" => "demande_type", |
5299 |
"title" => _("type"), |
"title" => __("type"), |
5300 |
"right" => array("demande_type", "demande_type_tab",), |
"right" => array("demande_type", "demande_type_tab",), |
5301 |
"open" => array("index.php|demande_type[module=tab]", "index.php|demande_type[module=form]", ), |
"open" => array("index.php|demande_type[module=tab]", "index.php|demande_type[module=form]", ), |
5302 |
); |
); |
5303 |
// |
// |
5304 |
$links[] = array( |
$links[] = array( |
5305 |
"class" => "category", |
"class" => "category", |
5306 |
"title" => _("workflows"), |
"title" => __("workflows"), |
5307 |
"right" => array( |
"right" => array( |
5308 |
"workflows", |
"workflows", |
5309 |
"action", "action_tab", "etat", |
"action", "action_tab", "etat", |
5330 |
$links[] = array( |
$links[] = array( |
5331 |
"href" => "../app/workflows.php", |
"href" => "../app/workflows.php", |
5332 |
"class" => "workflows", |
"class" => "workflows", |
5333 |
"title" => _("workflows"), |
"title" => __("workflows"), |
5334 |
"right" => array("workflows", ), |
"right" => array("workflows", ), |
5335 |
"open" => array("workflows.php|", ), |
"open" => array("workflows.php|", ), |
5336 |
); |
); |
5345 |
$links[] = array( |
$links[] = array( |
5346 |
"href" => "".OM_ROUTE_TAB."&obj=evenement", |
"href" => "".OM_ROUTE_TAB."&obj=evenement", |
5347 |
"class" => "evenement", |
"class" => "evenement", |
5348 |
"title" => _("evenement"), |
"title" => __("evenement"), |
5349 |
"right" => array("evenement", "evenement_tab", ), |
"right" => array("evenement", "evenement_tab", ), |
5350 |
"open" => array("index.php|evenement[module=tab]", "index.php|evenement[module=form]", ), |
"open" => array("index.php|evenement[module=tab]", "index.php|evenement[module=form]", ), |
5351 |
); |
); |
5363 |
$links[] = array( |
$links[] = array( |
5364 |
"href" => "".OM_ROUTE_TAB."&obj=etat", |
"href" => "".OM_ROUTE_TAB."&obj=etat", |
5365 |
"class" => "workflow-etat", |
"class" => "workflow-etat", |
5366 |
"title" => _("etat"), |
"title" => __("etat"), |
5367 |
"right" => array("etat", "etat_tab", ), |
"right" => array("etat", "etat_tab", ), |
5368 |
"open" => array("index.php|etat[module=tab]", "index.php|etat[module=form]", ), |
"open" => array("index.php|etat[module=tab]", "index.php|etat[module=form]", ), |
5369 |
); |
); |
5371 |
$links[] = array( |
$links[] = array( |
5372 |
"href" => "".OM_ROUTE_TAB."&obj=avis_decision", |
"href" => "".OM_ROUTE_TAB."&obj=avis_decision", |
5373 |
"class" => "avis_decision", |
"class" => "avis_decision", |
5374 |
"title" => _("avis decision"), |
"title" => __("avis decision"), |
5375 |
"right" => array("avis_decision", "avis_decision_tab", ), |
"right" => array("avis_decision", "avis_decision_tab", ), |
5376 |
"open" => array("index.php|avis_decision[module=tab]", "index.php|avis_decision[module=form]", ), |
"open" => array("index.php|avis_decision[module=tab]", "index.php|avis_decision[module=form]", ), |
5377 |
); |
); |
5395 |
$links[] = array( |
$links[] = array( |
5396 |
"href" => "".OM_ROUTE_TAB."&obj=action", |
"href" => "".OM_ROUTE_TAB."&obj=action", |
5397 |
"class" => "action", |
"class" => "action", |
5398 |
"title" => _("action"), |
"title" => __("action"), |
5399 |
"right" => array("action", "action_tab", ), |
"right" => array("action", "action_tab", ), |
5400 |
"open" => array("index.php|action[module=tab]", "index.php|action[module=form]", ), |
"open" => array("index.php|action[module=tab]", "index.php|action[module=form]", ), |
5401 |
); |
); |
5410 |
$links[] = array( |
$links[] = array( |
5411 |
"href" => "".OM_ROUTE_TAB."&obj=bible", |
"href" => "".OM_ROUTE_TAB."&obj=bible", |
5412 |
"class" => "bible", |
"class" => "bible", |
5413 |
"title" => _("bible"), |
"title" => __("bible"), |
5414 |
"right" => array("bible", "bible_tab", ), |
"right" => array("bible", "bible_tab", ), |
5415 |
"open" => array("index.php|bible[module=tab]", "index.php|bible[module=form]", ), |
"open" => array("index.php|bible[module=tab]", "index.php|bible[module=form]", ), |
5416 |
); |
); |
5417 |
// |
// |
5418 |
$links[] = array( |
$links[] = array( |
5419 |
"class" => "category", |
"class" => "category", |
5420 |
"title" => _("editions"), |
"title" => __("editions"), |
5421 |
"right" => array( |
"right" => array( |
5422 |
"om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab", |
"om_etat", "om_etat_tab", "om_sousetat", "om_sousetat_tab", |
5423 |
"om_lettretype", "om_lettretype_tab", "om_requete", "om_requete_tab", |
"om_lettretype", "om_lettretype_tab", "om_requete", "om_requete_tab", |
5435 |
$links[] = array( |
$links[] = array( |
5436 |
"href" => "".OM_ROUTE_TAB."&obj=om_etat", |
"href" => "".OM_ROUTE_TAB."&obj=om_etat", |
5437 |
"class" => "om_etat", |
"class" => "om_etat", |
5438 |
"title" => _("om_etat"), |
"title" => __("om_etat"), |
5439 |
"right" => array("om_etat", "om_etat_tab", ), |
"right" => array("om_etat", "om_etat_tab", ), |
5440 |
"open" => array("index.php|om_etat[module=tab]", "index.php|om_etat[module=form]", ), |
"open" => array("index.php|om_etat[module=tab]", "index.php|om_etat[module=form]", ), |
5441 |
); |
); |
5443 |
$links[] = array( |
$links[] = array( |
5444 |
"href" => "".OM_ROUTE_TAB."&obj=om_lettretype", |
"href" => "".OM_ROUTE_TAB."&obj=om_lettretype", |
5445 |
"class" => "om_lettretype", |
"class" => "om_lettretype", |
5446 |
"title" => _("om_lettretype"), |
"title" => __("om_lettretype"), |
5447 |
"right" => array("om_lettretype", "om_lettretype_tab"), |
"right" => array("om_lettretype", "om_lettretype_tab"), |
5448 |
"open" => array("index.php|om_lettretype[module=tab]", "index.php|om_lettretype[module=form]", ), |
"open" => array("index.php|om_lettretype[module=tab]", "index.php|om_lettretype[module=form]", ), |
5449 |
); |
); |
5458 |
$links[] = array( |
$links[] = array( |
5459 |
"href" => "".OM_ROUTE_TAB."&obj=om_logo", |
"href" => "".OM_ROUTE_TAB."&obj=om_logo", |
5460 |
"class" => "om_logo", |
"class" => "om_logo", |
5461 |
"title" => _("om_logo"), |
"title" => __("om_logo"), |
5462 |
"right" => array("om_logo", "om_logo_tab", ), |
"right" => array("om_logo", "om_logo_tab", ), |
5463 |
"open" => array("index.php|om_logo[module=tab]", "index.php|om_logo[module=form]", ), |
"open" => array("index.php|om_logo[module=tab]", "index.php|om_logo[module=form]", ), |
5464 |
); |
); |
5471 |
// {{{ Rubrique PARAMETRAGE |
// {{{ Rubrique PARAMETRAGE |
5472 |
// |
// |
5473 |
$rubrik = array( |
$rubrik = array( |
5474 |
"title" => _("parametrage"), |
"title" => __("parametrage"), |
5475 |
"class" => "parametrage", |
"class" => "parametrage", |
5476 |
"right" => "menu_parametrage", |
"right" => "menu_parametrage", |
5477 |
); |
); |
5481 |
$links[] = array( |
$links[] = array( |
5482 |
"href" => "".OM_ROUTE_TAB."&obj=civilite", |
"href" => "".OM_ROUTE_TAB."&obj=civilite", |
5483 |
"class" => "civilite", |
"class" => "civilite", |
5484 |
"title" => _("civilite"), |
"title" => __("civilite"), |
5485 |
"right" => array("civilite", "civilite_tab", ), |
"right" => array("civilite", "civilite_tab", ), |
5486 |
"open" => array("index.php|civilite[module=tab]", "index.php|civilite[module=form]", ), |
"open" => array("index.php|civilite[module=tab]", "index.php|civilite[module=form]", ), |
5487 |
); |
); |
5489 |
$links[] = array( |
$links[] = array( |
5490 |
"href" => "".OM_ROUTE_TAB."&obj=arrondissement", |
"href" => "".OM_ROUTE_TAB."&obj=arrondissement", |
5491 |
"class" => "arrondissement", |
"class" => "arrondissement", |
5492 |
"title" => _("arrondissement"), |
"title" => __("arrondissement"), |
5493 |
"right" => array("arrondissement", "arrondissement_tab", ), |
"right" => array("arrondissement", "arrondissement_tab", ), |
5494 |
"open" => array("index.php|arrondissement[module=tab]", "index.php|arrondissement[module=form]", ), |
"open" => array("index.php|arrondissement[module=tab]", "index.php|arrondissement[module=form]", ), |
5495 |
); |
); |
5497 |
$links[] = array( |
$links[] = array( |
5498 |
"href" => "".OM_ROUTE_TAB."&obj=quartier", |
"href" => "".OM_ROUTE_TAB."&obj=quartier", |
5499 |
"class" => "quartier", |
"class" => "quartier", |
5500 |
"title" => _("quartier"), |
"title" => __("quartier"), |
5501 |
"right" => array("quartier", "quartier_tab", ), |
"right" => array("quartier", "quartier_tab", ), |
5502 |
"open" => array("index.php|quartier[module=tab]", "index.php|quartier[module=form]", ), |
"open" => array("index.php|quartier[module=tab]", "index.php|quartier[module=form]", ), |
5503 |
); |
); |
5504 |
// |
// |
5505 |
$links[] = array( |
$links[] = array( |
5506 |
"class" => "category", |
"class" => "category", |
5507 |
"title" => _("Organisation"), |
"title" => __("Organisation"), |
5508 |
"right" => array( |
"right" => array( |
5509 |
"direction", "direction_tab", "division", "division_tab", "instructeur_qualite", |
"direction", "direction_tab", "division", "division_tab", "instructeur_qualite", |
5510 |
"instructeur_qualite_tab", "instructeur", "instructeur_tab", "groupe", |
"instructeur_qualite_tab", "instructeur", "instructeur_tab", "groupe", |
5526 |
$links[] = array( |
$links[] = array( |
5527 |
"href" => "".OM_ROUTE_TAB."&obj=genre", |
"href" => "".OM_ROUTE_TAB."&obj=genre", |
5528 |
"class" => "genre", |
"class" => "genre", |
5529 |
"title" => _("genre"), |
"title" => __("genre"), |
5530 |
"right" => array("genre", "genre_tab", ), |
"right" => array("genre", "genre_tab", ), |
5531 |
"open" => array("index.php|genre[module=tab]", "index.php|genre[module=form]", ), |
"open" => array("index.php|genre[module=tab]", "index.php|genre[module=form]", ), |
5532 |
); |
); |
5534 |
$links[] = array( |
$links[] = array( |
5535 |
"href" => "".OM_ROUTE_TAB."&obj=groupe", |
"href" => "".OM_ROUTE_TAB."&obj=groupe", |
5536 |
"class" => "groupe", |
"class" => "groupe", |
5537 |
"title" => _("groupe"), |
"title" => __("groupe"), |
5538 |
"right" => array("groupe", "groupe_tab", ), |
"right" => array("groupe", "groupe_tab", ), |
5539 |
"open" => array("index.php|groupe[module=tab]", "index.php|groupe[module=form]", ), |
"open" => array("index.php|groupe[module=tab]", "index.php|groupe[module=form]", ), |
5540 |
); |
); |
5542 |
$links[] = array( |
$links[] = array( |
5543 |
"href" => "".OM_ROUTE_TAB."&obj=direction", |
"href" => "".OM_ROUTE_TAB."&obj=direction", |
5544 |
"class" => "direction", |
"class" => "direction", |
5545 |
"title" => _("direction"), |
"title" => __("direction"), |
5546 |
"right" => array("direction", "direction_tab", ), |
"right" => array("direction", "direction_tab", ), |
5547 |
"open" => array("index.php|direction[module=tab]", "index.php|direction[module=form]", ), |
"open" => array("index.php|direction[module=tab]", "index.php|direction[module=form]", ), |
5548 |
); |
); |
5550 |
$links[] = array( |
$links[] = array( |
5551 |
"href" => "".OM_ROUTE_TAB."&obj=division", |
"href" => "".OM_ROUTE_TAB."&obj=division", |
5552 |
"class" => "division", |
"class" => "division", |
5553 |
"title" => _("division"), |
"title" => __("division"), |
5554 |
"right" => array("division", "division_tab", ), |
"right" => array("division", "division_tab", ), |
5555 |
"open" => array("index.php|division[module=tab]", "index.php|division[module=form]", ), |
"open" => array("index.php|division[module=tab]", "index.php|division[module=form]", ), |
5556 |
); |
); |
5558 |
$links[] = array( |
$links[] = array( |
5559 |
"href" => "".OM_ROUTE_TAB."&obj=instructeur_qualite", |
"href" => "".OM_ROUTE_TAB."&obj=instructeur_qualite", |
5560 |
"class" => "instructeur_qualite", |
"class" => "instructeur_qualite", |
5561 |
"title" => _("instructeur_qualite"), |
"title" => __("instructeur_qualite"), |
5562 |
"right" => array("instructeur_qualite", "instructeur_qualite_tab", ), |
"right" => array("instructeur_qualite", "instructeur_qualite_tab", ), |
5563 |
"open" => array("index.php|instructeur_qualite[module=tab]", "index.php|instructeur_qualite[module=form]", ), |
"open" => array("index.php|instructeur_qualite[module=tab]", "index.php|instructeur_qualite[module=form]", ), |
5564 |
); |
); |
5566 |
$links[] = array( |
$links[] = array( |
5567 |
"href" => "".OM_ROUTE_TAB."&obj=instructeur", |
"href" => "".OM_ROUTE_TAB."&obj=instructeur", |
5568 |
"class" => "instructeur", |
"class" => "instructeur", |
5569 |
"title" => _("instructeur"), |
"title" => __("instructeur"), |
5570 |
"right" => array("instructeur", "instructeur_tab", ), |
"right" => array("instructeur", "instructeur_tab", ), |
5571 |
"open" => array("index.php|instructeur[module=tab]", "index.php|instructeur[module=form]", ), |
"open" => array("index.php|instructeur[module=tab]", "index.php|instructeur[module=form]", ), |
5572 |
); |
); |
5574 |
$links[] = array( |
$links[] = array( |
5575 |
"href" => "".OM_ROUTE_TAB."&obj=signataire_habilitation", |
"href" => "".OM_ROUTE_TAB."&obj=signataire_habilitation", |
5576 |
"class" => "signataire_habilitation", |
"class" => "signataire_habilitation", |
5577 |
"title" => _("signataire habilitation"), |
"title" => __("signataire habilitation"), |
5578 |
"right" => array("signataire_habilitation", "signataire_habilitation", ), |
"right" => array("signataire_habilitation", "signataire_habilitation", ), |
5579 |
"open" => array("index.php|signataire_habilitation[module=tab]", "index.php|signataire_habilitation[module=form]", ), |
"open" => array("index.php|signataire_habilitation[module=tab]", "index.php|signataire_habilitation[module=form]", ), |
5580 |
); |
); |
5582 |
$links[] = array( |
$links[] = array( |
5583 |
"href" => "".OM_ROUTE_TAB."&obj=signataire_arrete", |
"href" => "".OM_ROUTE_TAB."&obj=signataire_arrete", |
5584 |
"class" => "signataire_arrete", |
"class" => "signataire_arrete", |
5585 |
"title" => _("signataire arrete"), |
"title" => __("signataire arrete"), |
5586 |
"right" => array("signataire_arrete", "signataire_arrete", ), |
"right" => array("signataire_arrete", "signataire_arrete", ), |
5587 |
"open" => array("index.php|signataire_arrete[module=tab]", "index.php|signataire_arrete[module=form]", ), |
"open" => array("index.php|signataire_arrete[module=tab]", "index.php|signataire_arrete[module=form]", ), |
5588 |
); |
); |
5590 |
$links[] = array( |
$links[] = array( |
5591 |
"href" => "".OM_ROUTE_TAB."&obj=taxe_amenagement", |
"href" => "".OM_ROUTE_TAB."&obj=taxe_amenagement", |
5592 |
"class" => "taxe_amenagement", |
"class" => "taxe_amenagement", |
5593 |
"title" => _("taxes"), |
"title" => __("taxes"), |
5594 |
"right" => array("taxe_amenagement", "taxe_amenagement_tab", ), |
"right" => array("taxe_amenagement", "taxe_amenagement_tab", ), |
5595 |
"open" => array("index.php|taxe_amenagement[module=tab]", "index.php|taxe_amenagement[module=form]", ), |
"open" => array("index.php|taxe_amenagement[module=tab]", "index.php|taxe_amenagement[module=form]", ), |
5596 |
); |
); |
5597 |
// |
// |
5598 |
$links[] = array( |
$links[] = array( |
5599 |
"class" => "category", |
"class" => "category", |
5600 |
"title" => _("gestion des commissions"), |
"title" => __("gestion des commissions"), |
5601 |
"right" => array( |
"right" => array( |
5602 |
"commission_type", "commission_type_tab", |
"commission_type", "commission_type_tab", |
5603 |
), |
), |
5613 |
$links[] = array( |
$links[] = array( |
5614 |
"href" => "".OM_ROUTE_TAB."&obj=commission_type", |
"href" => "".OM_ROUTE_TAB."&obj=commission_type", |
5615 |
"class" => "commission-type", |
"class" => "commission-type", |
5616 |
"title" => _("commission_type"), |
"title" => __("commission_type"), |
5617 |
"right" => array("commission_type", "commission_type_tab", ), |
"right" => array("commission_type", "commission_type_tab", ), |
5618 |
"open" => array("index.php|commission_type[module=tab]", "index.php|commission_type[module=form]", ), |
"open" => array("index.php|commission_type[module=tab]", "index.php|commission_type[module=form]", ), |
5619 |
); |
); |
5620 |
// |
// |
5621 |
$links[] = array( |
$links[] = array( |
5622 |
"class" => "category", |
"class" => "category", |
5623 |
"title" => _("gestion des consultations"), |
"title" => __("gestion des consultations"), |
5624 |
"right" => array( |
"right" => array( |
5625 |
"avis_consultation", "avis_consultation_tab", "service", "service_tab", |
"avis_consultation", "avis_consultation_tab", "service", "service_tab", |
5626 |
"service_categorie", "service_categorie_tab", |
"service_categorie", "service_categorie_tab", |
5640 |
$links[] = array( |
$links[] = array( |
5641 |
"href" => "".OM_ROUTE_TAB."&obj=avis_consultation", |
"href" => "".OM_ROUTE_TAB."&obj=avis_consultation", |
5642 |
"class" => "avis_consultation", |
"class" => "avis_consultation", |
5643 |
"title" => _("avis consultation"), |
"title" => __("avis consultation"), |
5644 |
"right" => array("avis_consultation", "avis_consultation_tab", ), |
"right" => array("avis_consultation", "avis_consultation_tab", ), |
5645 |
"open" => array("index.php|avis_consultation[module=tab]", "index.php|avis_consultation[module=form]", ), |
"open" => array("index.php|avis_consultation[module=tab]", "index.php|avis_consultation[module=form]", ), |
5646 |
); |
); |
5648 |
$links[] = array( |
$links[] = array( |
5649 |
"href" => "".OM_ROUTE_TAB."&obj=service", |
"href" => "".OM_ROUTE_TAB."&obj=service", |
5650 |
"class" => "service", |
"class" => "service", |
5651 |
"title" => _("service"), |
"title" => __("service"), |
5652 |
"right" => array("service", "service_tab", ), |
"right" => array("service", "service_tab", ), |
5653 |
"open" => array("index.php|service[module=tab]", "index.php|service[module=form]", ), |
"open" => array("index.php|service[module=tab]", "index.php|service[module=form]", ), |
5654 |
); |
); |
5655 |
$links[] = array( |
$links[] = array( |
5656 |
"href" => "".OM_ROUTE_TAB."&obj=service_categorie", |
"href" => "".OM_ROUTE_TAB."&obj=service_categorie", |
5657 |
"class" => "service_categorie", |
"class" => "service_categorie", |
5658 |
"title" => _("thematique des services"), |
"title" => __("thematique des services"), |
5659 |
"right" => array("service_categorie", "service_categorie_tab", ), |
"right" => array("service_categorie", "service_categorie_tab", ), |
5660 |
"open" => array("index.php|service_categorie[module=tab]", "index.php|service_categorie[module=form]", ), |
"open" => array("index.php|service_categorie[module=tab]", "index.php|service_categorie[module=form]", ), |
5661 |
); |
); |
5705 |
// Gestion des documents |
// Gestion des documents |
5706 |
$links[] = array( |
$links[] = array( |
5707 |
"class" => "category", |
"class" => "category", |
5708 |
"title" => _("Gestion des documents"), |
"title" => __("Gestion des documents"), |
5709 |
"right" => array( |
"right" => array( |
5710 |
"document_type_categorie", "document_type_tab", |
"document_type_categorie", "document_type_tab", |
5711 |
"document_type", "document_type_tab", |
"document_type", "document_type_tab", |
5723 |
$links[] = array( |
$links[] = array( |
5724 |
"href" => "".OM_ROUTE_TAB."&obj=document_type_categorie", |
"href" => "".OM_ROUTE_TAB."&obj=document_type_categorie", |
5725 |
"class" => "document_type_categorie", |
"class" => "document_type_categorie", |
5726 |
"title" => _("catégorie des documents"), |
"title" => __("catégorie des documents"), |
5727 |
"right" => array("document_type_categorie", "document_type_categorie_tab", ), |
"right" => array("document_type_categorie", "document_type_categorie_tab", ), |
5728 |
"open" => array("index.php|document_type_categorie[module=tab]", "index.php|document_type_categorie[module=form]", ), |
"open" => array("index.php|document_type_categorie[module=tab]", "index.php|document_type_categorie[module=form]", ), |
5729 |
); |
); |
5730 |
$links[] = array( |
$links[] = array( |
5731 |
"href" => "".OM_ROUTE_TAB."&obj=document_type", |
"href" => "".OM_ROUTE_TAB."&obj=document_type", |
5732 |
"class" => "document_type", |
"class" => "document_type", |
5733 |
"title" => _("type des documents"), |
"title" => __("type des documents"), |
5734 |
"right" => array("document_type", "document_type_tab", ), |
"right" => array("document_type", "document_type_tab", ), |
5735 |
"open" => array("index.php|document_type[module=tab]", "index.php|document_type[module=form]", ), |
"open" => array("index.php|document_type[module=tab]", "index.php|document_type[module=form]", ), |
5736 |
); |
); |
5738 |
// Gestion des dossiers |
// Gestion des dossiers |
5739 |
$links[] = array( |
$links[] = array( |
5740 |
"class" => "category", |
"class" => "category", |
5741 |
"title" => _("Gestion des dossiers"), |
"title" => __("Gestion des dossiers"), |
5742 |
"right" => array( |
"right" => array( |
5743 |
"dossier_autorisation_type", "dossier_autorisation_type_tab", |
"dossier_autorisation_type", "dossier_autorisation_type_tab", |
5744 |
"dossier_autorisation_type_detaille", |
"dossier_autorisation_type_detaille", |
5766 |
$links[] = array( |
$links[] = array( |
5767 |
"href" => "".OM_ROUTE_TAB."&obj=etat_dossier_autorisation", |
"href" => "".OM_ROUTE_TAB."&obj=etat_dossier_autorisation", |
5768 |
"class" => "etat_dossier_autorisation", |
"class" => "etat_dossier_autorisation", |
5769 |
"title" => _("etat dossiers autorisations"), |
"title" => __("etat dossiers autorisations"), |
5770 |
"right" => array("etat_dossier_autorisation", "etat_dossier_autorisation_tab", ), |
"right" => array("etat_dossier_autorisation", "etat_dossier_autorisation_tab", ), |
5771 |
"open" => array("index.php|etat_dossier_autorisation[module=tab]", "index.php|etat_dossier_autorisation[module=form]", ), |
"open" => array("index.php|etat_dossier_autorisation[module=tab]", "index.php|etat_dossier_autorisation[module=form]", ), |
5772 |
); |
); |
5774 |
$links[] = array( |
$links[] = array( |
5775 |
"href" => "".OM_ROUTE_TAB."&obj=affectation_automatique", |
"href" => "".OM_ROUTE_TAB."&obj=affectation_automatique", |
5776 |
"class" => "affectation_automatique", |
"class" => "affectation_automatique", |
5777 |
"title" => _("affectation automatique"), |
"title" => __("affectation automatique"), |
5778 |
"right" => array("affectation_automatique", "affectation_automatique_tab", ), |
"right" => array("affectation_automatique", "affectation_automatique_tab", ), |
5779 |
"open" => array("index.php|affectation_automatique[module=tab]", "index.php|affectation_automatique[module=form]", ), |
"open" => array("index.php|affectation_automatique[module=tab]", "index.php|affectation_automatique[module=form]", ), |
5780 |
); |
); |
5782 |
$links[] = array( |
$links[] = array( |
5783 |
"href" => "".OM_ROUTE_TAB."&obj=autorite_competente", |
"href" => "".OM_ROUTE_TAB."&obj=autorite_competente", |
5784 |
"class" => "autorite_competente", |
"class" => "autorite_competente", |
5785 |
"title" => _("autorite")." "._("competente"), |
"title" => _ ("autorite")." ".__("competente"), |
5786 |
"right" => array("autorite_competente", "autorite_competente_tab", ), |
"right" => array("autorite_competente", "autorite_competente_tab", ), |
5787 |
"open" => array("index.php|autorite_competente[module=tab]", "index.php|autorite_competente[module=form]", ), |
"open" => array("index.php|autorite_competente[module=tab]", "index.php|autorite_competente[module=form]", ), |
5788 |
); |
); |
5790 |
$links[] = array( |
$links[] = array( |
5791 |
"href" => "".OM_ROUTE_TAB."&obj=phase", |
"href" => "".OM_ROUTE_TAB."&obj=phase", |
5792 |
"class" => "phase", |
"class" => "phase", |
5793 |
"title" => _("phase"), |
"title" => __("phase"), |
5794 |
"right" => array("phase", "phase_tab", ), |
"right" => array("phase", "phase_tab", ), |
5795 |
"open" => array("index.php|phase[module=tab]", "index.php|phase[module=form]", ), |
"open" => array("index.php|phase[module=tab]", "index.php|phase[module=form]", ), |
5796 |
); |
); |
5798 |
$links[] = array( |
$links[] = array( |
5799 |
"href" => "".OM_ROUTE_TAB."&obj=pec_metier", |
"href" => "".OM_ROUTE_TAB."&obj=pec_metier", |
5800 |
"class" => "pec_metier", |
"class" => "pec_metier", |
5801 |
"title" => _("pec_metier"), |
"title" => __("pec_metier"), |
5802 |
"right" => array("pec_metier", "pec_metier_tab", ), |
"right" => array("pec_metier", "pec_metier_tab", ), |
5803 |
"open" => array("index.php|pec_metier[module=tab]", "index.php|pec_metier[module=form]", ), |
"open" => array("index.php|pec_metier[module=tab]", "index.php|pec_metier[module=form]", ), |
5804 |
); |
); |
5814 |
// Gestion des pièces |
// Gestion des pièces |
5815 |
$links[] = array( |
$links[] = array( |
5816 |
"class" => "category", |
"class" => "category", |
5817 |
"title" => _("Gestion des pièces"), |
"title" => __("Gestion des pièces"), |
5818 |
"right" => array( |
"right" => array( |
5819 |
"document_numerise_type_categorie", "document_numerise_type_categorie_tab", |
"document_numerise_type_categorie", "document_numerise_type_categorie_tab", |
5820 |
"document_numerise_type", |
"document_numerise_type", |
5836 |
$links[] = array( |
$links[] = array( |
5837 |
"href" => "".OM_ROUTE_TAB."&obj=document_numerise_type_categorie", |
"href" => "".OM_ROUTE_TAB."&obj=document_numerise_type_categorie", |
5838 |
"class" => "document_numerise_type_categorie", |
"class" => "document_numerise_type_categorie", |
5839 |
"title" => _("Catégorie des pièces"), |
"title" => __("Catégorie des pièces"), |
5840 |
"right" => array( |
"right" => array( |
5841 |
"document_numerise_type_categorie", |
"document_numerise_type_categorie", |
5842 |
"document_numerise_type_categorie_tab", |
"document_numerise_type_categorie_tab", |
5850 |
$links[] = array( |
$links[] = array( |
5851 |
"href" => "".OM_ROUTE_TAB."&obj=document_numerise_type", |
"href" => "".OM_ROUTE_TAB."&obj=document_numerise_type", |
5852 |
"class" => "document_numerise_type", |
"class" => "document_numerise_type", |
5853 |
"title" => _("Type des pièces"), |
"title" => __("Type des pièces"), |
5854 |
"right" => array( |
"right" => array( |
5855 |
"document_numerise_type", |
"document_numerise_type", |
5856 |
"document_numerise_type_tab", |
"document_numerise_type_tab", |
5867 |
$links[] = array( |
$links[] = array( |
5868 |
"href" => "".OM_ROUTE_TAB."&obj=lien_document_n_type_d_i_t", |
"href" => "".OM_ROUTE_TAB."&obj=lien_document_n_type_d_i_t", |
5869 |
"class" => "lien_document_n_type_d_i_t", |
"class" => "lien_document_n_type_d_i_t", |
5870 |
"title" => _("Nomenclature des pièces"), |
"title" => __("Nomenclature des pièces"), |
5871 |
"right" => array( |
"right" => array( |
5872 |
"lien_document_n_type_d_i_t", |
"lien_document_n_type_d_i_t", |
5873 |
"lien_document_n_type_d_i_t_tab", |
"lien_document_n_type_d_i_t_tab", |
5884 |
$links[] = array( |
$links[] = array( |
5885 |
"href" => "".OM_ROUTE_FORM."&obj=document_numerise_traitement_metadonnees&action=100&idx=0", |
"href" => "".OM_ROUTE_FORM."&obj=document_numerise_traitement_metadonnees&action=100&idx=0", |
5886 |
"class" => "document_numerise_traitement_metadonnees", |
"class" => "document_numerise_traitement_metadonnees", |
5887 |
"title" => _("Mise à jour des métadonnées"), |
"title" => __("Mise à jour des métadonnées"), |
5888 |
"description" => _("Mettre à jour les métadonnées de tous les documents numérisés."), |
"description" => __("Mettre à jour les métadonnées de tous les documents numérisés."), |
5889 |
"right" => array( |
"right" => array( |
5890 |
"document_numerise_traitement_metadonnees", |
"document_numerise_traitement_metadonnees", |
5891 |
"document_numerise_traitement_metadonnees_executer", |
"document_numerise_traitement_metadonnees_executer", |
5896 |
// Gestion des contentieux |
// Gestion des contentieux |
5897 |
$links[] = array( |
$links[] = array( |
5898 |
"class" => "category", |
"class" => "category", |
5899 |
"title" => _("Gestion des contentieux"), |
"title" => __("Gestion des contentieux"), |
5900 |
"right" => array( |
"right" => array( |
5901 |
"objet_recours", "objet_recours_tab", "moyen_souleve", "moyen_souleve_tab", |
"objet_recours", "objet_recours_tab", "moyen_souleve", "moyen_souleve_tab", |
5902 |
"moyen_retenu_juge", "moyen_retenu_juge_tab", |
"moyen_retenu_juge", "moyen_retenu_juge_tab", |
5914 |
$links[] = array( |
$links[] = array( |
5915 |
"href" => "".OM_ROUTE_TAB."&obj=objet_recours", |
"href" => "".OM_ROUTE_TAB."&obj=objet_recours", |
5916 |
"class" => "objet_recours", |
"class" => "objet_recours", |
5917 |
"title" => _("objet_recours"), |
"title" => __("objet_recours"), |
5918 |
"right" => array( |
"right" => array( |
5919 |
"objet_recours", "objet_recours_tab", |
"objet_recours", "objet_recours_tab", |
5920 |
), |
), |
5926 |
$links[] = array( |
$links[] = array( |
5927 |
"href" => "".OM_ROUTE_TAB."&obj=moyen_souleve", |
"href" => "".OM_ROUTE_TAB."&obj=moyen_souleve", |
5928 |
"class" => "moyen_souleve", |
"class" => "moyen_souleve", |
5929 |
"title" => _("moyen_souleve"), |
"title" => __("moyen_souleve"), |
5930 |
"right" => array( |
"right" => array( |
5931 |
"moyen_souleve", "moyen_souleve_tab", |
"moyen_souleve", "moyen_souleve_tab", |
5932 |
), |
), |
5938 |
$links[] = array( |
$links[] = array( |
5939 |
"href" => "".OM_ROUTE_TAB."&obj=moyen_retenu_juge", |
"href" => "".OM_ROUTE_TAB."&obj=moyen_retenu_juge", |
5940 |
"class" => "moyen_retenu_juge", |
"class" => "moyen_retenu_juge", |
5941 |
"title" => _("moyen_retenu_juge"), |
"title" => __("moyen_retenu_juge"), |
5942 |
"right" => array( |
"right" => array( |
5943 |
"moyen_retenu_juge", "moyen_retenu_juge_tab", |
"moyen_retenu_juge", "moyen_retenu_juge_tab", |
5944 |
), |
), |
5950 |
// |
// |
5951 |
$links[] = array( |
$links[] = array( |
5952 |
"class" => "category", |
"class" => "category", |
5953 |
"title" => _("géolocalisation"), |
"title" => __("géolocalisation"), |
5954 |
"right" => array( |
"right" => array( |
5955 |
"sig_groupe", |
"sig_groupe", |
5956 |
"sig_sousgroupe", |
"sig_sousgroupe", |
5961 |
$links[] = array( |
$links[] = array( |
5962 |
"href" => "".OM_ROUTE_TAB."&obj=sig_couche", |
"href" => "".OM_ROUTE_TAB."&obj=sig_couche", |
5963 |
"class" => "sig_couche", |
"class" => "sig_couche", |
5964 |
"title" => _("Couches"), |
"title" => __("Couches"), |
5965 |
"right" => array("sig_contrainte", "sig_contrainte_tab","sig_couche", "sig_couche_tab", ), |
"right" => array("sig_contrainte", "sig_contrainte_tab","sig_couche", "sig_couche_tab", ), |
5966 |
"open" => array("index.php|sig_couche[module=tab]", "index.php|sig_couche[module=form]", ), |
"open" => array("index.php|sig_couche[module=tab]", "index.php|sig_couche[module=form]", ), |
5967 |
); |
); |
5969 |
$links[] = array( |
$links[] = array( |
5970 |
"href" => "".OM_ROUTE_TAB."&obj=sig_groupe", |
"href" => "".OM_ROUTE_TAB."&obj=sig_groupe", |
5971 |
"class" => "sig_groupe", |
"class" => "sig_groupe", |
5972 |
"title" => _("sig_groupe"), |
"title" => __("sig_groupe"), |
5973 |
"right" => array( |
"right" => array( |
5974 |
"sig_groupe", "sig_groupe_tab", |
"sig_groupe", "sig_groupe_tab", |
5975 |
), |
), |
5981 |
$links[] = array( |
$links[] = array( |
5982 |
"href" => "".OM_ROUTE_TAB."&obj=sig_sousgroupe", |
"href" => "".OM_ROUTE_TAB."&obj=sig_sousgroupe", |
5983 |
"class" => "sig_sousgroupe", |
"class" => "sig_sousgroupe", |
5984 |
"title" => _("sig_sousgroupe"), |
"title" => __("sig_sousgroupe"), |
5985 |
"right" => array( |
"right" => array( |
5986 |
"sig_sousgroupe", "sig_sousgroupe_tab", |
"sig_sousgroupe", "sig_sousgroupe_tab", |
5987 |
), |
), |
5993 |
$links[] = array( |
$links[] = array( |
5994 |
"href" => "".OM_ROUTE_TAB."&obj=sig_contrainte", |
"href" => "".OM_ROUTE_TAB."&obj=sig_contrainte", |
5995 |
"class" => "sig_contrainte", |
"class" => "sig_contrainte", |
5996 |
"title" => _("sig_contrainte"), |
"title" => __("sig_contrainte"), |
5997 |
"right" => array( |
"right" => array( |
5998 |
"sig_contrainte", "sig_contrainte_tab", "sig_attribut", "sig_attribut_tab" |
"sig_contrainte", "sig_contrainte_tab", "sig_attribut", "sig_attribut_tab" |
5999 |
), |
), |
6010 |
// {{{ Rubrique ADMINISTRATION |
// {{{ Rubrique ADMINISTRATION |
6011 |
// |
// |
6012 |
$rubrik = array( |
$rubrik = array( |
6013 |
"title" => _("administration"), |
"title" => __("administration"), |
6014 |
"class" => "administration", |
"class" => "administration", |
6015 |
"right" => "menu_administration", |
"right" => "menu_administration", |
6016 |
); |
); |
6035 |
$links[] = array( |
$links[] = array( |
6036 |
"href" => "".OM_ROUTE_TAB."&obj=om_parametre", |
"href" => "".OM_ROUTE_TAB."&obj=om_parametre", |
6037 |
"class" => "parametre", |
"class" => "parametre", |
6038 |
"title" => _("om_parametre"), |
"title" => __("om_parametre"), |
6039 |
"right" => array("om_parametre", "om_parametre_tab", ), |
"right" => array("om_parametre", "om_parametre_tab", ), |
6040 |
"open" => array("index.php|om_parametre[module=tab]", "index.php|om_parametre[module=form]", ), |
"open" => array("index.php|om_parametre[module=tab]", "index.php|om_parametre[module=form]", ), |
6041 |
); |
); |
6065 |
// |
// |
6066 |
$links[] = array( |
$links[] = array( |
6067 |
"class" => "category", |
"class" => "category", |
6068 |
"title" => _("gestion des utilisateurs"), |
"title" => __("gestion des utilisateurs"), |
6069 |
"right" => array( |
"right" => array( |
6070 |
"om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab", |
"om_utilisateur", "om_utilisateur_tab", "om_profil", "om_profil_tab", |
6071 |
"om_droit", "om_droit_tab", "directory", |
"om_droit", "om_droit_tab", "directory", |
6083 |
$links[] = array( |
$links[] = array( |
6084 |
"href" => "".OM_ROUTE_TAB."&obj=om_profil", |
"href" => "".OM_ROUTE_TAB."&obj=om_profil", |
6085 |
"class" => "profil", |
"class" => "profil", |
6086 |
"title" => _("om_profil"), |
"title" => __("om_profil"), |
6087 |
"right" => array("om_profil", "om_profil_tab", ), |
"right" => array("om_profil", "om_profil_tab", ), |
6088 |
"open" => array("index.php|om_profil[module=tab]", "index.php|om_profil[module=form]", ), |
"open" => array("index.php|om_profil[module=tab]", "index.php|om_profil[module=form]", ), |
6089 |
); |
); |
6091 |
$links[] = array( |
$links[] = array( |
6092 |
"href" => "".OM_ROUTE_TAB."&obj=om_droit", |
"href" => "".OM_ROUTE_TAB."&obj=om_droit", |
6093 |
"class" => "droit", |
"class" => "droit", |
6094 |
"title" => _("om_droit"), |
"title" => __("om_droit"), |
6095 |
"right" => array("om_droit", "om_droit_tab", ), |
"right" => array("om_droit", "om_droit_tab", ), |
6096 |
"open" => array("index.php|om_droit[module=tab]", "index.php|om_droit[module=form]", ), |
"open" => array("index.php|om_droit[module=tab]", "index.php|om_droit[module=form]", ), |
6097 |
); |
); |
6099 |
$links[] = array( |
$links[] = array( |
6100 |
"href" => "".OM_ROUTE_TAB."&obj=om_utilisateur", |
"href" => "".OM_ROUTE_TAB."&obj=om_utilisateur", |
6101 |
"class" => "utilisateur", |
"class" => "utilisateur", |
6102 |
"title" => _("om_utilisateur"), |
"title" => __("om_utilisateur"), |
6103 |
"right" => array("om_utilisateur", "om_utilisateur_tab", ), |
"right" => array("om_utilisateur", "om_utilisateur_tab", ), |
6104 |
"open" => array( |
"open" => array( |
6105 |
"index.php|om_utilisateur[module=tab]", |
"index.php|om_utilisateur[module=tab]", |
6119 |
$links[] = array( |
$links[] = array( |
6120 |
"href" => "".OM_ROUTE_FORM."&obj=om_utilisateur&idx=0&action=11", |
"href" => "".OM_ROUTE_FORM."&obj=om_utilisateur&idx=0&action=11", |
6121 |
"class" => "annuaire", |
"class" => "annuaire", |
6122 |
"title" => _("annuaire"), |
"title" => __("annuaire"), |
6123 |
"right" => array("om_utilisateur", "om_utilisateur_synchroniser", ), |
"right" => array("om_utilisateur", "om_utilisateur_synchroniser", ), |
6124 |
"open" => array("index.php|om_utilisateur[module=form][action=11]", ), |
"open" => array("index.php|om_utilisateur[module=form][action=11]", ), |
6125 |
"parameters" => array("isDirectoryOptionEnabled" => true, ), |
"parameters" => array("isDirectoryOptionEnabled" => true, ), |
6127 |
// |
// |
6128 |
$links[] = array( |
$links[] = array( |
6129 |
"class" => "category", |
"class" => "category", |
6130 |
"title" => _("tableaux de bord"), |
"title" => __("tableaux de bord"), |
6131 |
"right" => array( |
"right" => array( |
6132 |
"om_widget", "om_widget_tab", "om_dashboard", |
"om_widget", "om_widget_tab", "om_dashboard", |
6133 |
), |
), |
6143 |
$links[] = array( |
$links[] = array( |
6144 |
"href" => "".OM_ROUTE_TAB."&obj=om_widget", |
"href" => "".OM_ROUTE_TAB."&obj=om_widget", |
6145 |
"class" => "om_widget", |
"class" => "om_widget", |
6146 |
"title" => _("om_widget"), |
"title" => __("om_widget"), |
6147 |
"right" => array("om_widget", "om_widget_tab", ), |
"right" => array("om_widget", "om_widget_tab", ), |
6148 |
"open" => array("index.php|om_widget[module=tab]", "index.php|om_widget[module=form]", ), |
"open" => array("index.php|om_widget[module=tab]", "index.php|om_widget[module=form]", ), |
6149 |
); |
); |
6158 |
$links[] = array( |
$links[] = array( |
6159 |
"href" => "".OM_ROUTE_FORM."&obj=om_dashboard&idx=0&action=4", |
"href" => "".OM_ROUTE_FORM."&obj=om_dashboard&idx=0&action=4", |
6160 |
"class" => "om_dashboard", |
"class" => "om_dashboard", |
6161 |
"title" => _("composition"), |
"title" => __("composition"), |
6162 |
"right" => array("om_dashboard", ), |
"right" => array("om_dashboard", ), |
6163 |
"open" => array("index.php|om_dashboard[module=form][action=4]", ), |
"open" => array("index.php|om_dashboard[module=form][action=4]", ), |
6164 |
); |
); |
6165 |
// |
// |
6166 |
$links[] = array( |
$links[] = array( |
6167 |
"class" => "category", |
"class" => "category", |
6168 |
"title" => _("sig"), |
"title" => __("sig"), |
6169 |
"right" => array( |
"right" => array( |
6170 |
"om_sig_map", "om_sig_map_tab", "om_sig_flux", "om_sig_flux_tab", "om_sig_extent", "om_sig_extent_tab", |
"om_sig_map", "om_sig_map_tab", "om_sig_flux", "om_sig_flux_tab", "om_sig_extent", "om_sig_extent_tab", |
6171 |
), |
), |
6183 |
$links[] = array( |
$links[] = array( |
6184 |
"href" => "".OM_ROUTE_TAB."&obj=om_sig_extent", |
"href" => "".OM_ROUTE_TAB."&obj=om_sig_extent", |
6185 |
"class" => "om_sig_extent", |
"class" => "om_sig_extent", |
6186 |
"title" => _("om_sig_extent"), |
"title" => __("om_sig_extent"), |
6187 |
"right" => array("om_sig_extent", "om_sig_extent_tab", ), |
"right" => array("om_sig_extent", "om_sig_extent_tab", ), |
6188 |
"open" => array("index.php|om_sig_extent[module=tab]", "index.php|om_sig_extent[module=form]", ), |
"open" => array("index.php|om_sig_extent[module=tab]", "index.php|om_sig_extent[module=form]", ), |
6189 |
"parameters" => array("option_localisation" => "sig_interne", ), |
"parameters" => array("option_localisation" => "sig_interne", ), |
6192 |
$links[] = array( |
$links[] = array( |
6193 |
"href" => "".OM_ROUTE_TAB."&obj=om_sig_map", |
"href" => "".OM_ROUTE_TAB."&obj=om_sig_map", |
6194 |
"class" => "om_sig_map", |
"class" => "om_sig_map", |
6195 |
"title" => _("om_sig_map"), |
"title" => __("om_sig_map"), |
6196 |
"right" => array("om_sig_map", "om_sig_map_tab", ), |
"right" => array("om_sig_map", "om_sig_map_tab", ), |
6197 |
"open" => array("index.php|om_sig_map[module=tab]", "index.php|om_sig_map[module=form]", ), |
"open" => array("index.php|om_sig_map[module=tab]", "index.php|om_sig_map[module=form]", ), |
6198 |
"parameters" => array("option_localisation" => "sig_interne", ), |
"parameters" => array("option_localisation" => "sig_interne", ), |
6201 |
$links[] = array( |
$links[] = array( |
6202 |
"href" => "".OM_ROUTE_TAB."&obj=om_sig_flux", |
"href" => "".OM_ROUTE_TAB."&obj=om_sig_flux", |
6203 |
"class" => "om_sig_flux", |
"class" => "om_sig_flux", |
6204 |
"title" => _("om_sig_flux"), |
"title" => __("om_sig_flux"), |
6205 |
"right" => array("om_sig_flux", "om_sig_flux_tab", ), |
"right" => array("om_sig_flux", "om_sig_flux_tab", ), |
6206 |
"open" => array("index.php|om_sig_flux[module=tab]", "index.php|om_sig_flux[module=form]", ), |
"open" => array("index.php|om_sig_flux[module=tab]", "index.php|om_sig_flux[module=form]", ), |
6207 |
"parameters" => array("option_localisation" => "sig_interne", ), |
"parameters" => array("option_localisation" => "sig_interne", ), |
6209 |
// |
// |
6210 |
$links[] = array( |
$links[] = array( |
6211 |
"class" => "category", |
"class" => "category", |
6212 |
"title" => _("options avancees"), |
"title" => __("options avancees"), |
6213 |
"right" => array("import", "gen", "om_requete", "om_requete_tab", |
"right" => array("import", "gen", "om_requete", "om_requete_tab", |
6214 |
"om_sousetat", "om_sousetat_tab",), |
"om_sousetat", "om_sousetat_tab",), |
6215 |
); |
); |
6224 |
$links[] = array( |
$links[] = array( |
6225 |
"href" => "../app/settings.php?controlpanel=interface_referentiel_erp", |
"href" => "../app/settings.php?controlpanel=interface_referentiel_erp", |
6226 |
"class" => "interface_referentiel_erp", |
"class" => "interface_referentiel_erp", |
6227 |
"title" => _("interface_referentiel_erp"), |
"title" => __("interface_referentiel_erp"), |
6228 |
"right" => array("interface_referentiel_erp", ), |
"right" => array("interface_referentiel_erp", ), |
6229 |
"open" => array("settings.php|[controlpanel=interface_referentiel_erp]", ), |
"open" => array("settings.php|[controlpanel=interface_referentiel_erp]", ), |
6230 |
); |
); |
6239 |
$links[] = array( |
$links[] = array( |
6240 |
"href" => "".OM_ROUTE_TAB."&obj=om_sousetat", |
"href" => "".OM_ROUTE_TAB."&obj=om_sousetat", |
6241 |
"class" => "om_sousetat", |
"class" => "om_sousetat", |
6242 |
"title" => _("om_sousetat"), |
"title" => __("om_sousetat"), |
6243 |
"right" => array("om_sousetat", "om_sousetat_tab", ), |
"right" => array("om_sousetat", "om_sousetat_tab", ), |
6244 |
"open" => array("index.php|om_sousetat[module=tab]", "index.php|om_sousetat[module=form]", ), |
"open" => array("index.php|om_sousetat[module=tab]", "index.php|om_sousetat[module=form]", ), |
6245 |
); |
); |
6252 |
$links[] = array( |
$links[] = array( |
6253 |
"href" => "".OM_ROUTE_TAB."&obj=om_requete", |
"href" => "".OM_ROUTE_TAB."&obj=om_requete", |
6254 |
"class" => "om_requete", |
"class" => "om_requete", |
6255 |
"title" => _("om_requete"), |
"title" => __("om_requete"), |
6256 |
"right" => array("om_requete", "om_requete_tab", ), |
"right" => array("om_requete", "om_requete_tab", ), |
6257 |
"open" => array("index.php|om_requete[module=tab]", "index.php|om_requete[module=form]", ), |
"open" => array("index.php|om_requete[module=tab]", "index.php|om_requete[module=form]", ), |
6258 |
); |
); |
6265 |
$links[] = array( |
$links[] = array( |
6266 |
"href" => "".OM_ROUTE_TAB."&obj=task", |
"href" => "".OM_ROUTE_TAB."&obj=task", |
6267 |
"class" => "task", |
"class" => "task", |
6268 |
"title" => _("Moniteur Plat'AU"), |
"title" => __("Moniteur Plat'AU"), |
6269 |
"right" => array("task", "task_tab", ), |
"right" => array("task", "task_tab", ), |
6270 |
"open" => array("index.php|task[module=tab]", "index.php|task[module=form]", ), |
"open" => array("index.php|task[module=tab]", "index.php|task[module=form]", ), |
6271 |
); |
); |
6304 |
$links[] = array( |
$links[] = array( |
6305 |
"href" => "../app/import_specific.php", |
"href" => "../app/import_specific.php", |
6306 |
"class" => "import_specific", |
"class" => "import_specific", |
6307 |
"title" => _("Import specifique"), |
"title" => __("Import specifique"), |
6308 |
"right" => array("import", ), |
"right" => array("import", ), |
6309 |
"open" => array("import_specific.php|", ), |
"open" => array("import_specific.php|", ), |
6310 |
); |
); |
6315 |
); |
); |
6316 |
// |
// |
6317 |
$links[] = array( |
$links[] = array( |
6318 |
"title" => _("Generateur"), |
"title" => __("Generateur"), |
6319 |
"href" => OM_ROUTE_MODULE_GEN, |
"href" => OM_ROUTE_MODULE_GEN, |
6320 |
"class" => "generator", |
"class" => "generator", |
6321 |
"right" => array("gen", ), |
"right" => array("gen", ), |
6334 |
$links[] = array( |
$links[] = array( |
6335 |
"href" => "".OM_ROUTE_FORM."&obj=contrainte&action=100&idx=0", |
"href" => "".OM_ROUTE_FORM."&obj=contrainte&action=100&idx=0", |
6336 |
"class" => "contrainte", |
"class" => "contrainte", |
6337 |
"title" => _("synchronisation des contraintes"), |
"title" => __("synchronisation des contraintes"), |
6338 |
"right" => array("contrainte", "contrainte_synchronisation", ), |
"right" => array("contrainte", "contrainte_synchronisation", ), |
6339 |
"open" => array("index.php|contrainte[module=form][action=100]", ), |
"open" => array("index.php|contrainte[module=form][action=100]", ), |
6340 |
"parameters" => array( |
"parameters" => array( |
6345 |
$links[] = array( |
$links[] = array( |
6346 |
"href" => "".OM_ROUTE_FORM."&obj=dossier_instruction&action=126&idx=0", |
"href" => "".OM_ROUTE_FORM."&obj=dossier_instruction&action=126&idx=0", |
6347 |
"class" => "geocoder", |
"class" => "geocoder", |
6348 |
"title" => _("Géolocalisation des dossiers"), |
"title" => __("Géolocalisation des dossiers"), |
6349 |
"right" => array("dossier_instruction_geocoder", ), |
"right" => array("dossier_instruction_geocoder", ), |
6350 |
"open" => array("index.php|dossier_instruction[module=form][action=126]", ), |
"open" => array("index.php|dossier_instruction[module=form][action=126]", ), |
6351 |
"parameters" => array( |
"parameters" => array( |
7024 |
// échappement des caractères spéciaux |
// échappement des caractères spéciaux |
7025 |
$value = pg_escape_string($value); |
$value = pg_escape_string($value); |
7026 |
// encodage |
// encodage |
7027 |
if (DBCHARSET != 'UTF8' and HTTPCHARSET == 'UTF-8') { |
if (DBCHARSET != 'UTF8' && HTTPCHARSET == 'UTF-8') { |
7028 |
$value = utf8_decode($value); |
$value = utf8_decode($value); |
7029 |
} |
} |
7030 |
// normalisation des caractères |
// normalisation des caractères |
8011 |
|
|
8012 |
// ajout des utilisateurs |
// ajout des utilisateurs |
8013 |
$attribError = false; |
$attribError = false; |
8014 |
if (is_array($users) and array_key_exists('userToAdd', $users)) { |
if (is_array($users) && array_key_exists('userToAdd', $users)) { |
8015 |
$this->log(__METHOD__, "ajout des utilisateurs ...", 'DEBUG', 'ldap'); |
$this->log(__METHOD__, "ajout des utilisateurs ...", 'DEBUG', 'ldap'); |
8016 |
foreach ($users['userToAdd'] as $user) { |
foreach ($users['userToAdd'] as $user) { |
8017 |
if (!array_key_exists($this->directory_config['ldap_login_attrib'], $user)) { |
if (!array_key_exists($this->directory_config['ldap_login_attrib'], $user)) { |
8040 |
} |
} |
8041 |
|
|
8042 |
// suppression des utilisateurs |
// suppression des utilisateurs |
8043 |
if (is_array($users) and array_key_exists('userToDelete', $users)) { |
if (is_array($users) && array_key_exists('userToDelete', $users)) { |
8044 |
$this->log(__METHOD__, "suppression des utilisateurs ...", 'DEBUG', 'ldap'); |
$this->log(__METHOD__, "suppression des utilisateurs ...", 'DEBUG', 'ldap'); |
8045 |
foreach ($users['userToDelete'] as $user) { |
foreach ($users['userToDelete'] as $user) { |
8046 |
$om_utilisateur = $this->get_inst__om_dbform(array( |
$om_utilisateur = $this->get_inst__om_dbform(array( |
8063 |
} |
} |
8064 |
|
|
8065 |
// mise a jour des utilisateurs |
// mise a jour des utilisateurs |
8066 |
if (is_array($users) and array_key_exists('userToUpdate', $users)) { |
if (is_array($users) && array_key_exists('userToUpdate', $users)) { |
8067 |
$this->log(__METHOD__, "mise à jour des utilisateurs ...", 'DEBUG', 'ldap'); |
$this->log(__METHOD__, "mise à jour des utilisateurs ...", 'DEBUG', 'ldap'); |
8068 |
foreach ($users['userToUpdate'] as $user) { |
foreach ($users['userToUpdate'] as $user) { |
8069 |
$user_datas = $this->getValFUserToUpdate($user); |
$user_datas = $this->getValFUserToUpdate($user); |