<?php
// $Id: news_top.php,v 1.1 2003/08/31 12:16:29 half-dead Exp $
// ------------------------------------------------------------------------- //
// E-Xoops: Content Management for the Masses //
// <
http://www.e-xoops.com > //
// ------------------------------------------------------------------------- //
// Original Author: Half-Dead
// Author Website :
http://www.e-xoops.com// License Type : GPL: See /manual/LICENSES/GPL.txt
// ------------------------------------------------------------------------- //
//---------------------------------------------------------------------------------------//
/**
* Description
*
* @param type $var description
* @return type description
*/
function b_news_top_show($options) {
global $db, $myts;
$block = array();
$block['content'] = "";
// bama Bug error_reporting, wenn kein Aktikel vorhanden
$block['title'] = "";
/*
if (!empty($options[4]) && is_numeric($options[4])) {
$extra = "AND topicid=".$options[4];
}
*/
if (!empty($options[4]) && is_numeric($options[4])) {
$extra = "AND topicid=".$options[4];
}else{
$extra = "";
}
$sql = "
SELECT storyid, title, published, counter
FROM ".$db->prefix("stories")."
WHERE published<".time()."
AND published>0
$extra
ORDER BY published DESC";
if ( empty($options[3]) || !is_numeric($options[3]) ) {
$options[3] = 5;
}
if ( empty($options[2]) || !is_numeric($options[2]) ) {
$options[2] = 19;
}
$result = $db->query($sql, $options[3], 0);
while ( list($storyid, $title, $published, $counter) = $db->fetch_row($result) ) {
$title = $myts->makeTboxData4Show($title);
if ( strlen($title) > $options[2] ) {
$title = substr($title, 0, $options[2])."..";
}
$block['content'] .= "
<big>·</big> ".$title."";
if ($options[0] == "published") {
$block['title'] = _MB_NEWS_TITLE4;
if ($options[1] == 1) {
$block['content'] .= " (".formatTimestamp($published, "s").")";
}
$block['content'] .= "
";
} elseif ($options[0] == "counter") {
$block['title'] = _MB_NEWS_TITLE5;
if ($options[1] == 1) {
$block['content'] .= " (".$counter.")";
}
$block['content'] .= "
";
}
}
$block['content'] .= "";
return $block;
}
//---------------------------------------------------------------------------------------//
/**
* Description
*
* @param type $var description
* @return type description
*/
function b_news_top_edit($options) {
global $db;
$form = "<input type='hidden' name='options[0]' value='".$options[0]."' />";
$form .= "
";
// Show Date/Hits?
$form .= "| "._MB_NEWS_SHOW." ".$options[0].": | ";
$chk = ""; if ($options[1] == 0) { $chk = " checked='checked'"; } $form .= "<input type='radio' class='radio' name='options[1]' value='0'".$chk." />"._NO."";
$chk = ""; if ($options[1] == 1) { $chk = " checked='checked'"; } $form .= "<input type='radio' class='radio' name='options[1]' value='1'".$chk." />"._YES." |
";
// TRIM
$form .= "
| "._MB_NEWS_TRIM." |
<input type='text' class='text' size='3' maxlength='2' name='options[2]' value='".$options[2]."'> |
";
// LIMIT TO
$form .= "
| "._MB_NEWS_LIMIT." |
<input type='text' class='text' name='options[3]' value='".$options[3]."' size='3' maxlength='2' /> |
";
// LIMIT TO CATS
include_once(XOOPS_ROOT_PATH."/class/xoopstree.php");
$cats = new XoopsTree($db->prefix("topics"), "topic_id", "topic_pid");
ob_start();
$cats->makeMySelBox("topic_title", "topic_title", $options[4], 1, "options[4]");
$content = ob_get_contents();
ob_end_clean();
$form .= "
| "._MB_NEWS_LIMIT." |
$content |
";
$form .= "
";
return $form;
}
?>