2

我在函数 create_user() 中添加到身份验证控制器:

if ($this->ion_auth->is_admin())
        {    
            $this->data['groups'] = $this->ion_auth->groups()->result_array(); // выбираем все группы
            $groups=$this->data['groups'];
        } 
...
if ($this->form_validation->run() == true && $this->ion_auth->register($username, $password, $email, $additional_data, $groups)) 
...

接下来在视图中我添加下拉字段并希望使用表“组”中的所有组填充它:

<div class="grid_8"><p>Добавить в группы:<br />

    <?php echo form_dropdown('groups',$groups) ?></p></div> 

但我弄错了下拉列表:

0
    1
    admin
    Administrator
1
    2
    moderator
    Moderator
...

请帮助我了解如何列出所有组:

Administrator
Moderator
User
...
4

1 回答 1

0

我在ion_auth_model.php中做了这个

/**
 * group list
 *
 * @return array
 * @author Susilo N
 **/
public function grouplist()
{
    $query = $this->db->get('groups');

    foreach ($query->result() as $row)
            {
                  $listArray[$row->id] = $row->name;                
            }               

    return $listArray;
}

然后我在控制器上添加这个

$this->data["listGroups"] = $this->ion_auth->grouplist();

并且在视图中

<?= form_dropdown('groups', $listGroups, '1') ?>
于 2012-06-22T06:48:34.363 回答