I'm currently working on my own PHP Framework, and I need some help figuring out if I'm going in the right direction or not...
The framework is both for my own use and to generally advance my PHP skills further. I've encountered numerous problems that by overcoming them I have learned a great deal, and love being able to create something from nothing, so I'd rather not see answers like "Just use Zend"! ;)
I have read a bunch of articles both on Stack Overflow and a bunch of other sites, but can't quite get the right answer I need, so hopefully someone can give me some helpful advice!
I've tried a few different solutions, but I've just ended up confusing myself and I'm not sure which direction to go now! Can't quite get my head around it all...
'Theoretical' framework structure
- .htaccess
- index.php
- private/
- app/
- bootstrap.php
- modules/
- default/
- controllers/
- pages.php
- index.php
- models/
- views/
- admin/
- controllers/
- models/
- views/
- config/
- config.php
- autoloader.php
- lib/
- Some_Library
- Class1
- class1.php
- Class2
- class2.php
- public/
- css
- images
- scripts
Details
Anyways, to my question...
I thought it would be better to separate the admin section from the rest of the website, but that's where I'm getting stuck. I have made the above structure to work with it, but I'm not sure if this is the most effective way.
If a request site.com/videos/view/1/ comes to my site..
Module: Default Controller: Videos Action: View Params: array( '1' )
and if the request site.com/admin/pages/view/1/ comes to my site..
Module: Admin Controller: Pages Action: View Params: array( '1' )
Is this the right way to go about this? Or am I over-complicating it and doing something that's not worth doing?
Should I have a completely separate application framework for my admin section...? Do I even need to separate the admin section's MVC's from the rest of it all?
Sorry for the massive question, just wanted to give you as much info as possible! Feel free to answer whichever part you can =P
One Solution for admin routing is what CakePHP does, you first define a configuration for the admin string and then in your controller use actions with a specific naming convertion
//Configuration ============================
Configure::write("admin_routing" , true );
Configure::write("admin_prefix" , "admin" );
//Controller ===============================
class MyController extends AppController{
function index(){
//Will map to /mycontroller/
}
function admin_index(){
//Will map to /admin/mycontroller/
}
}
You can generalize this by using a routing system just look how your favorite framework does it
On another note
Hope this helps
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With