dbFields = array( 'label' => 'Social Networks', ); } public function form() { global $L; $html = '
'; $html .= ''; $html .= ''; $html .= '' . $L->get('This title is almost always used in the sidebar of the site') . ''; $html .= '
'; return $html; } // Method called on the sidebar of the website public function siteSidebar() { global $L; global $url; $html = '
'; $html .= '

' . $this->getValue('label') . '

'; $html .= '
'; $html .= Theme::listSiteSocials(true, true); $html .= '
'; $html .= '
'; return $html; } }