Example #1
0
 *  substitute goods or services; loss of use, data, or profits; or business    *
 *  interruption) however caused and on any theory of liability, whether in     *
 *  contract, strict liability, or tort (including negligence or otherwise)     *
 *  arising in any way out of the use of this software, even if advised of the  *
 *  possibility of such damage.                                                 *
 *                                                                              *
 ********************************************************************************/
$page = optional_param("page", "home", PARAM_ALPHANUM);
$groupid = required_param("groupid", PARAM_ALPHANUMEXT);
$group = getGroup($groupid);
$pageindex = 0;
$userid = "";
if (isset($USER->userid)) {
    $userid = $USER->userid;
}
auditDashboardView($userid, $groupid, $page);
include_once 'visdata.php';
?>
<center>
	<h1 style="padding-top:0px;margin-top:0px;"><?php 
echo $LNG->STATS_GROUP_TITLE . $group->name;
?>
<a href="<?php 
echo $CFG->homeAddress . 'group.php?groupid=' . $groupid;
?>
"><img src="<?php 
echo $HUB_FLM->getImagePath('arrow-up2.png');
?>
" style="padding-left:3px;vertical-align:middle" border="0" /></a></h1>
</center>
Example #2
0
 *  liable for any direct, indirect, incidental, special, exemplary, or         *
 *  consequential damages (including, but not limited to, procurement of        *
 *  substitute goods or services; loss of use, data, or profits; or business    *
 *  interruption) however caused and on any theory of liability, whether in     *
 *  contract, strict liability, or tort (including negligence or otherwise)     *
 *  arising in any way out of the use of this software, even if advised of the  *
 *  possibility of such damage.                                                 *
 *                                                                              *
 ********************************************************************************/
$page = optional_param("page", "home", PARAM_ALPHANUMEXT);
$pageindex = 0;
$userid = "";
if (isset($USER->userid)) {
    $userid = $USER->userid;
}
auditDashboardView($userid, 'global', $page);
include_once 'visdata.php';
?>
<center>
	<h1 style="padding:0px;margin:0px"><?php 
echo $LNG->STATS_GLOBAL_TITLE;
?>
</h1>
</center>

<div id="tabber" style="margin-left:10px;clear:both;float:left; width: 100%;">
	<ul id="tabs" class="tab">
		<li class="tab">
			<a class="tab <?php 
if ($page == "home") {
    echo 'current';
Example #3
0
 *  substitute goods or services; loss of use, data, or profits; or business    *
 *  interruption) however caused and on any theory of liability, whether in     *
 *  contract, strict liability, or tort (including negligence or otherwise)     *
 *  arising in any way out of the use of this software, even if advised of the  *
 *  possibility of such damage.                                                 *
 *                                                                              *
 ********************************************************************************/
$page = optional_param("page", "home", PARAM_ALPHANUM);
$nodeid = required_param("nodeid", PARAM_ALPHANUMEXT);
$node = getNode($nodeid);
$pageindex = 0;
$userid = "";
if (isset($USER->userid)) {
    $userid = $USER->userid;
}
auditDashboardView($userid, $nodeid, $page);
include_once 'visdata.php';
?>
<center>
	<h1 style="padding-top:0px;margin-top:0px;"><?php 
echo $LNG->STATS_DEBATE_TITLE . $node->name;
?>
<a href="<?php 
echo $CFG->homeAddress . 'explore.php?id=' . $nodeid;
?>
"><img src="<?php 
echo $HUB_FLM->getImagePath('arrow-up2.png');
?>
" style="padding-left:3px;vertical-align:middle" border="0" /></a></h1>
</center>