예제 #1
0
<?php

require_once $_SERVER['DOCUMENT_ROOT'] . '/../init.inc.php';
Template::SetTitle('首页');
if (isset($_REQUEST['type'])) {
    $options = array('type' => (int) $_REQUEST['type']);
}
$itemType = ItemType::getList($options);
Template::assign('itemType', $itemType);
Template::display('index.tpl');
예제 #2
0
파일: list.php 프로젝트: cmooony/d4d-studio
<?php

require_once $_SERVER['DOCUMENT_ROOT'] . '/../init.inc.php';
Template::SetTitle('首页');
$options = array('type_id' => (int) $_REQUEST['type']);
$itemType = ItemType::getList();
$itemList = Item::getList($options);
Template::assign('itemType', $itemType);
Template::assign('itemList', $itemList);
Template::display('list.tpl');