mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-24 02:12:17 +00:00
FHC ACL
This commit is contained in:
@@ -0,0 +1,57 @@
|
||||
<?php
|
||||
/**
|
||||
* FH-Complete
|
||||
*
|
||||
* @package FHC-Helper
|
||||
* @author FHC-Team
|
||||
* @copyright Copyright (c) 2016 fhcomplete.org
|
||||
* @license GPLv3
|
||||
* @link https://fhcomplete.org
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
require_once('include/basis_db.class.php');
|
||||
require_once('include/organisationseinheit.class.php');
|
||||
require_once('include/studiengang.class.php');
|
||||
require_once('include/fachbereich.class.php');
|
||||
require_once('include/functions.inc.php');
|
||||
require_once('include/wawi_kostenstelle.class.php');
|
||||
require_once('include/benutzerberechtigung.class.php');
|
||||
|
||||
/**
|
||||
* FHC-Auth Helpers
|
||||
*
|
||||
* @package FH-Complete
|
||||
* @subpackage Libraries
|
||||
* @category Library
|
||||
* @author FHC-Team
|
||||
* @link http://fhcomplete.org/user_guide/helpers/fhcauth_helper.html
|
||||
*/
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
class FHC_DB_ACL
|
||||
{
|
||||
public $bb;
|
||||
protected $uid;
|
||||
|
||||
/**
|
||||
* Auth Username, Password over FH-Complete
|
||||
*
|
||||
* @param string $username
|
||||
* @param string $password
|
||||
* @return bool
|
||||
*/
|
||||
function __construct($uid)
|
||||
{
|
||||
$this->bb = new benutzerberechtigung();
|
||||
$this->uid = $uid;
|
||||
}
|
||||
|
||||
function isBerechtigt($berechtigung_kurzbz, $art=null, $oe_kurzbz=null, $kostenstelle_id=null)
|
||||
{
|
||||
$this->bb->getBerechtigungen($this->uid);
|
||||
return $this->bb->isBerechtigt($berechtigung_kurzbz, $oe_kurzbz=null, $art=null, $kostenstelle_id=null);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user