hook(); } /** * Get (and instantiate, if necessary) the instance of the * class * * @static * @return self */ public static function instance() { if( !is_a( self::$instance, __CLASS__ ) ){ self::$instance = new self(); } return self::$instance; } }