fixing typos + adding missing filed $activeEntry

This commit is contained in:
Thomas Müller 2013-09-20 21:45:27 +02:00
parent e31f6c01e8
commit f83f323269
2 changed files with 4 additions and 3 deletions

View File

@ -10,10 +10,11 @@
namespace OC;
/**
* Manages the owncloud navigation
* Manages the ownCloud navigation
*/
class NavigationManager {
protected $entries = array();
protected $activeEntry;
/**
* Creates a new navigation entry

View File

@ -10,7 +10,7 @@
namespace OCP;
/**
* Manages the owncloud navigation
* Manages the ownCloud navigation
*/
interface INavigationManager {
/**
@ -24,4 +24,4 @@ interface INavigationManager {
* @param string $appId id of the app entry to activate (from added $entry)
*/
public function setActiveEntry($appId);
}
}