コード例 #1
0
ファイル: content.php プロジェクト: Jay204/nZEDb
if (isset($_REQUEST['page'])) {
    $request = $_REQUEST['page'];
}
if ($contentid == 0 && $request == 'content') {
    $content = $contents->getAllButFront();
    $page->smarty->assign('front', false);
    $page->meta_title = 'Contents page';
    $page->meta_keywords = 'contents';
    $page->meta_description = 'This is the contents page.';
} else {
    if ($contentid != 0 && $request !== false) {
        $content = array($contents->getByID($contentid, $role));
        $page->smarty->assign('front', false);
        $page->meta_title = 'Contents page';
        $page->meta_keywords = 'contents';
        $page->meta_description = 'This is the contents page.';
    } else {
        $content = $contents->getFrontPage();
        $index = $contents->getIndex();
        $page->smarty->assign('front', true);
        $page->meta_title = $index->title;
        $page->meta_keywords = $index->metakeywords;
        $page->meta_description = $index->metadescription;
    }
}
if ($content == null) {
    $page->show404();
}
$page->smarty->assign('content', $content);
$page->content = $page->smarty->fetch('content.tpl');
$page->render();
コード例 #2
0
ファイル: content.php プロジェクト: nubzzz/newznab
<?php

require_once "config.php";
require_once WWW_DIR . "/lib/content.php";
$contents = new Contents();
$role = 0;
if ($page->userdata != null) {
    $role = $page->userdata["role"];
}
$contentid = 0;
if (isset($_GET["id"])) {
    $contentid = $_GET["id"];
}
if ($contentid == 0) {
    $content = $contents->getIndex();
} else {
    $content = $contents->getByID($contentid, $role);
}
if ($content == null) {
    $page->show404();
}
$page->smarty->assign('content', $content);
$page->meta_title = $content->title;
$page->meta_keywords = $content->metakeywords;
$page->meta_description = $content->metadescription;
$page->content = $page->smarty->fetch('content.tpl');
$page->render();