Seditio Source
Root |
./othercms/slaed_cms_6.2_pro/blocks/block-center.php
<?php
# Copyright © 2005 - 2015 SLAED
# Website: http://www.slaed.net

if (!defined("BLOCK_FILE")) {
   
header("Location: ../index.php");
    exit;
}

global
$prefix, $db;
$strip = 25;
$content = "<table class=\"sl_table_list\"><thead class=\"sl_table_list_head\"><tr><th>"._FILES."</th><th>"._PAGES."</th><th>"._FAQ."</th></tr></thead><tbody class=\"sl_table_list_body\">";

// Last added files
$content .= "<tr><td>";
$result = $db->sql_query("SELECT lid, title FROM ".$prefix."_files WHERE date <= now() AND status != '0' ORDER BY date DESC LIMIT 5");
while(list(
$id, $title) = $db->sql_fetchrow($result)) {
   
$linkstrip = cutstr($title, $strip);
   
$content .= "<table><tr><td><a href=\"index.php?name=files&amp;op=view&amp;id=".$id."\" title=\"".$title."\">".$linkstrip."</a></td></tr></table>";
}

// Last added pages
$content .= "</td><td>";
$result = $db->sql_query("SELECT pid, title FROM ".$prefix."_pages WHERE time <= now() AND status != '0' ORDER BY time DESC LIMIT 5");
while(list(
$pid, $title) = $db->sql_fetchrow($result)) {
   
$linkstrip = cutstr($title, $strip);
   
$content .= "<table><tr><td><a href=\"index.php?name=pages&amp;op=view&amp;id=".$pid."\" title=\"".$title."\">".$linkstrip."</a></td></tr></table>";
}

// Last added faq
$content .="</td><td>";
$result = $db->sql_query("SELECT fid, title FROM ".$prefix."_faq WHERE time <= now() AND status != '0' ORDER BY time DESC LIMIT 5");
while(list(
$fid, $title) = $db->sql_fetchrow($result)) {
   
$linkstrip = cutstr($title, $strip);
   
$content .= "<table><tr><td><a href=\"index.php?name=faq&amp;op=view&amp;id=".$fid."\" title=\"".$title."\">".$linkstrip."</a></td></tr></table>";
}
$content .= "</td></tr></tbody></table>";
?>