Yes, I already read some posts in the official pyrocms forums about this issue. So I have accepted that is no possible due CI architecture.

===

Said that. well, I MUST extend it ("users" module) at any cost because: The customer is always right, right? or wrong, what ever. I must do it. So please advice about the best approach to accomplished. Hopefully considering pyroCMS upgrades in the future.

Really grateful for your time, Thanks.-

link|improve this question

67% accept rate
feedback

2 Answers

up vote 1 down vote accepted

It really depends on what you're trying to do. Look at using helpers. Or expand on your question.

link|improve this answer
Basically add more fields to their profiles, but add logic too, for example captcha test when login, confirmation emails when edit their profiles, etc... I want change the admin backend too: for example in the "manage users" page I need pagination and order_by support. Add/change user's photos, etc... THANKs!.- – NomikOS May 5 '11 at 19:43
Yeah, I don't think there is going to be a way to get what you want and keep forward compatibility... You'll have to hack at the module--use helpers to minimize the code in the module--and re-evaluate when time to upgrade. – stormdrain May 5 '11 at 20:17
Sad but true. Well if I make a good job maybe upload the resulting code. Have you seeing a more powerful license than the Phil's Don't be a Dick Public License? Thanks.- – NomikOS May 5 '11 at 20:55
Maybe? Definitely! And please do use DBADPL--it's great! Best of luck. – stormdrain May 6 '11 at 13:30
True, thanks. And I must add that user admin have pagination only left add order_by support ->order_by('active', 'desc') – NomikOS May 7 '11 at 21:31
feedback

Extending PyroCMS user module feature is provided by PyroCMS system. For extending User moudle, this module have provided user libraries(ion_auth and user_lib) where we can call user modules functions such as

  • activate / deactivate user
  • change_password
  • register user
  • check group
  • get users / Profiles
  • remove user
  • sending message to users

you can simply call the module like this:

        if ($id = $this->ion_auth->register($username, $password, $email, $user_data_array))
        {
            echo 'success';
        }

        else
        {
            echo 'error';
        }   
link|improve this answer
Helpful info, thanks. But I talk about extend the class. It's not possible. Only left improve it and put the enhancement available to the project, Why not? – NomikOS May 7 '11 at 21:26
feedback

Your Answer

 
or
required, but never shown

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