Tagged Questions
The HMVC (Hierarchical-Model-View-Controller) pattern decomposes the client tier into a hierarchy of parent-child MVC (Model-View-Controller) layers.
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
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
362 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
2answers
423 views
Codeigniter HMVC effect on performance
OK, so HMVC in Codeigniter is the way to go for scalable web applications based off many stackoverflow discussions such as HMVC patterns and MVC vs HMVC.
But, how will using an HMVC approach affect ...
3
votes
1answer
305 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 ...
3
votes
2answers
338 views
What functionality should go into Zend Framework modules?
I'm a bit puzzled about Zend Framework modules.
I mean - I understand that you would usually want to have frontend and backend module... right?
But - What else would you separate out into modules?
...
3
votes
2answers
755 views
Codeigniter HMVC and datamapper compatibility
I am new to Codeigniter and I am thinking about the use of this framework in my new project.
I am going to need these two extensions. Before digging into too deep, I wonder if anyone already has ...
2
votes
2answers
135 views
Accurate use / consumption of the HMVC pattern?
I am trying to understand HMVC and how or if I should consider it in my current MVC app.
Regarding this quote from [this][1] question about MVC architecture,
Sometimes the ...
2
votes
1answer
374 views
CodeIgniter and HMVC questions
First of all, sorry for any convenience caused by this post because this is the first time I post a question here and I need more time to get used to with this.
Q1. I want to create 2 "master ...
2
votes
3answers
162 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
210 views
Modular Extensions CI anchors to assets
So, I'm making a CMS at the mo, and using the modular extensions HMVC CI 2.0. It's lovely. I'm wondering the correct method for keeping my assets (js, css, img) related to a module within the module ...
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 ...
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 ...
2
votes
2answers
901 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 ...
2
votes
3answers
1k views
HMVC and dynamic widgets
Background
I use the word widget as a partial view that have its own controller (so its own actions) and it is placed in almost all pages. I implement the rendering of this via HMVC, that is just ...
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', ...
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
94 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
42 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
3answers
797 views
Setting up Codeigniter HMVC with tank auth
I am having trouble getting a working Codeigniter version 2.0.3 with hmvc and tank auth(set up as a module) setup properly. I have installed CI properlly and then install HMVC with these directions ...
1
vote
2answers
183 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
143 views
Codeigntier occasional database connection error
I'm using Codeigniter, and I have have not had any issues connecting to the database in the past.
I was doing some restructuring of the database (adding columns, inserting data, etc), and now I get ...
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
289 views
Codeigniter HMVC and calling a view from jQuery
New to HMVC in Codeigniter.
Dynamic form allows new "segments" to be created when a user clicks a link.
Currently the segment html & php is in module/view/segment_view.php. The view ...
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 ...
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 ...
1
vote
1answer
432 views
Basic Codeigniter HMVC Installation
I have a existing working installation of CI 2.02 that autoloads libraries and helpers. When I perform the HMVC installation by dropping the core and 3rd party files into their respective locations in ...
1
vote
1answer
395 views
How to deal with view files using HMVC?
Just a quick question about making my modules truly portable. I’ve noticed that many modules come with their own view files (including their own css, html, and javascript), which can be handy if you ...
1
vote
1answer
434 views
codeigniter hmvc module helper
i made module comments, it requiers my custom helper to work, how can i store helper in module folder instead application/helpers?
1
vote
1answer
389 views
Loading views in codeigniter HMVC not working
I am trying to load a view from a second controller's view within my first controller but it gives the error that the view cannot be found, even though it is there.
Example
Module -> music
Views -> ...
1
vote
2answers
197 views
HMVC framework for Coldfusion?
I'm given a task to develop a couple of applications in ColdFusion that will share some of the data - same data but different presentation.
The first solution that comes in mind is to create a ...
0
votes
1answer
26 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
73 views
HMVC with latest codeigniter 2.1.1 View not loading in windows machine shows blank screen
I'm using Codeigniter 2.1.0 and latest HMVC library from here
On my development ubuntu machine code works withut any problem, but when I try to run the same code in windows machine views are not ...
0
votes
0answers
61 views
Integrate Smarty and Module Extend in CodeIgniter
I am new with smarty framework. I want to make a project that have integration smarty and module extend(MX) with CodeIgniter.
I can integrate but not response to what i want.
my result is work only ...
0
votes
1answer
29 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
54 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
42 views
Best technique for module implementation in Codeignitor
I am a little familiar with CI, and now I am trying to build a web portal using it. I am trying to make it flexible enough to accept widgets/modules. Just like how components are to joomla.
For ...
0
votes
2answers
67 views
Using tank_auth with multi type user and HMVC
Using Tank Auth for first time along with HMVC. In my application there are 2 type of user one is say student and another is institute.
I created two modules for each user type and separated the tank ...
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
0answers
198 views
codeigniter 2.1.0 and Modular Extension HMVC database error randomly
I installed CI 2.1.0 (latest), and installed Modulare extension HMVC (https://bitbucket.org/wiredesignz/codeigniter-modular-extensions-hmvc/wiki/Home).
I don't know what is the problem is, for same ...
0
votes
1answer
106 views
CodeIgniter 2.0 with Modular Extensions (HMVC) not showing anything in Linux
*edited to be more clearly
I'm deploying CI 2.0.3 with Modular Extensions (HMVC) in two environments, one is Windows -for development- and the other is Linux -for production-. Both environment has ...