Skip to content

Commit d9a3d42

Browse files
committed
Override MiniPhpFw not found method, update views
1 parent 2bdc83f commit d9a3d42

File tree

6 files changed

+26
-4
lines changed

6 files changed

+26
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
3+
namespace App\Controllers;
4+
5+
class ErrorsController extends \SideDevOrg\MiniPhpFw\Controller
6+
{
7+
/**
8+
* Override MiniPhpFw not found method
9+
*
10+
* @return string
11+
*/
12+
public function not_found() : string
13+
{
14+
return $this->view('errors/404');
15+
}
16+
}

app/src/App/Controllers/HomeController.php

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
class HomeController extends \SideDevOrg\MiniPhpFw\Controller
66
{
7+
/**
8+
* GET /
9+
*/
710
public function index()
811
{
912
return $this->view('home');
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{% BLOCKS }}
2-
{{< layout }}
2+
{{< layout/master }}
33
{{$ title }}Not found{{/ title }}
44

55
{{$ content }}
@@ -9,4 +9,4 @@
99
</div>
1010

1111
{{/ content }}
12-
{{/ layout }}
12+
{{/ layout/master }}

app/views/home.hbs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{% BLOCKS }}
2-
{{< layout }}
2+
{{< layout/master }}
33
{{$ title }}Home{{/ title }}
44

55
{{$ content }}
@@ -9,4 +9,4 @@
99
</div>
1010

1111
{{/ content }}
12-
{{/ layout }}
12+
{{/ layout/master }}
File renamed without changes.

public/index.php

+3
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,8 @@
2323
'routesCache' => '../app/storage/route.cache',
2424
'assets_manifest' => 'static/build/mix-manifest.json',
2525
],
26+
'config' => [
27+
'not_found_controller' => '\App\Controllers\ErrorsController::not_found',
28+
]
2629
]
2730
);

0 commit comments

Comments
 (0)