Love Fuel?
Donate
About
Forums
Discussions
Login
FuelPHP Forums
Ask your question about FuelPHP in the appropriate forum, or help others by answering their questions.
General
Module route with subfolder
efx
April 2014
hey,
is it possible to have a folder in Module controller ?
because I can't access through Route.
For exemple, my module blog : Modules/blog/classes/controller/backend/post.php
I have can not access to blog/backend/post/index
maybe its module limitation ?
thx
Harro
April 2014
Yes, not a problem.
That file should contain:
namespace Blog;
class Controller_Backend_Post
{
public function action_index()
{
}
}
Is that so?
efx
April 2014
Thanks Wanwizard
;)
Add a Comment
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Apply for Membership
Categories
All Discussions
5,088
General
↳ General
3,364
↳ Job Board
13
↳ Installation & Setup
214
Packages
↳ Oil
213
↳ Orm
700
↳ Auth
260
Development
↳ Tips and Tutorials
126
↳ Code share
145
↳ Applications
52
In this Discussion
efx
April 2014
Harro
April 2014