Welcome Guest, Not a member yet? Register   Sign In
Project structure in MVC
#1

[eluser]Unknown[/eluser]
Hi,

I am new to MVC and trying to convert existing project to MVC using codeignater. Below is the current project structure and the contents of it.

I wanted to know, which method go to which controller. A guidance would really help me here

index.php //contains links to students.php, professors.php, student_prof.php, admin/index.php
students.php //lists all students
professors.php //lists all professors
stud_prof.php //lists both students along with thier respective professors

admin
index.php //login page
students.php // add, edit, delete, list students
professors.php // add, edit, delete, list professors
logout.php //logout for admin


my try,

models
Students_model //add, edit, delete, list methods
Professors_model //add, edit, delete, list methods
Admin //login method

controllers
Index // show_links method
Students //add, edit, delete, list students methods
Professors //add, edit, delete, list professors methods
Admin //login, logout methods


Thanks
#2

[eluser]RogerMore[/eluser]
Hey CodeLive,

Nothing wrong with your approach...

Just set the default controller to your index controller in application/config/routes.php like so and you're good to go:

Code:
$route['default_controller'] = 'index';

Roger
#3

[eluser]Unknown[/eluser]
Thank you very much




Theme © iAndrew 2016 - Forum software by © MyBB