|
|
|
@ -48,10 +48,10 @@ function exec_admin_plugin_dist($retour='') {
|
|
|
|
|
echo debut_boite_info(true); |
|
|
|
|
$s = ""; |
|
|
|
|
$s .= _T('info_gauche_admin_tech'); |
|
|
|
|
$s .= "<p><img src='"._DIR_IMG_PACK . "puce-verte.gif' width='9' height='9' alt='' /> "._T('plugin_etat_stable')."</p>"; |
|
|
|
|
$s .= "<p><img src='"._DIR_IMG_PACK . "puce-orange.gif' width='9' height='9' alt='' /> "._T('plugin_etat_test')."</p>"; |
|
|
|
|
$s .= "<p><img src='"._DIR_IMG_PACK . "puce-poubelle.gif' width='9' height='9' alt='' /> "._T('plugin_etat_developpement')."</p>"; |
|
|
|
|
$s .= "<p><img src='"._DIR_IMG_PACK . "puce-rouge.gif' width='9' height='9' alt='' /> "._T('plugin_etat_experimental')."</p>"; |
|
|
|
|
$s .= "<p><img src='". chemin_image('puce-verte.gif') . "' width='9' height='9' alt='' /> "._T('plugin_etat_stable')."</p>"; |
|
|
|
|
$s .= "<p><img src='". chemin_image('puce-orange.gif') . "' width='9' height='9' alt='' /> "._T('plugin_etat_test')."</p>"; |
|
|
|
|
$s .= "<p><img src='". chemin_image('puce-poubelle.gif') . "' width='9' height='9' alt='' /> "._T('plugin_etat_developpement')."</p>"; |
|
|
|
|
$s .= "<p><img src='". chemin_image('puce-rouge.gif') . "' width='9' height='9' alt='' /> "._T('plugin_etat_experimental')."</p>"; |
|
|
|
|
echo $s; |
|
|
|
|
echo fin_boite_info(true); |
|
|
|
|
|
|
|
|
@ -354,10 +354,10 @@ function ligne_plug($plug_file, $actif, $id){
|
|
|
|
|
|
|
|
|
|
$id = substr(md5("aide_$plug_file"),0,8); |
|
|
|
|
$puce_etat = array( |
|
|
|
|
"dev"=>"<img src='"._DIR_IMG_PACK . "puce-poubelle.gif' width='9' height='9' alt='dev' />", |
|
|
|
|
"test"=>"<img src='"._DIR_IMG_PACK . "puce-orange.gif' width='9' height='9' alt='dev' />", |
|
|
|
|
"stable"=>"<img src='"._DIR_IMG_PACK . "puce-verte.gif' width='9' height='9' alt='dev' />", |
|
|
|
|
"experimental"=>"<img src='"._DIR_IMG_PACK . "puce-rouge.gif' width='9' height='9' alt='dev' />", |
|
|
|
|
"dev"=>"<img src='". chemin_image('puce-poubelle.gif') . "' width='9' height='9' alt='dev' />", |
|
|
|
|
"test"=>"<img src='". chemin_image('puce-orange.gif') . "' width='9' height='9' alt='dev' />", |
|
|
|
|
"stable"=>"<img src='". chemin_image('puce-verte.gif') . "' width='9' height='9' alt='dev' />", |
|
|
|
|
"experimental"=>"<img src='". chemin_image('puce-rouge.gif') . "' width='9' height='9' alt='dev' />", |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
if (isset($puce_etat[$etat])) |
|
|
|
|