$templates['exemples'] = 'Exemples';
$templates['contact'] = 'Contact';
$templates['agences'] = 'Agences';
- $templates['devis'] = 'Demande de devis';
$templates['faq'] = 'FAQ';
$templates = array_merge($templates, parent::getCMSTemplates());
return $templates;
class Fluidbook_View_Helper_FooterMenu extends CubeIT_View_Helper_Abstract {
- public function footerMenu($pageIDs, $title = null, $titleLink = null) {
+ public function footerMenu($pageIDs, $title = null, $titleLink = null, $extraLinks = array()) {
if (empty($pageIDs)) return false;
}
}
- $res .= $this->htmlList($links);
+ $res .= $this->htmlList(array_merge($links, $extraLinks));
$res .= '</div>'; // .footer-menu
\r
// Menus\r
$res .= $this->footerMenu($this->option('footer_menu_main'), __('Plan du site'));\r
-$res .= $this->footerMenu($this->option('footer_menu_contact'), __('Contactez-nous'), 'internal:contact');\r
+$quoteLink = $this->linkQuote(__('Demander un devis'));\r
+$res .= $this->footerMenu($this->option('footer_menu_contact'), __('Contactez-nous'), 'internal:contact', array($quoteLink));\r
\r
$res .= '<div class="footer-social">';\r
foreach ($this->option('social_networks') as $social) {\r