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