pzct/app/controller/Contact.php

17 lines
319 B
PHP
Executable File

<?php
namespace app\controller;
use app\model\Category;
class Contact extends Base
{
public function index()
{
$categoryId = Category::CATEGORY_CONTACT;
$category = Category::where('id', $categoryId)->find();
$this->data['category'] = $category;
return $this->view();
}
}