예제 #1
0
			<h1><?php 
echo page_title();
?>
</h1>
		</header>

		<?php 
echo page_content();
?>
		
		<ul>
		<?php 
while (categories()) {
    ?>
		<?php 
    if (category_id() == 2) {
        continue;
    }
    ?>
			<li><a href="<?php 
    echo category_url();
    ?>
"><?php 
    echo category_title();
    ?>
</a> - <?php 
    echo category_description();
    ?>
</li>
		<?php 
}
예제 #2
0
function is_category()
{
    if (category_id()) {
        return true;
    }
}
예제 #3
0
            break;
    }
    header("Location: dz_9.php");
    exit;
}
// Удаление объявления
if (isset($_GET['delete'])) {
    $del_id = (int) $_GET['delete'];
    delAd($del_id);
    header("Location: dz_9.php");
    exit;
}
// Вывод объявления
if (isset($_GET['show'])) {
    $edit_id = (int) $_GET['show'];
    $editAd = showAd($edit_id);
    $smarty->assign('editAd', $editAd);
}
$smarty->assign('location_sel', 641780);
// Выбранный город по умолчанию
$smarty->assign('location_id', location_id());
$smarty->assign('category_id', category_id());
$smarty->assign('label_id', label_id());
$smarty->assign('radio_id', array(0 => 'Частное лицо', 1 => 'Компания'));
// Показ списка объявлений
$ads_db = showAll();
//date_default_timezone_set('Europe/Moscow');
if (isset($ads_db)) {
    $smarty->assign('showAd', $ads_db);
}
$smarty->display('index.tpl');
예제 #4
0
function category_count()
{
    return Query::table(Base::table('posts'))->where('category', '=', category_id())->where('status', '=', 'published')->count();
}
예제 #5
0
            break;
    }
    header("Location: dz_9.php");
    exit;
}
// Удаление объявления
if (isset($_GET['delete'])) {
    $del_id = (int) $_GET['delete'];
    delAd($link, $del_id);
    header("Location: dz_9.php");
    exit;
}
// Вывод объявления
if (isset($_GET['show'])) {
    $edit_id = (int) $_GET['show'];
    $editAd = showAd($link, $edit_id);
    $smarty->assign('editAd', $editAd);
}
$smarty->assign('location_sel', 641780);
// Выбранный город по умолчанию
$smarty->assign('location_id', location_id($link));
$smarty->assign('category_id', category_id($link));
$smarty->assign('label_id', label_id($link));
$smarty->assign('radio_id', array(0 => 'Частное лицо', 1 => 'Компания'));
// Показ списка объявлений
$ads_db = showAll($link);
//date_default_timezone_set('Europe/Moscow');
if (isset($ads_db)) {
    $smarty->assign('showAd', $ads_db);
}
$smarty->display('index.tpl');