Added the new 'tperfil' columns to the function "get_acl_column"

This commit is contained in:
Alejandro Gallardo Escobar 2015-04-06 16:54:24 +02:00
parent 533167e46e
commit e61ecd3f73
1 changed files with 18 additions and 0 deletions

View File

@ -1874,6 +1874,24 @@ function get_acl_column($access) {
case "EM": case "EM":
return "event_management"; return "event_management";
break; break;
case "MR":
return "map_view";
break;
case "MW":
return "map_edit";
break;
case "MM":
return "map_management";
break;
case "VR":
return "vconsole_view";
break;
case "VW":
return "vconsole_edit";
break;
case "VM":
return "vconsole_management";
break;
default: default:
return ""; return "";
break; break;