. */ /** * Trida implementuje podpurne funkce spolecne pro vsechny implementace tridy Sklad_Auth * * @package Sklad_Auth_common * @author Tomas Mudrunka */ class Sklad_Auth_common { function get_authorized_user_id($die=true) { if(isset($this->authorized_user_id)) return $this->authorized_user_id; if($die) die('No user authorized!!!'); return false; } } require_once(BACKEND_AUTH.'.php');