pzct/app/controller/Contact.php

19 lines
459 B
PHP
Raw Normal View History

2023-07-25 09:22:32 +00:00
<?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();
2023-07-26 08:02:37 +00:00
$this->setSeo($category['title'].'|'.$this->system['seo_title'], $this->system['seo_keywords'], $this->system['seo_description']);
2023-07-25 09:22:32 +00:00
$this->data['category'] = $category;
return $this->view();
}
}