Gdn::applicationManager PHP Method

applicationManager() public static method

Get the application manager
public static applicationManager ( ) : Gdn_ApplicationManager
return Gdn_ApplicationManager
    public static function applicationManager()
    {
        return self::factory(self::AliasApplicationManager);
    }

Usage Example

 /**
  * Reload the locale system.
  */
 public function refresh()
 {
     $LocalName = $this->current();
     $ApplicationWhiteList = Gdn::applicationManager()->enabledApplicationFolders();
     $PluginWhiteList = Gdn::pluginManager()->enabledPluginFolders();
     $ForceRemapping = true;
     $this->set($LocalName, $ApplicationWhiteList, $PluginWhiteList, $ForceRemapping);
 }
All Usage Examples Of Gdn::applicationManager