/**
  * Returns an array of sitelinks to add into the main menu footer.
  * @return Array array of site links
  */
 protected function getSiteLinks()
 {
     $urls = parent::getSiteLinks();
     $msg = $this->msg('mobile-frontend-fontchanger-link');
     // Don't add elements, where the message does not exist
     if (!$msg->isDisabled()) {
         $urls[] = array('href' => '#', 'text' => $msg->text(), 'class' => 'fontchanger link hidden');
     }
     return $urls;
 }