openside("Nové Pridané ZSSK MSTS");
echo "<table width='100%' border='0' cellspacing='2' cellpadding='0'>\n<tr valign='top'>
\n<td width='25%'>\n";
openside("Rušne ZSCS/ŽSR");
include LOCALE.LOCALESET."weblinks.php";
//Category ID to show latest weblinks from
$cat_id ="9";
$result = dbquery("SELECT
weblink_id,
weblink_name,
weblink_datestamp FROM ".DB_WEBLINKS." tl
LEFT JOIN ".DB_WEBLINK_CATS." tc
ON tl.weblink_cat=tc.weblink_cat_id
WHERE ".groupaccess('tc.weblink_cat_access')." AND tc.weblink_cat_id=".$cat_id."
ORDER BY weblink_datestamp DESC LIMIT 0,5");
if (dbrows($result)) {
while($data = dbarray($result)) {
$weblink_name = trimlink($data['weblink_name'], 23);
echo THEME_BULLET." <a href='".BASEDIR."weblinks.php?weblink_id=".$data['weblink_id']."' title='".$data['weblink_name']."' class='side' target='_blank'>".$weblink_name."</a> <br />\n";
}
} else {
echo "<div style='text-align:center'>".$locale['431']."</div>\n";
}
closeside();
<?php
openside("Rušne ZSCS/ŽSR");
include LOCALE.LOCALESET."weblinks.php";
//Category ID to show latest weblinks from
$cat_id ="9";
$result = dbquery("SELECT
weblink_id,
weblink_name,
weblink_datestamp FROM ".DB_WEBLINKS." tl
LEFT JOIN ".DB_WEBLINK_CATS." tc
ON tl.weblink_cat=tc.weblink_cat_id
WHERE ".groupaccess('tc.weblink_cat_access')." AND tc.weblink_cat_id=".$cat_id."
ORDER BY weblink_datestamp DESC LIMIT 0,5");
if (dbrows($result)) {
while($data = dbarray($result)) {
if ($data['weblink_datestamp']+604800 > time()+($settings['timeoffset']*3600)) {
$new = "<img src='".INFUSIONS."articles_panel/images/new.gif' style='border: 0px; ' alt='NEW' />";
} else {
$new = "";
}
$weblink_name = trimlink($data['weblink_name'], 23);
echo "<div style='width:99%;'>".THEME_BULLET." <div style='float: right; padding-right: 3px;'>".$new."</div><a href='".BASEDIR."weblinks.php?weblink_id=".$data['weblink_id']."' title='".$data['weblink_name']."' class='side' target='_blank'>".$weblink_name."</a></div>\n";
}
} else {
echo "<div style='text-align:center'>".$locale['431']."</div>\n";
}
closeside();
?>
openside("Rušne ZSCS/ŽSR");
include LOCALE.LOCALESET."weblinks.php";
//Category ID to show latest weblinks from
$cat_id ="9";
$result = dbquery("SELECT
weblink_id,
weblink_name,
weblink_datestamp FROM ".DB_WEBLINKS." tl
LEFT JOIN ".DB_WEBLINK_CATS." tc
ON tl.weblink_cat=tc.weblink_cat_id
WHERE ".groupaccess('tc.weblink_cat_access')." AND tc.weblink_cat_id=".$cat_id."
ORDER BY weblink_datestamp DESC LIMIT 0,5");
if (dbrows($result)) {
while($data = dbarray($result)) {
if ($data['weblink_datestamp']+214800 > time()+($settings['timeoffset']*3600)) {
$new = " [<span class='small' style='color: #ff0000;'>NEW</span>]";
} else {
$new = "";
}
$weblink_name = trimlink($data['weblink_name'], 23);
echo "<div style='width:99%;'>".THEME_BULLET." <div style='float: right; padding-right: 3px;'>".$new."</div><a href='".BASEDIR."weblinks.php?cat_id=".$data['weblink_cat_id']."' title='".$data['weblink_name']."' class='side' target='_blank'>".$weblink_name."</a></div>\n";
}
} else {
echo "<div style='text-align:center'>".$locale['431']."</div>\n";
}
closeside();
Category Forum
Panels and InfusionsLabels
None yet
Statistics
2 participants
Notifications
You are not receiving notifications from this thread.
Related Questions