Beispiel #1
0
$paging = new SectionTemplate();
$paging->file = "paging.php";
$paging->args['perPage'] = is_numeric($_GET['e']) ? $_GET['e'] : 10;
$paging->args['start'] = is_numeric($_GET['s']) ? $_GET['s'] : ($paging->args['start'] = 1);
if ($_GET['id']) {
    $view = 'detail';
    $bnd = BandNews::get($_GET['id']);
    $st = new SectionTemplate();
    $st->file = "news_detail.php";
    $st->args['news'] = $bnd;
} else {
    if ($_GET['browse']) {
        $view = 'browse';
        $news = array();
        $result = $bn->get_band_news($_GET['e'], $_GET['s'], 1);
        $paging->args['total'] = $bn->get_total(1);
        $paging->args['url'] = USE_MOD_REWRITE ? SITE_WEB_DIRECTORY . 'news/browse/' : 'news.php';
        foreach ($result as $bnd) {
            $st = new SectionTemplate();
            $st->file = "news_summary.php";
            $st->args['news'] = $bnd;
            $news[] = $st;
        }
    } else {
        if ($_GET['q']) {
            $view = 'search';
            $paging->args['total'] = $bn->get_total_search($_GET['q'], 1);
            if (USE_MOD_REWRITE) {
                $paging->args['url'] = SITE_WEB_DIRECTORY . '/news/search/' . $_GET['q'] . '/';
            } else {
                $paging->args['url'] = SITE_WEB_DIRECTORY . '/news.php?q=' . $_GET['q'];
<?php

include 'base.php';
User::protect();
$section = 'band_news';
include_class('band_members');
include_class('band_news');
$page_title = 'Add/Edit Band News';
$nl = new BandNewsList();
$newslist = $nl->get_band_news($_GET['entries_per_page'], $_GET['start']);
$news_total = $nl->get_total();
include 'layout/header.php';
?>

<div id="breadcrumb">
	<a href="index.php">Audition&nbsp;&#62;</a>&nbsp;<a href="band.php">Manage&nbsp;Band&nbsp;&#62;</a>&nbsp;Band News
</div>

	<?php 
if (db::isError($newslist)) {
    $newslist->outputList();
}
?>
	
	<h1>band news:</h1>
	<div class="inset">
	<p>
	<form id="amount_form" action="<?php 
echo $PHP_SELF;
?>
" method="get">