Tagged Questions

35
votes
5answers
5k views

What is the HMVC pattern?

Reading Kohana's documentation, I found out that the main difference in 3.0 version is that it follows the HMVC pattern instead of MVC as version 2.x does. The page about this in Kohana's docs and the ...
7
votes
6answers
215 views

Multiple models vs single model

I have a question about MVC. Particularly about models. Suppose that I have a category table in my database. Now I would like to questions both a single category for details. Also I will need a ...
6
votes
3answers
155 views

Making Changes a Live Site (Codeigniter, but not specific to it)

I'm using Codeigniter if this makes it easier. I'm wondering if a website is live with populated database and users accessing, and I have a new idea to implement into the website, how should I do it? ...
6
votes
3answers
444 views

Hierarchic MVC in Rails 3?

I've read about HMVC (Hierarchic Model View Controller) and it's flexible structure. Have a look at this picture: http://techportal.ibuildings.com/wp-content/uploads/2010/02/MVC-HMVC.png I wonder ...
6
votes
3answers
1k views

What Can I Use the HMVC Architecture for?

the PHP framework I am using (Kohana) recently implemented the HMVC architecture. I have read that it's a layered mvc where requests are made on top of each other. It is a bit like ajax, just purely ...
4
votes
2answers
716 views

MVC vs HMVC for web application development

Now, I'm using MVC pattern for web development. I use codeIgniter framework. I found http://fuelphp.com/ and http://kohanaframework.org/ , they are using HMVC. I still not clear of HMVC and why we ...
4
votes
3answers
877 views

Kohana 3.0's HMVC structure in layman's terms?

So, I think i understand the cascading filesystem in it's basic terms, but I can't seem to wrap my head around the 'H'ierachy structure of the MVC. Could anyone tell me the advantages of using HMVC ...
3
votes
1answer
306 views

Should I make this a Different Module in HMVC Codeigniter?

I'm just getting started using HMVC in Codeigniter. The main module is a news/blog site called 'blog'. I want users to be able to log in to comment, so I have authentication files (tank auth ...
2
votes
3answers
163 views

PHP MVC Form Processing in witch action?

I am wondering about HTML form processing in MVC. I use Kohana at the moment, but the question is generic type. So i wanna gather opionions and recommendations about two approaches : Keeping ...
2
votes
1answer
421 views

HMVC and Views in folders (Codeigniter)

I am using Tank Auth library in Codeigniter with HMVC and the entire tank auth mvc files are in its own module called 'auth'. tank auth loads a view ...
2
votes
1answer
265 views

Whats the convention on URL-structure in MVC/HMVC/PAC pattern?

In MVC its like http://www.yourdomain.com/sampleController/sampleAction/ and if you call just /sampleController/ then /sampleController/indexAction/ and if you just call / then ...
1
vote
2answers
132 views

HMVC Design Pattern in PHP

There are hundreds of tutorials of how to create your own simple MVC I can't find any tutorial how to implement HMVC with it but I do understand how does HMVC work, it is a bit like Ajax, you can ...
1
vote
2answers
95 views

Routing in Codeigniter with HMVC [closed]

Possible Duplicate: Codeigniter HVMC modular seperation extension URL rewrite / routing I am new to codeigniter HMVC. I currently have four modules which are as follows: ...
1
vote
1answer
114 views

Different Subdomains for Different Cities

I am developing a website using Codeigniter that will have different subdomains for different US cities, like Boston.mysite.com, NYC.mysite.com, Philadelphia.mysite.com just like Groupon, Yelp etc. ...
1
vote
1answer
692 views

Path of Config file in HMVC Codeigniter (HMVC + Tank Auth)

I'm experiencing a problem with the paths of a config file for a module called 'auth' (which contains the tank_auth authentication library). Every function in the 'auth' module loads the ...
0
votes
1answer
70 views

CodeIgniter third_party

This was posted 8 months ago: Codeigniter 2.0 third_party folder. This was posted almost a year ago: http://philsturgeon.co.uk/blog/2010/04/codeigniter-packages-modules. I'm wondering if anything ...
0
votes
1answer
190 views

Codeigniter HMVC modules structure

I'm working on a content management system in Codeigniter with the Datamapper and HMVC extension. My question is, how to handle submodules. Example: I want to create an User module which exists ...
0
votes
3answers
121 views

CodeIgniter - modular?

I'm building several sites that need similar "modules." For example, the sites may have the exact same login system, forum, etc. Is there a way I could build these modules once and just "drop" them ...
0
votes
1answer
108 views

Kohana 3 internal actions

I think that framework shouldn' be a cage for developer, and because Kohana gives a lot of freedom I am just wondering how do other guys handle two action-related things: Internal actions. I mean if ...
0
votes
0answers
52 views

HMVC comparison with MVP

I am using GWT for my application.And this application I am using HMVC pattern.It is a hierarchical model view controller.Basically I want to compare HMVC and MVP. So if any one can help me for that, ...
0
votes
3answers
181 views

Am I able jump to Kohana?

I'm web developer. I'm using PHP! I don't know how many years of experience I have. Let's say - a few. x) I know object-oriented programming as well. So let me as you a question. =] Can I go to ...
0
votes
4answers
186 views

Controller vs. Model - Need explaination

I'm on the begining of my "Learn MVC" way. Basically, I don't have big problems with object-oriented programming however there's one technical aspect that needs clarification. It seems that my theory ...