Updated the Google Analytics and Permissions helper functions.

This commit is contained in:
Alex Tselegidis 2021-10-28 13:59:27 +02:00
parent 8ca881110b
commit adc6d00bb5
2 changed files with 28 additions and 28 deletions

View file

@ -20,17 +20,15 @@
*/
function google_analytics_script()
{
$CI =& get_instance();
$google_analytics_code = setting('google_analytics_code');
$CI->load->model('settings_model');
if ($google_analytics_code !== '')
{
$google_analytics_code = $CI->settings_model->get_setting('google_analytics_code');
if ($google_analytics_code !== '') {
// If the google analytics code starts with UA then it is a Universal Analytics Property and the script stays
// the legacy one
if (substr($google_analytics_code, 0, 2) === "UA") {
// If the Google Analytics code starts with UA then it is a Universal Analytics Property and the script stays
// the legacy one.
if (substr($google_analytics_code, 0, 2) === 'UA')
{
echo '
<script>
(function(i,s,o,g,r,a,m){i["GoogleAnalyticsObject"]=r;i[r]=i[r]||function(){
@ -43,9 +41,10 @@ function google_analytics_script()
';
}
// If the google analytics code starts with a G then it is a Google Analytics 4-Property and the script
// If the Google Analytics code starts with a G then it is a Google Analytics 4-Property and the script
// to inject it looks different.
if (substr($google_analytics_code, 0, 2) === "G-") {
if (substr($google_analytics_code, 0, 2) === 'G-')
{
echo '
<script async src="https://www.googletagmanager.com/gtag/js?id=' . $google_analytics_code . '"></script>
<script>

View file

@ -32,7 +32,7 @@ if ( ! function_exists('can'))
$CI = &get_instance();
$CI->load->model('roles_model');
$CI->load->model('user_model');
$CI->load->model('users_model');
if (empty($user_id))
{
@ -40,8 +40,9 @@ if ( ! function_exists('can'))
}
else
{
$user = $CI->user_model->get_user($user_id);
$role_slug = $CI->roles_model->value('slug', $user['id_roles']);
$user = $CI->users_model->find($user_id);
$role_slug = $CI->roles_model->value($user['id_roles'], 'slug');
}
if (empty($role_slug))
@ -49,7 +50,7 @@ if ( ! function_exists('can'))
return FALSE;
}
$permissions = $CI->roles_model->get_privileges($role_slug);
$permissions = $CI->roles_model->get_permissions_by_slug($role_slug);
return $permissions[$resource][$action];
}