/**
  * Gets an instance of the class
  * @return C_NextGen_Shortcode_Manager
  */
 static function get_instance()
 {
     if (is_null(self::$_instance)) {
         $klass = get_class();
         self::$_instance = new $klass();
     }
     return self::$_instance;
 }