Welcome Guest, Not a member yet? Register   Sign In
The easiest way to know if it is HMVC?
#1

[eluser]solid9[/eluser]
Okay let say the site is under CodeIgniter.

What is the fastest or easiest or the right way to know,
If the site is under HMVC?

I can say by looking at the structure of the folder?

So how about you? What can you suggest?

Thanks in advanced.

#2

[eluser]Aken[/eluser]
Folder structure + HMVC add on. CI does not support HMVC out of the box, so it should be easy to spot.
#3

[eluser]PhilTem[/eluser]
Either:

Structure of the folders or

inside any controller, library, or model do the following
Code:
if ( method_exists(array(&$this->router), 'fetch_module') )
{
  // we got HMVC
}




Theme © iAndrew 2016 - Forum software by © MyBB