Copy code The code is as follows:
function fetchRoles($user)
{
if ($this->existsLink ($this->rolesField)) {
$link =& $this->getLink($this->rolesField);
$rolenameField = $link->assocTDG->rolesNameField;
} else {
$rolenameField = 'rolename';
}
if (!isset($user[$this->rolesField]) ||
!is_array($ user[$this->rolesField])) {
return array();
}
$roles = array();
foreach ($user[$this->rolesField] as $role) {
if (!is_array($role)) {
return array($user[$this->rolesField][$rolenameField]);
}
$roles[] = $role[$rolenameField];
}
return $roles;
}
Defining rolesNameField in the page is also invalid, so add an extra line after the following paragraph
Copy code The code is as follows:
$rolenameField = $link->assocTDG->rolesNameField;
Copy code The code is as follows:
$rolenameField = $rolenameField ? $rolenameField : 'rolename';
http://www.bkjia.com/PHPjc/323252.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/323252.htmlTechArticleCopy the code as follows: function fetchRoles($user) { if ($this-existsLink($this-rolesField) ) { $link = $this-getLink($this-rolesField); $rolenameField = $link-assocTDG-rolesName...