mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-11-28 10:30:42 +00:00
- adding methode getImage()
This commit is contained in:
parent
457b805f2c
commit
3c91962c69
|
|
@ -355,7 +355,7 @@ class LetoDMS_User {
|
||||||
$queryStr = "DELETE FROM tblACLs WHERE userID = " . $this->_id;
|
$queryStr = "DELETE FROM tblACLs WHERE userID = " . $this->_id;
|
||||||
if (!$db->getResult($queryStr)) return false;
|
if (!$db->getResult($queryStr)) return false;
|
||||||
|
|
||||||
//Eintrag aus tblUsers löschen
|
//Eintrag aus tblUserImagess löschen
|
||||||
$queryStr = "DELETE FROM tblUserImages WHERE userID = " . $this->_id;
|
$queryStr = "DELETE FROM tblUserImages WHERE userID = " . $this->_id;
|
||||||
if (!$db->getResult($queryStr)) return false;
|
if (!$db->getResult($queryStr)) return false;
|
||||||
|
|
||||||
|
|
@ -478,6 +478,23 @@ class LetoDMS_User {
|
||||||
return $this->_hasImage;
|
return $this->_hasImage;
|
||||||
} /* }}} */
|
} /* }}} */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the image from the users profile
|
||||||
|
*
|
||||||
|
* @return array image data
|
||||||
|
*/
|
||||||
|
function getImage() { /* {{{ */
|
||||||
|
$db = $this->_dms->getDB();
|
||||||
|
|
||||||
|
$queryStr = "SELECT * FROM tblUserImages WHERE userID = " . $this->_id;
|
||||||
|
$resArr = $db->getResultArray($queryStr);
|
||||||
|
if (is_bool($resArr) && $resArr == false)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
$resArr = $resArr[0];
|
||||||
|
return $resArr;
|
||||||
|
} /* }}} */
|
||||||
|
|
||||||
function setImage($tmpfile, $mimeType) { /* {{{ */
|
function setImage($tmpfile, $mimeType) { /* {{{ */
|
||||||
$db = $this->_dms->getDB();
|
$db = $this->_dms->getDB();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user