Welcome Guest, Not a member yet? Register   Sign In
CodeExtinguisher Release Candidate 11
#86

[eluser]Thoer[/eluser]
[quote author="andjules" date="1207799596"]are there configuration options that distinguish between add & edit (insert & update)? If not, there might be some reason to put that in the long-term roadmap...

Example: as an admin, I might want to create a user, which might involve setting their password (which I would hopefully grant them the permission to change). At a later time, as an admin, I may want to change their access level... but currently, if 'password' is part of the 'add' form, then it's also part of the 'edit' form... so I have to set a new password for them whenever I edit any other property (bad).

This can be worked around with custom forms/controllers, of course, but something to think about in the long term.[/quote]

Here's my new 'controllers/userregistration.php', let me know if you like it:
Code:
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
include_once("codexcontroller.php");
/**
* User Registration controller
*/
class UserRegistration extends codexController
{    
    var $strong_pass = TRUE;
    
    function UserRegistration()
    {
        codexController::codexController();
        $this->load->helper('inflector');
        if ($this->config->item('access_levels')===FALSE)
            $this->config->load('access_levels', TRUE);
        $access_levels = array_flip($this->config->item('access_levels'));
        
        $rules['username'] = "trim|required";
        $rules['password'] = "trim|callback__add_required|sha1";
        $rules['access_level'] = "trim|required";
        $config = array(
                    'db_table' => 'users',
                    'form_setup' => array(
                        'username' => array('class'=>'TextBox'),
                        'password' => array('class'=>'Password'),
                        'access_level' => array(
                            'class'=>'DropDown',
                            'params' => array(
                                'list' => $access_levels,
                                ),
                            ),
                        ),
                    'rules'=>$rules,
                    'display_fields'=>array('username', 'access_level'),
                    'page_header'=>'User Management',
                    'controller_name' => 'userregistration',
                    );
        $this->setConfig($config);

    }

    function _add_required($str)
    {
        if ($str!=='' && $this->strong_pass && !preg_match('|^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{6,100}$|', $str))
        {
            $this->codexvalidation->set_message('_add_required', 'Password requires one lower case letter, one upper case letter, one digit, minimum 6 characters in length');
            return FALSE;
        }
        if (is_null($this->codexadmin->active_id))
        {
            $this->codexvalidation->set_message('_add_required', 'Password is required when adding a new user.');
            return ($str!=='');
        }
        return TRUE;
    }
}
?>


Messages In This Thread
CodeExtinguisher Release Candidate 11 - by El Forum - 03-31-2008, 04:38 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-31-2008, 07:10 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-31-2008, 07:15 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-31-2008, 08:47 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-31-2008, 08:47 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-31-2008, 09:22 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-31-2008, 10:06 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 03:37 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 07:18 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 04:59 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 05:34 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 06:24 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 07:52 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 08:43 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 08:50 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 08:59 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 08:59 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-01-2008, 09:14 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:00 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:30 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:35 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:51 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 10:33 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 04:28 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 05:21 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 08:31 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 08:34 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 08:36 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 08:46 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:06 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:07 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:09 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:12 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:13 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:16 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:20 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:22 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:26 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:28 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:30 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:32 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:35 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:37 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 09:38 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-02-2008, 10:09 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 12:00 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 01:01 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 01:04 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 01:22 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 01:27 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 01:41 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 08:21 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 08:25 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 08:39 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 09:01 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 09:51 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 09:56 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 10:07 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 10:35 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 10:44 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-03-2008, 11:52 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-04-2008, 12:04 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-04-2008, 03:17 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-04-2008, 05:43 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-05-2008, 02:44 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-06-2008, 05:38 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-06-2008, 06:29 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-07-2008, 07:57 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-07-2008, 08:03 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-07-2008, 10:25 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-07-2008, 07:28 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-08-2008, 02:02 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-08-2008, 04:37 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 02:01 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 07:01 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 11:12 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 11:16 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 04:53 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 08:29 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 08:32 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 08:43 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 11:27 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-09-2008, 11:28 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 02:44 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 02:50 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 02:53 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 04:03 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 11:49 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 04:08 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 04:32 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 05:50 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 05:58 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 06:24 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-10-2008, 09:40 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 12:00 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 12:02 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 06:41 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 06:46 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 07:12 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 07:15 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 07:17 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 07:18 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 07:18 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 07:36 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 07:38 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:14 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:17 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:20 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:23 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:42 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:42 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:42 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:56 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 08:56 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 02:59 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 03:21 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 03:28 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 03:45 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 03:56 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 03:57 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 05:23 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 05:38 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 05:45 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-11-2008, 07:44 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-17-2008, 07:24 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-17-2008, 07:26 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-17-2008, 07:42 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-17-2008, 07:44 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-17-2008, 07:57 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-18-2008, 01:51 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 03:04 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 03:07 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 03:08 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 03:27 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 03:30 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 03:36 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 04:40 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 05:26 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-20-2008, 05:39 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 12:03 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 12:11 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 07:02 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 09:09 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 10:02 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 11:11 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 11:13 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 12:01 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 03:58 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 05:42 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 07:04 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-21-2008, 08:37 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-22-2008, 03:48 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-22-2008, 06:26 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-22-2008, 06:32 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-22-2008, 06:34 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-23-2008, 04:02 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-23-2008, 09:06 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-23-2008, 11:21 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-25-2008, 03:06 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-27-2008, 06:45 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-27-2008, 09:24 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-27-2008, 09:46 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-28-2008, 08:57 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-28-2008, 08:59 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-28-2008, 09:15 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-28-2008, 09:16 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-28-2008, 09:17 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-28-2008, 07:42 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-28-2008, 10:37 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-28-2008, 11:27 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-29-2008, 09:31 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 06:41 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 08:20 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 08:22 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 09:26 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 09:57 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 12:21 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 12:23 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 12:56 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 04-30-2008, 12:58 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 05:25 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 09:11 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 10:52 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 11:14 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 11:23 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 11:27 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 11:35 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 11:36 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 11:38 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 05-01-2008, 11:54 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 07-21-2008, 12:00 AM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-30-2009, 03:33 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-30-2009, 09:04 PM
CodeExtinguisher Release Candidate 11 - by El Forum - 03-30-2009, 09:22 PM



Theme © iAndrew 2016 - Forum software by © MyBB