static function get_user_type_id()
	{
		return SecurityOperationsFacade::get_user_type_id();
	}
Beispiel #2
0
	function check_user_passedOld()
	{
		//check to see if posting from login page before authenticating and denying access to 'process_request' if not logged in
	//	if ()
	//	{
	//		$this->process_request(); //SecurityOperationsFacade::process_login
			//unset $_REQUEST['target_component'] and $_REQUEST['target_function'] so that not processed again
			//unset($_REQUEST['target_component']);
			//unset($_REQUEST['target_function']);
	//		return empty($this->xslt_file); //if xslt_file was set then user hasn't validated
	//	}
	//	else
	//	{
			$passed = SecurityOperationsFacade::test_check_user($this->xml_string, $this->xslt_file);
			//if (!$passed)
			//{
			//	OutputOperationsFacade::output_template($xml_string, $xslt_file);
			//}
			return $passed;
	//	}
	//	echo "checking user (".$user.")...".SecurityOperationsFacade::test_check_user($user);
	}
	function get_user_auth_level()
	{
		return SecurityOperationsFacade::get_user_auth_level();
	}