/** * Get instance of this class. * * @access public * @static * @return GFMadMimi */ public static function get_instance() { if (self::$_instance == null) { self::$_instance = new self(); } return self::$_instance; }
function gf_madmimi() { return GFMadMimi::get_instance(); }