/** * Enables the Custom Links feature */ public static function enable_links_manager() { LinksManager::getInstance(); }
/** * Public function that creates a single instance */ public static function getInstance() { if (!isset(self::$_instance)) { self::$_instance = new self(); } return self::$_instance; }