public static function get_instance()
 {
     if (!isset(self::$instance)) {
         $c = __CLASS__;
         self::$instance = new $c();
     }
     return self::$instance;
 }
 function __construct()
 {
     $this->C3 = C3_Controller::get_instance();
     $this->C3->init();
 }