From b575a98c1bbd16691422b8a8a3094c67cc0cd816 Mon Sep 17 00:00:00 2001 From: "vincent@cubedesigners.com" Date: Wed, 26 Nov 2014 12:49:46 +0000 Subject: [PATCH] --- framework/application/forms/Settings.php | 13 ++++++++++++- .../application/views/scripts/common/header.phtml | 8 ++------ 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/framework/application/forms/Settings.php b/framework/application/forms/Settings.php index 8966e05..585dbfd 100644 --- a/framework/application/forms/Settings.php +++ b/framework/application/forms/Settings.php @@ -11,7 +11,6 @@ class Cubedesigners_Form_Settings extends CubeIT_Form_Settings { $locales->setLabel('Langues actives'); $this->addElement($locales); - $longTitle = new Zend_Form_Element_Text('longTitle'); $longTitle->setLabel('Titre long par défaut (limité à 65 caractères)'); $longTitle->setAttrib('maxlength', 65); @@ -23,6 +22,18 @@ class Cubedesigners_Form_Settings extends CubeIT_Form_Settings { $description->setAttrib('rows', 2); $this->addElementLocalized($description); + /* + * Logo + */ + + $logoTitle = new Zend_Form_Element_Text('logoTitle'); + $logoTitle->setLabel('Titre (logo)'); + $this->addElementLocalized($logoTitle); + + $baseline = new Zend_Form_Element_Text('baseline'); + $baseline->setLabel('Baseline'); + $this->addElementLocalized($baseline); + /* BLOC CONTACT */ $contact = new Cubedesigners_Form_CMS_Sub_Contact(); $contact->setLabel('Informations de contact'); diff --git a/framework/application/views/scripts/common/header.phtml b/framework/application/views/scripts/common/header.phtml index 43868fd..ec7d33e 100644 --- a/framework/application/views/scripts/common/header.phtml +++ b/framework/application/views/scripts/common/header.phtml @@ -9,21 +9,17 @@ if (!is_null($homepage)) { ?>
\ No newline at end of file -- 2.39.5