mirror of
https://github.com/YGGverse/YGGtracker.git
synced 2026-04-01 01:25:39 +00:00
init MVC framework refactory #14
This commit is contained in:
parent
c4f5409ffa
commit
a600a08a28
28 changed files with 1235 additions and 925 deletions
11
src/app/controller/module/search.php
Normal file
11
src/app/controller/module/search.php
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
class AppControllerModuleSearch
|
||||
{
|
||||
public function render()
|
||||
{
|
||||
$query = empty($_GET['query']) ? false : urldecode($_GET['query']);
|
||||
|
||||
include __DIR__ . '../../../view/theme/default/module/search.phtml';
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue