Пример #1
0
 /**
  * get the types of an app
  *
  * @param string $app
  * @return array
  */
 private static function getAppTypes($app)
 {
     //load the cache
     if (count(self::$appTypes) == 0) {
         self::$appTypes = OC_Appconfig::getValues(false, 'types');
     }
     if (isset(self::$appTypes[$app])) {
         return explode(',', self::$appTypes[$app]);
     } else {
         return array();
     }
 }