HummingBirdAnimeClient/src/Helper/Menu.php

38 lines
753 B
PHP
Raw Normal View History

<?php
2015-11-16 11:40:01 -05:00
/**
* Hummingbird Anime Client
*
* An API client for Hummingbird to manage anime and manga watch lists
*
* @package HummingbirdAnimeClient
* @author Timothy J. Warren
* @copyright Copyright (c) 2015 - 2016
2015-11-16 11:40:01 -05:00
* @link https://github.com/timw4mail/HummingBirdAnimeClient
* @license MIT
*/
namespace Aviat\AnimeClient\Helper;
use Aviat\AnimeClient\MenuGenerator;
2015-10-14 09:20:52 -04:00
/**
* MenuGenerator helper wrapper
*/
2015-10-09 14:34:55 -04:00
class Menu {
use \Aviat\Ion\Di\ContainerAware;
2015-10-14 09:20:52 -04:00
/**
* Create the html for the selected menu
2015-11-05 10:41:46 -05:00
*
2015-10-14 09:20:52 -04:00
* @param string $menu_name
* @return string
*/
public function __invoke($menu_name)
{
$generator = new MenuGenerator($this->container);
return $generator->generate($menu_name);
}
}
// End of Menu.php