function theme_analytics()
{
    $output = theme_getOption('google_analytics');
    if ($output != "") {
        echo stripslashes($output) . "\n";
    }
}
 function sidebarColumn()
 {
     //get the column width from the admin
     if (tf_getSetting('footer_widget_width')) {
         $this->column_width = theme_getOption('footer_widget_width');
     } else {
         $this->column_width = 4;
     }
     switch ($this->column_width) {
         case 'column-1':
             $this->widget_class = "col-lg-12 col-md-12 col-sm-12 col-xs-12";
             break;
         case 'column-2':
             $this->widget_class = "col-lg-6 col-md-6 col-sm-6 col-xs-12";
             break;
         case 'column-3':
             $this->widget_class = "col-lg-4 col-md-4 col-sm-6 col-xs-12";
             break;
         case 'column-4':
             $this->widget_class = "col-lg-3 col-md-3 col-sm-6 col-xs-12";
             break;
     }
     return $this->widget_class;
 }
 function optionsBodyCode()
 {
     $bodyCode = theme_getOption('closebody');
     echo $bodyCode;
 }