I'm trying to add custom pages to user model.
If I would be making simple pages I would simply create controller in my application\classes\controller
and a view file in \application\views
, but now I would like to do same thing with user module.
I found view files in modules\user\views\user but I can't find controller or anything else what is loading them.
I've tried to simply make new file called test.php and then navigated to localhost/user/test
but get an error:
The requested URL user/test was not found on this server.
If i would try localhost/user/profile everything works just fine. What am I doing wrong here?