diff --git a/application/modules/admin/views/scripts/index/index.phtml b/application/modules/admin/views/scripts/index/index.phtml index e9c6b90906fc7247466b986cbb21d7f48b35b92f..bcf809c458b6b247ef6f6ba2b91a4cc635853303 100644 --- a/application/modules/admin/views/scripts/index/index.phtml +++ b/application/modules/admin/views/scripts/index/index.phtml @@ -1,14 +1,9 @@ <h2><?php echo $this->_('Paramètres du site');?> :</h2> <?php -$profil = Class_Profil::getCurrentProfil(); -$lien_edit_site = $lien = $edit_domain_name = ''; +$lien = $edit_domain_name = ''; if ($this->user->isAdmin()) { $lien = sprintf('<a href="admin?setsiteok=%s" style="margin-left:30px">» %s «</a>', $this->href_site, $this->lien_site); - $lien_edit_site = sprintf('<a href="%s" style="margin-left:30px" >» Paramétrer «</a>', - $this->url(['controller' => 'profil', - 'action' => 'accueil', - 'id_profil' => $profil->getId()])); $edit_domain_name = $this->tagAnchor($this->url(['module' => 'admin', 'controller' => 'index', @@ -20,8 +15,6 @@ if ($this->user->isAdmin()) { } echo $this->ligneInfos($this->_('Etat du site'), $this->etat_site . $lien) - . $this->ligneInfos($this->_('Profil'), $profil->getLibelle() . $lien_edit_site) - . $this->ligneInfos($this->_('Thème'), $profil->getSkin()) . $this->ligneInfos($this->_('Nom du domaine'), Class_AdminVar::get('NOM_DOMAINE') . $edit_domain_name); ?> diff --git a/library/ZendAfi/View/Helper/Admin/CosmoStatus.php b/library/ZendAfi/View/Helper/Admin/CosmoStatus.php index 0a0328134cbbefb36eae4781484c25f1ae09e012..c228c197ee90e1a29591cccaccca73ea395e09b9 100644 --- a/library/ZendAfi/View/Helper/Admin/CosmoStatus.php +++ b/library/ZendAfi/View/Helper/Admin/CosmoStatus.php @@ -58,7 +58,7 @@ class ZendAfi_View_Helper_Admin_CosmoStatus extends ZendAfi_View_Helper_BaseHelp $frequence = (int)Class_CosmoVar::getValueOf('integration_frequence'); return 0 < $frequence && $frequence < $ecart - ? $this->info($this->_('Les traitements d\'intégration n\'ont pas été effectués depuis'), + ? $this->error($this->_('Les traitements d\'intégration n\'ont pas été effectués depuis'), $this->_('%s jours', $ecart)) : ''; } @@ -72,6 +72,11 @@ class ZendAfi_View_Helper_Admin_CosmoStatus extends ZendAfi_View_Helper_BaseHelp } + protected function error($label, $value) { + return $this->view->ligneInfos($label, $value, 'error'); + } + + protected function info($label, $value) { return $this->view->ligneInfos($label, $value); } diff --git a/library/ZendAfi/View/Helper/Admin/LigneInfos.php b/library/ZendAfi/View/Helper/Admin/LigneInfos.php index 402284f2ffb28341d60e99223864251d18b250af..fee4321128708a2a6f88e32f63a2f232b1986333 100644 --- a/library/ZendAfi/View/Helper/Admin/LigneInfos.php +++ b/library/ZendAfi/View/Helper/Admin/LigneInfos.php @@ -16,16 +16,29 @@ * * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE * along with BOKEH; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -////////////////////////////////////////////////////////////////////////////////////////// -// OPAC3 : Affichage d'une information dans la page admin index -////////////////////////////////////////////////////////////////////////////////////////// + class ZendAfi_View_Helper_Admin_LigneInfos extends ZendAfi_View_Helper_BaseHelper { - public function LigneInfos($masque,$valeur) { - $html = '<div class="ligne_info">'; - if($masque) $html .= $masque.' : '; - if($valeur) $html .= '<b>'.$valeur.'</b>'; - return $html .= '</div>'; + + public function ligneInfos($label, $value, $class='') { + return $this + ->_tag('div', + $this->label($label) . $this->value($value), + ['class' => 'ligne_info ' . $class]); + } + + + protected function label($label) { + return $label + ? ($label.' : ') + : ''; + } + + + protected function value($value) { + return $value + ? $this->_tag('b', $value) + : ''; } }