update menu (split system and Seminary related elements)

This commit is contained in:
coderkun 2014-03-30 14:21:45 +02:00
commit 42437ddd46
8 changed files with 114 additions and 24 deletions

View file

@ -0,0 +1,35 @@
<?php
/**
* The Legend of Z
*
* @author Oliver Hanraths <oliver.hanraths@uni-duesseldorf.de>
* @copyright 2014 Heinrich-Heine-Universität Düsseldorf
* @license http://www.gnu.org/licenses/gpl.html
* @link https://bitbucket.org/coderkun/the-legend-of-z
*/
namespace hhu\z\agents\bottomlevel;
/**
* Agent to display a menu with Seminary related links.
*
* @author Oliver Hanraths <oliver.hanraths@uni-duesseldorf.de>
*/
class SeminarymenuAgent extends \nre\agents\BottomlevelAgent
{
/**
* Action: index.
*/
public function index(\nre\core\Request $request, \nre\core\Response $response)
{
}
}
?>

View file

@ -37,8 +37,9 @@
*/
public function index(\nre\core\Request $request, \nre\core\Response $response)
{
// Add menu
// Add menus
$this->addSubAgent('Menu');
$this->addSubAgent('Seminarymenu');
}