Love Fuel?    Donate

FuelPHP Forums

Ask your question about FuelPHP in the appropriate forum, or help others by answering their questions.
Module route with subfolder
  • 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
  • Yes, not a problem.

    That file should contain:

    namespace Blog;

    class Controller_Backend_Post
    {
        public function action_index()
        {
        }
    }

    Is that so?
  • Thanks Wanwizard ;)

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion