Scopes reported on token creation screen
This commit is contained in:
parent
e936231ccb
commit
dee9237381
@ -85,7 +85,11 @@ if ($action == 'update') {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (GETPOSTISSET($constvalue.'_SCOPE')) {
|
if (GETPOSTISSET($constvalue.'_SCOPE')) {
|
||||||
$scopestring = implode(',', GETPOST($constvalue.'_SCOPE'));
|
if (is_array(GETPOST($constvalue.'_SCOPE'))) {
|
||||||
|
$scopestring = implode(',', GETPOST($constvalue.'_SCOPE'));
|
||||||
|
} else {
|
||||||
|
$scopestring = GETPOST($constvalue.'_SCOPE');
|
||||||
|
}
|
||||||
if (!dolibarr_set_const($db, $constvalue.'_SCOPE', $scopestring, 'chaine', 0, '', $conf->entity)) {
|
if (!dolibarr_set_const($db, $constvalue.'_SCOPE', $scopestring, 'chaine', 0, '', $conf->entity)) {
|
||||||
$error++;
|
$error++;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -377,6 +377,13 @@ if ($mode == 'setup' && $user->admin) {
|
|||||||
print '</tr>';
|
print '</tr>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Scopes
|
||||||
|
print '<tr class="oddeven">';
|
||||||
|
print '<td>'.$langs->trans("Scopes").'</td>';
|
||||||
|
print '<td colspan="2">';
|
||||||
|
$currentscopes = getDolGlobalString($key[4]);
|
||||||
|
print $currentscopes;
|
||||||
|
print '</td></tr>';
|
||||||
print '</table>';
|
print '</table>';
|
||||||
print '</div>';
|
print '</div>';
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user