HMVC 3 Is out and working codeigniter 3 - codeigniter

I know this is not a Question but a note:
I thought this would be use full for codeigniter hmvc users. Just found out that Wiredesignz HMVC has now released HMVC 3 version working https://bitbucket.org/wiredesignz/codeigniter-modular-extensions-hmvc/downloads
Works with codeigniter 3
Works fine but make sure when use controllers and librarys that files are capitalized. example Welcome.php

Related

Codeigniter HMVC Pattern

I've integrated
HMVC
pattern in codeigniter using below URl.
https://github.com/bhuban/modular
But still unable to load modules.
I want to make both admin and front side in single codeigniter package.
If anyone has idea please let me know.
Please check source.
This is frontend module and backend module use in this source it it perfect source in your requirement.
Codeigniter HMVC Pattern

where is module directory in laravel

In CodeIgniter framework there is a module directory :
application\models
but where is this directory in laravel 5 framework ?
It doesn't have one. Most people put models in the app folder itself, i.e. App\User. If you don't like that, just make a folder called Models and put them there.
Laravel 5 doesn't have any model directory because laravel is not MVC framework.
Please refer laravel forum following url:
http://laravel.io/forum/10-26-2014-laravel-5-where-is-the-models-folder

Codeigniter HMVC tutorials

I am looking for online tutorials or books that cover in-depth Codeigniter HMVC. Most of the online tutorials I have found only cover the very installation of HMVC. And I can not find any books at all on Codeigniter HMVC. All help greatly appreciated.
The best tutorial is this one
https://www.youtube.com/watch?v=8fy8E_C5_qQlist=PLBEpR3pmwCawDZ6FgNYoyvicEz4HrJPec
The tutorial it is made on codeigniter 2 and hmvc 2 vesions
But still the same setup to give you a idea.
The HMVC from here https://bitbucket.org/wiredesignz/codeigniter-modular-extensions-hmvc only made now for codeigniter 3
They have not reloaded codeigniter 2 versions on.
The only difference really is that you need to make sure you have the first letter of your class and file names as Uppercase.
I don't want to be negative but, Codeigniter does not come with HMVC "out of the box" so there aren't any official documentation or books that covers the subject, however, there are some extensions that allow CI to use HMVC architecture, each extension has its own documentation, some are better documented than others.
some codeigniter HMVC extensions:
https://github.com/Crypt/Codeigniter-HMVC
https://github.com/jenssegers/codeigniter-hmvc-modules
this one needs some hacks for CI2.x (I didn't try it with CI3 yet)
https://bitbucket.org/wiredesignz/codeigniter-modular-extensions-hmvc
this one is all in one (CI + HMVC extension)
http://lab.clearpixel.com.au/2011/10/modularise-your-codeigniter-2-applications-with-modular-extensions-%E2%80%93-hmvc/

How to implement HMVC in Laravel 4

Does laravel 4 have built in support for hmvc or are there bundles for this functionality? What is the best way to use HMVC in laravel 4.
This tutorial shows you how to implement modules in laravel 4 http://creolab.hr/2013/05/modules-in-laravel-4/
Here is one more hmvc option, https://github.com/LevareCMS/modulemanager
If you come from codeigniter, you may like this, http://forums.laravel.io/viewtopic.php?id=8664
Also is worth mentioning, depending on your needs, a view composer may achieve what you want.
It was implemented with laravel 4 in HMVC. You can clone at: https://github.com/ReyzWB/Laravel-4-Modular-Approach

Demo applications build with CodeIgniter

I've been learning how to work with CodeIgniter for a few weeks now, but I'm a little stuck on how to build a real application with it.
Are there any open source demo's that I could use to see how the flow works in there.
Couldn't find anything on Google.
Getting Started with CodeIgniter and How to Create All Those Great Apps:
Contains 12 easy to follow tutorials to build small apps!
4.1 Build an RSS 2.0 Feed with CodeIgniter
4.2 Generating PDF files using CodeIgniter
4.3 Building a Shopping Cart using CodeIgniter’s Shopping Cart Class
4.4 CodeIgniter Clan Site- Part1 & Part2
4.5 Validating Web Forms with the Code Igniter
4.6 A sample Facebook application with CodeIgniter
4.7 CodeIgniter and Ajax Using JQuery Tutorial
4.8 Real Live Search with Pagination
4.9 How to Update your Twitter Status with CodeIgniter
4.10 Codeigniter Event Calendar
4.11 Live search with CodeIgniter and Mootools
4.12 Creating a File Hosting Site with CodeIgniter
Get a look at the following scripts and apps created by CodeIgniter on hotscripts.com.
http://www.hotscripts.com/search/all-scripts/codeigniter
Please use this github project for demo Codeigniter CMS Aplication
https://github.com/daylightstudio/FUEL-CMS/tree/master/fuel
I looked around a bit and I found this site http://qoodles.phpfogapp.com/ it was built with codeigniter and the source code is on github: https://github.com/hush2/qoodles

Resources