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 ...
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
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 ...
3
votes
2answers
176 views

How do I preserve the value of a variable after an HMVC sub-request in Kohana 3.1?

I'm having an issue with preserving the value of a variable after an HMVC sub-request in Kohana 3.1.3.1 and am wondering how best to approach/fix it. I thought that additional requests in Kohana were ...
2
votes
1answer
287 views

Share a Kohana install between sites

Hey all, kind of new at Kohana and I have a quick question. I have a site where there will be three subsections, organized by subdomain (i.e. admin.site.com, community.site.com, www.site.com) but ...
1
vote
1answer
289 views

Designing an application around HMVC and AJAX [Kohana 3.2]

I am currently designing an application that will have a few different pages, and each page will have components that update through AJAX. The layout is similar to the new Twitter design where 'Home', ...
0
votes
1answer
108 views

Kohana children controllers with HMVC

I have a main controller and I want to call child controllers from this controller with HMVC. I setted a rule that routes parameter to a specific action that calls children controllers with ...
0
votes
2answers
204 views

How to implement HMVC using Kohana's cascading file system

Kohana 3.2 was designed to support the HMVC design pattern. The HMVC pattern consists of nested MVC-triads. Yet as far as I can tell, Kohana's cascading file system requires all Models and Controllers ...
0
votes
1answer
162 views

Kohana : how to get the sub-request's (HMVC) cookie changes

I use the following code to perform sub-request in HMVC structure: A request to "page1" will make a sub-request to "page2" by the following code: $request = Request::factory('/page2') ...
0
votes
0answers
100 views

Correct controller include in kohana 3.1

I made a design_controller which makes any preparations for the view engine (for example check user auth or $this->template->set_global( 'current_page', $this->current_page)) The design ...
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 ...