blob: 7760655625d47382ea9a802deb231cb3885fa0b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
session_start();
require_once('vendor.inc.php');
$smarty = new Smarty;
$smarty->assign('loggedin', isset($_SESSION['username']));
$smarty->assign('categories', CategoryQuery::create()->find());
$smarty->display('categories.tpl');
?>
|