2007-11-17 21:59:59 +00:00
|
|
|
<?
|
|
|
|
|
2025-02-10 19:54:20 +00:00
|
|
|
include_once('helper.inc.php');
|
2024-12-13 10:38:18 -05:00
|
|
|
|
2025-01-29 03:30:48 +00:00
|
|
|
function committee_auth_has_access($access = '')
|
2007-11-17 21:59:59 +00:00
|
|
|
{
|
2025-01-29 03:30:48 +00:00
|
|
|
switch ($access) {
|
|
|
|
case 'config':
|
|
|
|
return (get_value_from_array($_SESSION, 'access_config') == 'yes') ? true : false;
|
|
|
|
case 'admin':
|
|
|
|
return (get_value_from_array($_SESSION, 'access_admin') == 'yes') ? true : false;
|
|
|
|
case 'super':
|
|
|
|
return (get_value_from_array($_SESSION, 'access_super') == 'yes') ? true : false;
|
2007-11-17 21:59:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-12-03 23:19:06 +00:00
|
|
|
function committee_status_update(&$u)
|
|
|
|
{
|
|
|
|
global $config;
|
|
|
|
|
2025-01-29 03:30:48 +00:00
|
|
|
if (user_personal_info_status($u) == 'complete')
|
2009-12-03 23:19:06 +00:00
|
|
|
$u['committee_complete'] = 'yes';
|
|
|
|
else
|
|
|
|
$u['committee_complete'] = 'no';
|
|
|
|
|
|
|
|
return ($u['committee_complete'] == 'yes') ? 'complete' : 'incomplete';
|
|
|
|
}
|