Example #1
0
 /**
  * Return singletone instance
  * @return XmlCsvExport
  */
 public static function getInstance()
 {
     if (self::$instance == NULL) {
         self::$instance = new self();
     }
     return self::$instance;
 }