dbFields = array( 'head'=>'', 'header'=>'', 'footer'=>'' ); } public function form() { global $L; $html = ''; $html .= '
'; $html .= ''; $html .= ''; $html .= ''.$L->get('insert-code-in-the-theme-inside-the-tag-head').''; $html .= '
'; $html .= '
'; $html .= ''; $html .= ''; $html .= ''.$L->get('insert-code-in-the-theme-at-the-top').''; $html .= '
'; $html .= '
'; $html .= ''; $html .= ''; $html .= ''.$L->get('insert-code-in-the-theme-at-the-bottom').''; $html .= '
'; return $html; } public function siteHead() { return html_entity_decode($this->getValue('head')); } public function siteBodyBegin() { return html_entity_decode($this->getValue('header')); } public function siteBodyEnd() { return html_entity_decode($this->getValue('footer')); } }