diff options
author | Jakob Sack <kde@jakobsack.de> | 2011-03-11 15:25:48 +0100 |
---|---|---|
committer | Jakob Sack <kde@jakobsack.de> | 2011-03-11 15:25:48 +0100 |
commit | 883c7a582de8e9f9455751927069755e74fbd1e3 (patch) | |
tree | cd4516295f9dbef9cadbcd060e597254dc9eacfc /lib/base.php | |
parent | 25e59e3ce655712e03fc482e673a748b7b5185a1 (diff) | |
download | nextcloud-server-883c7a582de8e9f9455751927069755e74fbd1e3.tar.gz nextcloud-server-883c7a582de8e9f9455751927069755e74fbd1e3.zip |
Small fixes in OC_APP, removed functions in OC_UTIL that now are in OC_APP
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/lib/base.php b/lib/base.php index 09e0a1e299a..c99de774c2d 100644 --- a/lib/base.php +++ b/lib/base.php @@ -124,9 +124,6 @@ OC_UTIL::checkserver(); class OC_UTIL { public static $scripts=array(); public static $styles=array(); - public static $adminpages = array(); - public static $navigation = array(); - public static $personalmenu = array(); private static $fsSetup=false; // Can be set up @@ -226,33 +223,6 @@ class OC_UTIL { } /** - * add an entry to the main navigation - * - * @param array $entry - */ - public static function addNavigationEntry( $entry){ - OC_UTIL::$navigation[] = $entry; - } - - /** - * add administration pages - * - * @param array $entry - */ - public static function addAdminPage( $entry ){ - OC_UTIL::$adminpages[] = $entry; - } - - /** - * add an entry to the personal menu - * - * @param array $entry - */ - public static function addPersonalMenuEntry( $entry){ - OC_UTIL::$personalmenu[] = $entry; - } - - /** * check if the current server configuration is suitable for ownCloud * */ |