$templates['Recherche clinique'] = array('listing' => 'Listing');
$templates['Parcours patient'] = array('parcours' => 'Parcours', 'soins' => 'Soins support');
$templates['Traitements'] = array('traitement' => 'Traitement (Texte avec accordéon)');
+ $templates['Actualités'] = array('news' => 'Actualités');
$templates['Infos pratiques'] = array('plan' => 'Plan du centre',
'acces' => 'Plan d\'accès',
'rendezvous' => 'Demande de rendez-vous');
--- /dev/null
+<?php\r
+\r
+class CCGM_Form_CMS_News extends CCGM_Form_CMS_Default {\r
+ public function init() {\r
+ parent::init();\r
+\r
+ $contenus = new CCGM_Form_Element_Markitup('text');\r
+ $contenus->setLabel('Texte d\'introduction');\r
+ $contenus->setAttrib('rows', 5);\r
+ $this->addElement($contenus);\r
+\r
+ $news = new CCGM_Form_CMS_Element_News('news_items');\r
+ $news->setLabel('Actualités');\r
+ $this->addElement($news);\r
+\r
+ $this->removeElement('sidebar');\r
+ }\r
+}
\ No newline at end of file
--- /dev/null
+<?php\r
+$this->contentWidth = 980;\r
+?>\r
+\r
+<section id="content">\r
+ <div id="c">\r
+ <?php\r
+ echo $this->markupDotclear($this->text);\r
+ ?>\r
+ </div>\r
+</section>
\ No newline at end of file