2013-09-20 19:34:33 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
2016-01-12 17:02:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2013-09-20 19:34:33 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-09-20 19:34:33 +04:00
|
|
|
namespace OC;
|
|
|
|
|
|
|
|
/**
|
2013-09-20 23:45:27 +04:00
|
|
|
* Manages the ownCloud navigation
|
2013-09-20 19:34:33 +04:00
|
|
|
*/
|
2013-09-21 00:45:22 +04:00
|
|
|
class NavigationManager implements \OCP\INavigationManager {
|
2013-09-20 19:34:33 +04:00
|
|
|
protected $entries = array();
|
2015-03-16 18:17:43 +03:00
|
|
|
protected $closureEntries = array();
|
2013-09-20 23:45:27 +04:00
|
|
|
protected $activeEntry;
|
2013-09-20 19:34:33 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new navigation entry
|
2015-03-16 18:17:43 +03:00
|
|
|
*
|
|
|
|
* @param array|\Closure $entry Array containing: id, name, order, icon and href key
|
|
|
|
* The use of a closure is preferred, because it will avoid
|
|
|
|
* loading the routing of your app, unless required.
|
|
|
|
* @return void
|
2013-09-20 19:34:33 +04:00
|
|
|
*/
|
2015-03-16 18:17:43 +03:00
|
|
|
public function add($entry) {
|
|
|
|
if ($entry instanceof \Closure) {
|
|
|
|
$this->closureEntries[] = $entry;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-09-20 19:34:33 +04:00
|
|
|
$entry['active'] = false;
|
|
|
|
if(!isset($entry['icon'])) {
|
|
|
|
$entry['icon'] = '';
|
|
|
|
}
|
|
|
|
$this->entries[] = $entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* returns all the added Menu entries
|
2014-05-11 21:13:51 +04:00
|
|
|
* @return array an array of the added entries
|
2013-09-20 19:34:33 +04:00
|
|
|
*/
|
|
|
|
public function getAll() {
|
2015-03-16 18:17:43 +03:00
|
|
|
foreach ($this->closureEntries as $c) {
|
|
|
|
$this->add($c());
|
|
|
|
}
|
|
|
|
$this->closureEntries = array();
|
2013-09-20 19:34:33 +04:00
|
|
|
return $this->entries;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* removes all the entries
|
2013-09-20 19:34:33 +04:00
|
|
|
*/
|
|
|
|
public function clear() {
|
|
|
|
$this->entries = array();
|
2015-03-16 18:17:43 +03:00
|
|
|
$this->closureEntries = array();
|
2013-09-20 19:34:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the current navigation entry of the currently running app
|
|
|
|
* @param string $id of the app entry to activate (from added $entry)
|
|
|
|
*/
|
|
|
|
public function setActiveEntry($id) {
|
|
|
|
$this->activeEntry = $id;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* gets the active Menu entry
|
2013-09-20 19:34:33 +04:00
|
|
|
* @return string id or empty string
|
|
|
|
*
|
|
|
|
* This function returns the id of the active navigation entry (set by
|
|
|
|
* setActiveEntry
|
|
|
|
*/
|
|
|
|
public function getActiveEntry() {
|
|
|
|
return $this->activeEntry;
|
|
|
|
}
|
|
|
|
}
|