/**
  * @return CL_Session
  */
 public static function get_instance()
 {
     if (self::$instance === NULL) {
         self::$instance = new CL_Session();
     }
     return self::$instance;
 }