Skip to content
Snippets Groups Projects
Commit 17fef425 authored by Andreas Åkre Solberg's avatar Andreas Åkre Solberg
Browse files

New module: portal. allows tabbed together pages

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1349 44740490-163a-0410-bde0-09ae8108e29a
parent 2dd415e1
No related branches found
No related tags found
No related merge requests found
<?php
/*
* Configuration for the module portal.
*
* $Id: $
*/
$config = array (
'pagesets' => array(
array('santitycheck', 'statistics'),
),
);
?>
<?php
/**
* Hook to inject HTML content into all pages...
*
* @param array &$hookinfo hookinfo
*/
function portal_hook_htmlinject(&$hookinfo) {
assert('is_array($hookinfo)');
assert('array_key_exists("pre", $hookinfo)');
assert('array_key_exists("post", $hookinfo)');
assert('array_key_exists("page", $hookinfo)');
$links = array('links' => array());
SimpleSAML_Module::callHooks('frontpage', $links);
# echo('<pre>'); print_r($links); exit;
$portalConfig = SimpleSAML_Configuration::getConfig('module_portal.php');
$portal = new sspmod_portal_Portal($links['links'], $portalConfig->getValue('pagesets') );
if (!$portal->isPortalized($hookinfo['page'])) return;
#print_r($portal->getMenu($hookinfo['page'])); exit;
// Include jquery UI CSS files in header.
$hookinfo['jquery']['css'] = 1;
// Header
$hookinfo['pre'][0] = '
<div id="portalmenu">
<ul class="ui-tabs-nav">' . $portal->getMenu($hookinfo['page']) . '</ul>
<div id="portalcontent" class="ui-tabs-panel" style="display: block;">';
// Footer
$hookinfo['post'][0] = '</div></div>';
}
<?php
class sspmod_portal_Portal {
private $pages;
private $config;
function __construct($pages, $config = NULL) {
$this->pages = $pages;
$this->config = $config;
}
function getTabset($thispage) {
if (!isset($this->config)) return NULL;
foreach($this->config AS $set) {
if (in_array($thispage, $set)) {
return $set;
}
}
return NULL;
}
function isPortalized($thispage) {
foreach($this->config AS $set) {
if (in_array($thispage, $set)) {
return TRUE;
}
}
return FALSE;
}
function getMenu($thispage) {
$config = SimpleSAML_Configuration::getInstance();
$t = new SimpleSAML_XHTML_Template($config, 'sanitycheck:check-tpl.php');
$tabset = $this->getTabset($thispage);
#echo($thispage);
#echo('<pre>'); print_r($this->pages); exit;
$text = '<ul>';
foreach($this->pages AS $pageid => $page) {
if (isset($tabset) && !in_array($pageid, $tabset, TRUE)) continue;
#echo('This page [' . $pageid . '] is part of [' . join(',', $tabset) . ']');
$name = 'uknown';
if (isset($page['text'])) $name = $page['text'];
if (isset($page['shorttext'])) $name = $page['shorttext'];
if (!isset($page['href'])) {
$text .= '<li class="ui-tabs-selected"><a href="#">' . $t->t($name) . '</a></li>';
} else if($pageid === $thispage ) {
$text .= '<li class="ui-tabs-selected"><a href="#">' . $t->t($name) . '</a></li>';
} else {
$text .= '<li><a href="' . $page['href'] . '">' . $t->t($name) . '</a></li>';
}
}
$text .= '</ul>';
return $text;
}
}
\ No newline at end of file
<?php
if(array_key_exists('htmlContentPost', $this->data)) {
foreach(array_reverse($this->data['htmlContentPost']) AS $c) {
echo $c;
}
}
?>
<hr />
......
......@@ -13,7 +13,28 @@ if(array_key_exists('header', $this->data)) {
<link rel="stylesheet" type="text/css" href="/<?php echo $this->data['baseurlpath']; ?>resources/default.css" />
<link rel="icon" type="image/icon" href="/<?php echo $this->data['baseurlpath']; ?>resources/icons/favicon.ico" />
<meta name="ROBOTS" content="NOINDEX, NOFOLLOW" />
<?php
if(array_key_exists('jquery', $this->data)) {
#echo('<pre>'); print_r($this->data['jquery']); exit;
if (isset($this->data['jquery']['core']) && $this->data['jquery']['core'])
echo('<script type="text/javascript" src="/' . $this->data['baseurlpath'] . 'resources/jquery.js"></script>');
if (isset($this->data['jquery']['ui']) && $this->data['jquery']['ui'])
echo('<script type="text/javascript" src="/' . $this->data['baseurlpath'] . 'resources/jquery-ui.js"></script>');
if (isset($this->data['jquery']['css']) && $this->data['jquery']['css'])
echo('<link rel="stylesheet" media="screen" type="text/css" href="/' . $this->data['baseurlpath'] . 'resources/uitheme/jquery-ui-themeroller.css" />');
}
?>
<meta name="robots" content="noindex, nofollow" />
<?php
if(array_key_exists('head', $this->data)) {
......@@ -91,6 +112,19 @@ if($onLoad !== '') {
echo '</div>';
}
?>
<div id="content">
<?php
if(array_key_exists('htmlContentPre', $this->data)) {
foreach($this->data['htmlContentPre'] AS $c) {
echo $c;
}
}
?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment