/**
  * Generazione del codice HTML del widget per la 
  * visualizzazione completa nella sidebar di appartenenza
  */
 function widget($args, $instance)
 {
     // Controllo se esistono le variabili che servono durante l'elaborazione
     // dello script e assegno dei valori di default nel caso non fossero specificati
     $options = $this->common_empty(array('title' => '', 'calendars' => '', 'mode' => '', 'weekstart' => '', 'language' => '', 'timezone' => '', 'width' => '', 'height' => '', 'showtitle' => '', 'shownavs' => '', 'showdate' => '', 'showprint' => '', 'showtabs' => '', 'showcalendars' => '', 'showtimezone' => ''), $instance);
     // Definizione delle variabili di controllo del widget, questi valori non
     // interessano le opzioni della funzione base ma incidono su alcuni aspetti
     $controls = $this->common_empty(array('calendarT' => '', 'width_auto' => '', 'height_auto' => ''), $instance);
     // Correzione del valore di dimensione nel caso venga
     // specificata la maniera automatica e quindi usare javascript
     if ($controls['width_auto'] == '1') {
         $options['width'] = 'auto';
     }
     if ($controls['height_auto'] == '1') {
         $options['height'] = 'auto';
     }
     // Annullo la variabile titolo che appartiene al componente in
     // quanto esiste il titolo del widget e hanno lo stesso nome
     $options['title'] = $controls['calendarT'];
     // Creazione del codice HTML per il widget attuale richiamando la
     // funzione base che viene richiamata anche dallo shortcode corrispondente
     $OBJC = new SZGoogleActionCalendar();
     $HTML = $OBJC->getHTMLCode($options);
     // Output del codice HTML legato al widget da visualizzare
     // chiamata alla funzione generale per wrap standard
     echo $this->common_widget($args, $instance, $HTML);
 }
 /**
  * Generation of the HTML code of the widget
  * for the full display in the sidebar associated
  */
 function widget($args, $instance)
 {
     // Checking whether there are the variables that are used during the processing
     // the script and check the default values ​​in case they were not specified
     $options = $this->common_empty(array('title' => '', 'calendar' => '', 'mode' => '', 'weekstart' => '', 'language' => '', 'timezone' => '', 'width' => '', 'height' => '', 'showtitle' => '', 'shownavs' => '', 'showdate' => '', 'showprint' => '', 'showtabs' => '', 'showcalendars' => '', 'showtimezone' => ''), $instance);
     // Definition of the control variables of the widget, these values​
     // do not affect the items of basic but affect some aspects
     $controls = $this->common_empty(array('calendarT' => '', 'width_auto' => '', 'height_auto' => ''), $instance);
     // Correction of the value of size is specified in
     // the case the automatically and then use javascript
     if ($controls['width_auto'] == '1') {
         $options['width'] = 'auto';
     }
     if ($controls['height_auto'] == '1') {
         $options['height'] = 'auto';
     }
     // Cancel the variable title that belongs to the component
     // since there is the title of the widget and have the same name
     $options['title'] = $controls['calendarT'];
     // Create the HTML code for the current widget recalling the basic
     // function which is also invoked by the corresponding shortcode
     $OBJC = new SZGoogleActionCalendar();
     $HTML = $OBJC->getHTMLCode($options);
     // Output HTML code linked to the widget to
     // display call to the general standard for wrap
     echo $this->common_widget($args, $instance, $HTML);
 }
 function szgoogle_calendar_get_widget($options = array())
 {
     if (!($object = new SZGoogleActionCalendar())) {
         return false;
     } else {
         return $object->getHTMLCode($options);
     }
 }