|
|
@ -36,6 +36,7 @@ class OC_App{ |
|
|
static private $appTypes = array(); |
|
|
static private $appTypes = array(); |
|
|
static private $loadedApps = array(); |
|
|
static private $loadedApps = array(); |
|
|
static private $checkedApps = array(); |
|
|
static private $checkedApps = array(); |
|
|
|
|
|
static private $altLogin = array(); |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* @brief loads all apps |
|
|
* @brief loads all apps |
|
|
@ -557,6 +558,14 @@ class OC_App{ |
|
|
self::$personalForms[]= $app.'/'.$page.'.php'; |
|
|
self::$personalForms[]= $app.'/'.$page.'.php'; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static function registerLogIn($entry) { |
|
|
|
|
|
self::$altLogin[] = $entry; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static function getAlternativeLogIns() { |
|
|
|
|
|
return self::$altLogin; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* @brief: get a list of all apps in the apps folder |
|
|
* @brief: get a list of all apps in the apps folder |
|
|
* @return array or app names (string IDs) |
|
|
* @return array or app names (string IDs) |
|
|
|