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
214 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
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
875 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
2answers
80 views

Combining multiple controllers on one page, without loading controllers from a controller

I'm trying to create a page that displays certain widgets/includes dependent on the users permissions. I'm quite new to CodeIgniter and MVC. Example. I have a calendar. This has a controller, model ...
3
votes
1answer
359 views

Trouble with HMVC modular extensions for CodeIgniter

I've been developing locally on MacOS X Snow Leopard using PHP 5.3, CodeIgniter 2.0 and HMVC Modular Extensions. Everything has been working great. Suddenly, for no reason I can pinpoint, I am ...
3
votes
1answer
304 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
3answers
161 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
420 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
264 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 ...
2
votes
1answer
285 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 ...
2
votes
2answers
898 views

HMVC in Zend Framework

Is it possible to use the HMVC pattern in Zend Framework? It is implemented in Kohana 3 by default and I really love it, so now I want to use it in Zend Framework. Edit I want to make it possible ...
1
vote
2answers
131 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
1answer
41 views

Using a single get function for all models

So I have this bit of code in an extended model (MY_Model) in CodeIgniter: function get($options = array(), $selects = array(), $joins = array(), $table, $object = TRUE) { if(!empty($options)) ...
1
vote
2answers
182 views

Best way to autoload a model class in specific folder HMVC

I'm currently writing my own PHP framework as a learning exercise using the HMVC design pattern. It all works :), but I've read many times that it's a bad habit to refer to static classes in your PHP ...
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
690 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 ...
1
vote
1answer
266 views

codeigniter HMVC extension model organization

I am developing a portal and using codeigniter with HMVC extension. I have an "admin" module and a "yellowpages" module. Both these modules have a common model eg: "Category_model", and I use it to ...
0
votes
1answer
25 views

Accessing controller public controllor properties from a hmvc module

Am working with wiredesignz modular extensions for codeigniter, and i was wondering if its possible to access a regular codeigniter controller's public property from a module's controller for example, ...
0
votes
1answer
28 views

Passing arguments to a HMVC Module method using an array

While using the HMVC Component in Codeignitors, we can render a particular actions like this echo modules::run('site/news/view', 1); Here the 1 is the parameter send to the view method. Now I have ...
0
votes
0answers
52 views

CodeIgniter HMVC: extend a library or create a global controller?

I've started using HMVC in Codeigniter with Modular Extension and i want to create a set of methods avalaible in the whole application. For example i've this three methods: a method to retrieve te ...
0
votes
1answer
85 views

CodeIgniter: some doubts about HMVC and Views

I've just discovered HMVC Modular Extension for CodeIgniter https://bitbucket.org/wiredesignz/codeigniter-modular-extensions-hmvc/wiki/Home and it seems perfect for my needs but I have some question. ...
0
votes
1answer
107 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
1answer
149 views

How to call Module function in Codeigniter HMVC? Tank auth

I have installed tank auth to save me time creating a authentication script. As I am using HMVC, tank auth has it's own module (modules/auth). How can I protect my other modules (/admin, /members ...
0
votes
1answer
139 views

CodeIgniter, HMVC, and where to put common libraries?

If I'm planning to use HMVC, should I put libraries that I think each application may use in /system/libraries?
0
votes
1answer
187 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
1answer
137 views

routing Codeigniter with HMVC

I'm using Codeigniter in combination with Datamapper and HMVC. see folder structure: -application -controllers -admin -admin.php -modules -users -models ...
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
1answer
198 views

CodeIgniter Modular Extension Broken on CentOS

I have been using CodeIgniter (1.7.2+) for years now and have it running in 15+ live production environments (LOVE IT). Recently my team and I speced out a very complicated system that will require ...
0
votes
1answer
115 views

What are modules in CodeIgniter?

I would like to know about modules in CodeIgniter, and where can I learn how to develop modules?
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
5answers
778 views

Using Ion Auth as a seperate module in the HMVC structure

I am interested in using ion auth for a project of mine which is running on the HMVC pattern. The application is written in Codeigniter. The problem I face is once the ion auth is placed in the ...
0
votes
1answer
386 views

Problems with Codeigniter HMVC subfolders

I have encountered an issue using subfolders with Codeigniter + HMVC. /system/application/modules/welcome/controllers/staff/welcome.php To access this I have to access it via ...
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 ...
0
votes
2answers
467 views

codeigniter HMVC problem

I installed the codeigniter HMVC plugin and it's working fine for me but when I try to load any plugin I get the error An Error Was Encountered Unable to locate the file: captcha_pi.php Even ...
0
votes
2answers
737 views

Getting 404 page not found in the log using Codeigniter 1.7.2 + HMVC

I am using Codeigniter 1.7.2 and HMVC (https://bitbucket.org/wiredesignz/codeigniter-modular-extensions-hmvc/wiki/Home). I have these files and they are organized according to the HMVC: ...
0
votes
2answers
358 views

Kohana 3 : Prevent a controller action which renders a sub-vew from rendering if not called from approved controller

Let's say I have the domain www.example.com It has a default controller called 'account'. This controller is based on a template, and creates a view using it's data, and the result of a couple of ...