/*
+------------------------------------------------------------+
| |
| Article Manager Pro |
| ======================================== |
| |
| |
| (c) 2005 - 2006 AlstraSoft |
| http://www.alstrasoft.com |
| |
| ======================================== |
| |
| Url : http://www.alstrasoft.com/article_manager.htm |
| Email : support@alstrasoft.com |
| |
| Last Update : Aug 25, 2006 |
| | | |
+------------------------------------------------------------+
*/
include "init.php";
/*
-------------------------------------------------------------------------
get vlues from settings table for index title, meta and welcome message
-------------------------------------------------------------------------
*/
$idx_res = query("SELECT * from {$prefix}settings");
if(mysql_num_rows($idx_res)==0) echo "no data";
else
$idx_row = fetch($idx_res);
$title = "$idx_row[set_index_title]";
$desc = "$idx_row[set_index_meta]";
$sscript = "
";
include "header.php";
check_site_onoff();
/*
------------------------------------------------------
| Intializing all left templates |
| |
------------------------------------------------------
*/
$left_main_categories = get_cats();
$temp = template("./templates/left_more_options");
eval("\$left_more_options = \"$temp\";");
$temp = template("./templates/left_newsletter");
eval("\$left_newsletter = \"$temp\";");
/*
------------------------------------------------------
| Intializing all right templates |
| |
------------------------------------------------------
*/
$right_random_article = get_random_art();
$right_statistics = get_stats();
$featured_data = get_featured_art();
$recent_art_data = get_recent_art();
/*
------------------------------------------------------
| Intializing all center templates |
| |
------------------------------------------------------
*/
$temp = template("./templates/top_site_search");
eval("\$top_site_search = \"$temp\";");
$temp = template("./templates/welcome_msg");
eval("\$welcome_msg = \"$temp\";");
$left="$left_main_categories
$left_more_options
$left_newsletter
";
if($idx_row['set_ads_index'] == "on")
$center = "$top_site_search $welcome_msg
$featured_data $recent_art_data";
else
$center = "$top_site_search $welcome_msg
$featured_data $recent_art_data";
$right = "$right_random_article
$right_statistics
";
$temp = template("./templates/center_main");
eval("\$center_main = \"$temp\";");
echo $center_main;
$temp = template("./templates/footer");
eval("\$footer = \"$temp\";");
echo $footer;
@mysql_close();
?>