File size: 946B
<?php
/**
* SocialEngine
*
* @category Application_Core
* @package Core
* @copyright Copyright 2006-2020 Webligo Developments
* @license http://www.socialengine.com/license/
* @version $Id: Controller.php 9747 2012-07-26 02:08:08Z john $
* @author John
*/
/**
* @category Application_Core
* @package Core
* @copyright Copyright 2006-2020 Webligo Developments
* @license http://www.socialengine.com/license/
*/
class Core_Widget_MenuGenericController extends Engine_Content_Widget_Abstract
{
public function indexAction()
{
$name = $this->_getParam('menu');
if( !$name ) {
return $this->setNoRender();
}
$this->view->navigation = $navigation = Engine_Api::_()
->getApi('menus', 'core')
->getNavigation($name);
if( engine_count($navigation) <= 0 ) {
return $this->setNoRender();
}
$this->view->ulClass = $this->_getParam('ulClass', null);
}
}