<?php
// File: $Id: category.php,v 1.27 2001/12/06 14:46:31 jgm Exp $ $Name: $
// ----------------------------------------------------------------------
// POST-NUKE Content Management System
// Copyright (C) 2001 by the Post-Nuke Development Team.
// http://www.postnuke.com/
// ----------------------------------------------------------------------
// Based on:
// PHP-NUKE Web Portal System - http://phpnuke.org/
// Thatware - http://thatware.org/
// ----------------------------------------------------------------------
// LICENSE
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License (GPL)
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// To read the license please visit http://www.gnu.org/copyleft/gpl.html
// ----------------------------------------------------------------------
// Original Author of file: Francisco Burzi
// Purpose of file:
// ----------------------------------------------------------------------
$blocks_modules['category'] = array(
'func_display' => 'blocks_category_block',
'text_type' => 'Category',
'text_type_long' => 'Categories Menu',
'allow_multiple' => false,
'form_content' => false,
'form_refresh' => false,
'show_preview' => true
);
// Security
addinstanceschemainfo('Categoryblock::', '::');
function blocks_category_block($row) /* ML added globals and querylang */
{
global
$topic,
$catid,
$language,
$pntable,
$dbconn,
$multilingual,
$currentlang
;
if (!authorised(0, 'Categoryblock::', '::', ACCESS_OVERVIEW)) {
return;
}
if ($multilingual == 1)
{
$column = &$pntable['stories_column'];
//FTO : Add IS NULL clause for Oracle
//ORACLEDONE
$querylang = "AND ($column[alanguage]='$currentlang' OR $column[alanguage]='' OR $column[alanguage] IS NULL )"; /* the OR is needed to display stories who are posted to ALL languages */
} else {
$querylang = '';
}
$column = &$pntable['stories_cat_column'];
$result = $dbconn->Execute("SELECT $column[catid] as catid, $column[title] as title FROM $pntable[stories_cat] ORDER BY $column[title]");
if ($result->EOF)
{
return;
} else {
$boxstuff = '<span class="pn-normal">';
if ($catid == "") {
$boxstuff .= "<strong><big>·</big></strong> <b>"._ALL_CATEGORIES."</b><br>";
} else {
$boxstuff .= "<strong><big>·</big></strong> <a href=\"modules.php?op=modload&name=News&file=index&topic=$topic\">"._ALL_CATEGORIES."</a><br>";
}
for(;!$result->EOF;$result->MoveNext() ) {
$srow = $result->GetRowAssoc(false);
$column = &$pntable['stories_column'];
$result2 = $dbconn->Execute("SELECT $column[time] AS unixtime
FROM $pntable[stories]
WHERE $column[catid]=$srow[catid] $querylang
ORDER BY $column[time] DESC");
if (!$result2->EOF) {
$story = $result2->GetRowAssoc(false);
$story['unixtime']=$result2->UnixTimeStamp($story['unixtime']);
$sdate = ml_ftime(_DATEBRIEF, $story['unixtime']);
if ($catid == $srow['catid']) {
$boxstuff .= "<strong><big>·</big></strong> <span class=\"pn-title\"><b>$srow[title]</b></span> <span class=\"pn-sub\">($sdate)</span><br>";
} else {
$boxstuff .= "<strong><big>·</big></strong> <a class=\"pn-normal\" href=\"modules.php?op=modload&name=News&file=index&catid=$srow[catid]&topic=$topic\">$srow[title]</a> <span class=\"pn-sub\">($sdate)</span><br>";
}
}
}
}
$boxstuff .= '</span>';
$row['title'] = _CATEGORIES;
$row['content'] = $boxstuff;
themesideblock($row);
}
?>