X-Git-Url: http://git.datanom.net/qtadmin.git/blobdiff_plain/6ead258e1dd52b40f292e8bc8f3d7fe901cfafdc..24c77b7b310aefcb3c1b1ce4d02099e6f0cbfe84:/lib/utils.inc.php diff --git a/lib/utils.inc.php b/lib/utils.inc.php index c4a99b5..5832d29 100644 --- a/lib/utils.inc.php +++ b/lib/utils.inc.php @@ -19,11 +19,13 @@ class Utils { + __TITLE__ -'; - private $footer = ''; +
'; + private $footer = '
'; private $heading = '

Session timeout:

__TITLE__

'; @@ -312,6 +314,20 @@ class Utils { return $user; } + public function authorized($recipient) { + $authorized = false; + + $this->log("authorized '$recipient'", 3); + + if ($this->isAdmin() || $this->getUser() == $recipient) { + $authorized = true; + } + $msg = ($authorized) ? 'authorize' : 'not authorize'; + $this->log("$msg '".$this->getUser()."' rcpt '$recipient'", 3); + + return $authorized; + } + public function getHeader() { $this->log("getHeader", 4);