I am using CI2.0 with PHP 5.3

I just started to use “Datamapper ORM” and it is excellent!! however their is a one big problem regarding the classes’ names

I have a database table called “users” so my dm model is “user” and also I have a controller with the same name “user”?

so using the “user” model within the “user” controller is imposible!!

what is the best way to solve this problem?

Many Thanks

best regards

link|improve this question

56% accept rate
how about using a namespace? – Peter Mar 3 '11 at 5:16
how about renaming user to user_model – Ross Mar 3 '11 at 9:12
feedback

3 Answers

One of the drawbacks in CodeIgniter is that you cannot name a controller, model or library the same thing. This is mainly a PHP issue as obviously you cannot name anything the same, but it can be avoided in two ways.

  1. PHP Namespaces - no can do, they are PHP 5.3 only and 90% of the community would kick off if they were implemented.
  2. Controller Prefixes - This is something I would love to add, but... well it would break stuff for everyone. We'll have to wait until 2.1 at least for a change that big.

For now all I can recommend is you name your models and libraries carefully.

Controller - Users
Library - User
Model - User_model | User_m

It's annoying, but just one of those things for now.

link|improve this answer
1  
+1 good insight Phil, thanks. – Jakub Mar 3 '11 at 14:14
thanks I would like to go for namespaces to solve this problem however it is not possible -with Datamapper- as far as I know, see this codeigniter.com/forums/viewthread/149380 thank again – ahmed Mar 3 '11 at 23:19
Nope, Namespaces involve changing how CodeIgniter and Datamapper work fundamentally, so you _m on your model. Much easier :) – Phil Sturgeon Mar 4 '11 at 10:17
feedback

so using the “user” model within the “user” controller is imposible!!

Umm no it isn't, you need to check the UserGuide more carefully ;)

You may give your model a name other than what it is orginaly defined as:

If you would like your model assigned to a different object name you can specify it via the second parameter of the loading function:

$this->load->model('Model_name', 'fubar');    
$this->fubar->function();
link|improve this answer
Thanks I am aware of the this part of the user guide however it will not work in my case because "DataMapper Models are very different than CodeIgniter Models. Unlike CI models, you should never load them explicitly (Datamapper ORM handles that automatically), and they should never be added to autoload." datamapper.wanwizard.eu/pages/models.html you dont load datamapper models like other codeigniter models, thanks for trying I really appreciate – ahmed Mar 3 '11 at 4:49
feedback

All you need to do is change your controller file name and class name to "Users". You don't need to change your model name.

controller: users
model: user
db table: users

Take a look at the Datamapper docs.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.