1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 12:48:24 +01:00
php-e107/e107_plugins/page/page_navigation_menu.php

82 lines
2.0 KiB
PHP
Raw Normal View History

2013-02-01 01:32:43 -08:00
<?php
/*
* e107 website system
*
* Copyright (C) 2008-2013 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*/
if (!defined('e107_INIT')) { exit; }
//FIXME XXX - This menu should call the {PAGE_NAVIGATION} shortcode instead of duplicating its code and automatically display all links.
2013-02-01 01:32:43 -08:00
$parm = eHelper::scParams($parm);
$tmpl = e107::getCoreTemplate('chapter','nav',true,true); // always merge and allow override
$template = $tmpl['showPage'];
2017-10-17 16:22:56 -07:00
/*
$request = e107::getRegistry('core/page/request');
if($request && is_array($request))
2013-02-14 13:06:16 +02:00
{
switch ($request['action'])
2013-02-14 13:06:16 +02:00
{
case 'listChapters':
$parm['cbook'] = $request['id'];
$template = $tmpl['listChapters'];
break;
case 'listPages':
$parm['cchapter'] = $request['id'];
$template = $tmpl['listPages'];
break;
case 'showPage':
$parm['cpage'] = $request['id'];
break;
2013-02-14 13:06:16 +02:00
}
}
$expandable = vartrue($parm['expandable']);
if($parm) $parm = http_build_query($parm, null, '&');
else $parm = '';
### Retrieve
$links = e107::getAddon('page', 'e_sitelink');
$data = $links->pageNav($parm);
if(isset($data['title']) && !vartrue($template['noAutoTitle']))
{
// use chapter title
$template['caption'] = $data['title'];
$data = $data['body'];
}
if(empty($data)) return;
2017-10-17 16:22:56 -07:00
$text = e107::getNav()->render($data, $template) ;*/
$pg = new page_shortcodes;
$text = $pg->sc_page_navigation($parm);
2013-02-01 01:32:43 -08:00
/**
* Expandable menu support.
* @see jquery.page.navigation.js . activate with expandable=1 in the page-navigation menu.
* For best results include: e107::css('page', 'css/page.navigation.css', 'jquery'); in theme.php
*/
if($expandable)
{
e107::js('page','js/jquery.page.navigation.js','jquery');
$template['caption'] .= "<span class='btn-group pull-right'><a class='btn btn-default btn-xs btn-mini' id='page-nav-expand'>+</a><a class='btn btn-default btn-xs btn-mini' id='page-nav-collapse'>-</a></span>";
}
### Render
2013-02-01 01:32:43 -08:00
e107::getRender()->tablerender($template['caption'], $text, 'page-navigation-menu');