GetMemberInfo function help

Discussions related to customizing hooks. Hooks are documented at http://bigprof.com/appgini/help/advanced-topics/hooks/
Post Reply
bambinou
Veteran Member
Posts: 163
Joined: 2013-02-01 15:09

GetMemberInfo function help

Post by bambinou » 2013-02-10 14:26

Hello,

I have noticed that the function GetMemberInfo in the home.php page could perhaps help me pulling a picture that has been uploaded in one of the table.
Any idea how to get this:
<?php
}

// custom home links, as defined in "hooks/links-home.php"
if(is_array($homeLinks)){
$memberInfo = getMemberInfo();
foreach($homeLinks as $link){
if(!isset($link['url']) || !isset($link['title'])) continue;
if($memberInfo['admin'] || @in_array($memberInfo['group'], $link['groups']) || @in_array('*', $link['groups'])){
?>


to pull a picture a user as uploaded please?


Thank you,

Ben

Post Reply