aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakob Sack <kde@jakobsack.de>2011-06-20 19:50:25 +0200
committerJakob Sack <kde@jakobsack.de>2011-06-20 19:50:25 +0200
commit272fc252fb71422db2101a76fc541f20924808cd (patch)
tree17203a170587e8a7e804593a9b06d78cd6b97ebf
parent05637416529606d1aa9c19a3f988c386c17b1352 (diff)
downloadnextcloud-server-272fc252fb71422db2101a76fc541f20924808cd.tar.gz
nextcloud-server-272fc252fb71422db2101a76fc541f20924808cd.zip
Activate "active" for subentries
-rw-r--r--lib/app.php81
-rw-r--r--templates/layout.admin.php4
2 files changed, 47 insertions, 38 deletions
diff --git a/lib/app.php b/lib/app.php
index 544c57c1d6f..64704f09bbd 100644
--- a/lib/app.php
+++ b/lib/app.php
@@ -29,7 +29,7 @@
class OC_APP{
static private $init = false;
static private $apps = array();
- static private $activeapp = "";
+ static private $activeapp = '';
static private $adminpages = array();
static private $settingspages = array();
static private $navigation = array();
@@ -52,16 +52,16 @@ class OC_APP{
}
// Our very own core apps are hardcoded
- foreach( array( "admin", "files", "log", "help", "settings" ) as $app ){
- require( "$app/appinfo/app.php" );
+ foreach( array( 'admin', 'files', 'log', 'help', 'settings' ) as $app ){
+ require( $app.'/appinfo/app.php' );
}
// The rest comes here
$apps = OC_APPCONFIG::getApps();
foreach( $apps as $app ){
if( self::isEnabled( $app )){
- if(is_file($SERVERROOT."/apps/$app/appinfo/app.php")){
- require( "apps/$app/appinfo/app.php" );
+ if(is_file($SERVERROOT.'/apps/'.$app.'/appinfo/app.php')){
+ require( 'apps/'.$app.'/appinfo/app.php' );
}
}
}
@@ -116,8 +116,8 @@ class OC_APP{
*
* This function registers the application. $data is an associative array.
* The following keys are required:
- * - id: id of the application, has to be unique ("addressbook")
- * - name: Human readable name ("Addressbook")
+ * - id: id of the application, has to be unique ('addressbook')
+ * - name: Human readable name ('Addressbook')
* - version: array with Version (major, minor, bugfix) ( array(1, 0, 2))
*
* The following keys are optional:
@@ -148,9 +148,9 @@ class OC_APP{
* This function adds a new entry to the navigation visible to users. $data
* is an associative array.
* The following keys are required:
- * - id: unique id for this entry ("addressbook_index")
+ * - id: unique id for this entry ('addressbook_index')
* - href: link to the page
- * - name: Human readable name ("Addressbook")
+ * - name: Human readable name ('Addressbook')
*
* The following keys are optional:
* - icon: path to the icon of the app
@@ -174,9 +174,9 @@ class OC_APP{
* as being active (see activateNavigationEntry()). $data is an associative
* array.
* The following keys are required:
- * - id: unique id for this entry ("addressbook_index")
+ * - id: unique id for this entry ('addressbook_index')
* - href: link to the page
- * - name: Human readable name ("Addressbook")
+ * - name: Human readable name ('Addressbook')
*
* The following keys are optional:
* - icon: path to the icon of the app
@@ -196,7 +196,7 @@ class OC_APP{
* @param $id id of the entry
* @returns true/false
*
- * This function sets a navigation entry as active and removes the "active"
+ * This function sets a navigation entry as active and removes the 'active'
* property from all other entries. The templates can use this for
* highlighting the current position of the user.
*/
@@ -224,9 +224,9 @@ class OC_APP{
* This function registers a admin page that will be shown in the admin
* menu. $data is an associative array.
* The following keys are required:
- * - id: unique id for this entry ("files_admin")
+ * - id: unique id for this entry ('files_admin')
* - href: link to the admin page
- * - name: Human readable name ("Files Administration")
+ * - name: Human readable name ('Files Administration')
*
* The following keys are optional:
* - order: integer, that influences the position of your application in
@@ -245,16 +245,16 @@ class OC_APP{
*
* This function registers a settings page. $data is an associative array.
* The following keys are required:
- * - app: app the settings belong to ("files")
- * - id: unique id for this entry ("files_public")
+ * - app: app the settings belong to ('files')
+ * - id: unique id for this entry ('files_public')
* - href: link to the admin page
- * - name: Human readable name ("Public files")
+ * - name: Human readable name ('Public files')
*
* The following keys are optional:
* - order: integer, that influences the position of your application in
* the list. Lower values come first.
*
- * For the main settings page of an app, the keys "app" and "id" have to be
+ * For the main settings page of an app, the keys 'app' and 'id' have to be
* the same.
*/
public static function addSettingsPage( $data = array()){
@@ -268,11 +268,11 @@ class OC_APP{
* @returns associative array
*
* This function returns an array containing all entries added. The
- * entries are sorted by the key "order" ascending. Additional to the keys
+ * entries are sorted by the key 'order' ascending. Additional to the keys
* given for each app the following keys exist:
* - active: boolean, signals if the user is on this navigation entry
- * - children: array that is empty if the key "active" is false or
- * contains the subentries if the key "active" is true
+ * - children: array that is empty if the key 'active' is false or
+ * contains the subentries if the key 'active' is true
*/
public static function getNavigation(){
$navigation = self::proceedNavigation( self::$navigation );
@@ -285,7 +285,7 @@ class OC_APP{
* @returns associative array
*
* This function returns an array containing all settings pages added. The
- * entries are sorted by the key "order" ascending.
+ * entries are sorted by the key 'order' ascending.
*/
public static function getSettingsNavigation(){
$navigation = self::proceedNavigation( self::$settingspages );
@@ -299,7 +299,7 @@ class OC_APP{
* @returns associative array
*
* This function returns an array containing all admin pages added. The
- * entries are sorted by the key "order" ascending.
+ * entries are sorted by the key 'order' ascending.
*/
public static function getAdminNavigation(){
$navigation = self::proceedNavigation( self::$adminpages );
@@ -313,38 +313,47 @@ class OC_APP{
$found = false;
foreach( self::$subnavigation as $parent => $selection ){
foreach( $selection as $subentry ){
- if( $subentry["id"] == self::$activeapp ){
+ if( $subentry['id'] == self::$activeapp ){
foreach( $list as &$naventry ){
- if( $naventry["id"] == $parent ){
- $naventry["active"] = true;
- $naventry["subnavigation"] = $selection;
+ if( $naventry['id'] == $parent ){
+ $naventry['active'] = true;
+ $naventry['subnavigation'] = $selection;
}
else{
- $naventry["active"] = false;
+ $naventry['active'] = false;
}
- }
+ } unset( $naventry );
$found = true;
}
}
}
+ // Mark subentry as active
+ foreach( $list as &$naventry ){
+ if( $naventry['active'] ){
+ foreach( $naventry['subnavigation'] as &$subnaventry ){
+ $subnaventry['active'] = $subnaventry['id'] == self::$activeapp? true : false;
+ } unset( $subnaventry );
+ }
+ } unset( $naventry );
+
return $list;
}
/// This is private as well. It simply works, so don't ask for more details
private static function proceedNavigation( $list ){
foreach( $list as &$naventry ){
- $naventry["subnavigation"] = array();
- if( $naventry["id"] == self::$activeapp ){
- $naventry["active"] = true;
- if( array_key_exists( $naventry["id"], self::$subnavigation )){
- $naventry["subnavigation"] = self::$subnavigation[$naventry["id"]];
+ $naventry['subnavigation'] = array();
+ if( $naventry['id'] == self::$activeapp ){
+ $naventry['active'] = true;
+ if( array_key_exists( $naventry['id'], self::$subnavigation )){
+ $naventry['subnavigation'] = self::$subnavigation[$naventry['id']];
}
}
else{
- $naventry["active"] = false;
+ $naventry['active'] = false;
}
- }
+ } unset( $naventry );
usort( $list, create_function( '$a, $b', 'if( $a["order"] == $b["order"] ){return 0;}elseif( $a["order"] < $b["order"] ){return -1;}else{return 1;}' ));
diff --git a/templates/layout.admin.php b/templates/layout.admin.php
index 66fb3ccc60b..1fcd4568f8c 100644
--- a/templates/layout.admin.php
+++ b/templates/layout.admin.php
@@ -32,7 +32,7 @@
<li><a style="background-image:url(<?php echo $entry['icon']; ?>)" href="<?php echo $entry['href']; ?>" title="" <?php if( $entry["active"] ): ?> class="active"<?php endif; ?>><?php echo $entry['name'] ?></a></li>
<?php if( sizeof( $entry["subnavigation"] )): ?>
<?php foreach($entry["subnavigation"] as $subentry):?>
- <li><a style="background-color:#FF8800;" href="<?php echo $subentry['href']; ?>" title=""><?php echo $subentry['name'] ?></a></li>
+ <li><a style="background-color:#FF8800;" href="<?php echo $subentry['href']; ?>" title="" <?php if( $subentry["active"] ): ?> class="active"<?php endif; ?>><?php echo $subentry['name'] ?></a></li>
<?php endforeach; ?>
<?php endif; ?>
<?php endforeach; ?>
@@ -41,7 +41,7 @@
<li><a style="background-image:url(<?php echo $entry['icon']; ?>)" href="<?php echo $entry['href']; ?>" title="" <?php if( $entry["active"] ): ?> class="active"<?php endif; ?>><?php echo $entry['name'] ?></a></li>
<?php if( sizeof( $entry["subnavigation"] )): ?>
<?php foreach($entry["subnavigation"] as $subentry):?>
- <li><a style="background-color:#FF8800;" href="<?php echo $subentry['href']; ?>" title=""><?php echo $subentry['name'] ?></a></li>
+ <li><a style="background-color:#FF8800;" href="<?php echo $subentry['href']; ?>" title=""><?php echo $subentry['name'] ?> <?php if( $subentry["active"] ): ?> active<?php endif; ?></a></li>
<?php endforeach; ?>
<?php endif; ?>
<?php endforeach; ?>