17 lines
319 B
PHP
17 lines
319 B
PHP
|
<?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();
|
||
|
}
|
||
|
}
|