PMCORE-2352 User extended attributes PMCORE-2247

This commit is contained in:
Roly Rudy Gutierrez Pinto
2020-12-16 19:47:59 -04:00
parent 9311905f74
commit d57a3ac932
65 changed files with 39216 additions and 153 deletions

View File

@@ -8,6 +8,7 @@ use Criteria;
use DateTime;
use Exception;
use G;
use Illuminate\Support\Facades\DB;
use ProcessMaker\Util\Common;
use ResultSet;
use Roles as ModelRoles;
@@ -664,5 +665,30 @@ class Role
throw $e;
}
}
/**
* Get all active roles.
* @return array
*/
public static function getAllRoles()
{
$lang = defined('SYS_LANG') ? SYS_LANG : 'en';
$roles = DB::table('CONTENT')
->join('RBAC_ROLES', 'CONTENT.CON_ID', '=', 'RBAC_ROLES.ROL_UID')
->where('CONTENT.CON_CATEGORY', '=', 'ROL_NAME')
->where('CONTENT.CON_LANG', '=', $lang)
->where('RBAC_ROLES.ROL_CODE', '<>', 'RBAC_ADMIN')
->where('RBAC_ROLES.ROL_CODE', '<>', 'PROCESSMAKER_GUEST')
->where('RBAC_ROLES.ROL_STATUS', '=', '1')
->select([
'RBAC_ROLES.ROL_UID',
'RBAC_ROLES.ROL_CODE',
'CONTENT.CON_VALUE AS ROL_NAME',
'CONTENT.CON_LANG AS LANG'
])
->get()
->toArray();
return $roles;
}
}

View File

@@ -0,0 +1,14 @@
<?php
namespace ProcessMaker\Model;
use Illuminate\Database\Eloquent\Model;
class UserExtendedAttributes extends Model
{
protected $table = "USER_EXTENDED_ATTRIBUTES";
protected $primaryKey = "UEA_ID";
public $incrementing = true;
public $timestamps = false;
}