ZenphotoCMS Forum
get email address from current album owner - Printable Version

+- ZenphotoCMS Forum (https://forum.zenphoto.org)
+-- Forum: Support (https://forum.zenphoto.org/forum-1.html)
+--- Forum: General support (https://forum.zenphoto.org/forum-4.html)
+--- Thread: get email address from current album owner (/thread-8941.html)



get email address from current album owner - tunafish - 2011-08-05

Are there some functions to get the owners email address from the currently active album?

I need to get the email address from an external page so:
`

require_once("../../zp-core/template-functions.php");

zp_load_album($_POST['album']);

function returnOwner() {

global $_zp_current_album;

$owner = $_zp_current_album->getOwner();

return $owner;

}

`

Now how can I get the email address?
I found something with $userobj->getEmail() but having difficulties creating the userobj.




get email address from current album owner - acrylian - 2011-08-05

http://www.zenphoto.org/documentation/classes/Zenphoto_Administrator.html

Btw, you might want to sanitize the POST value for your own security....




get email address from current album owner - sbillard - 2011-08-05

$userobj= $_zp_authority->getAnAdmin(array('user=' => $owner, 'valid=' => 1));

Note that there is no guarantee that such owner actually exists, so you may bet back NULL.




get email address from current album owner - tunafish - 2011-08-05

That's great. Thanks a lot acrylian :-)
ZP rocks!