science-ation/committee.inc.php

31 lines
689 B
PHP
Raw Normal View History

<?
include_once("helper.inc.php");
function committee_auth_has_access($access="")
{
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;
}
return false;
}
function committee_status_update(&$u)
{
global $config;
if( user_personal_info_status($u) == 'complete')
$u['committee_complete'] = 'yes';
else
$u['committee_complete'] = 'no';
return ($u['committee_complete'] == 'yes') ? 'complete' : 'incomplete';
}
?>