diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-08 11:27:00 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-08 11:27:00 +0000 |
commit | 939ce5e44c049b0897899c8c7a79544068d2e3b3 (patch) | |
tree | 60bd2fab99b295623466d9093acc1449ffd873fb /mod/profile/icon.php | |
parent | 161d44727c9e786f538e9715a566eee76bc7187a (diff) | |
download | elgg-939ce5e44c049b0897899c8c7a79544068d2e3b3.tar.gz elgg-939ce5e44c049b0897899c8c7a79544068d2e3b3.tar.bz2 |
Closes #301: Profile icons now use getIcon() API. Overrides now possible:
For themes to override, create a plugin hook listening to 'entity:icon:url' and object 'user'.
In the hook return a different url.
To replace default user icons in a plugin one might create a hook:
function profile_usericon_hook($hook, $entity_type, $returnvalue, $params)
{
if ((!$returnvalue) && ($params['entity'] instanceof ElggUser))
{
// return your default graphic here.
}
}
And set it to priority 900 (lower priority than the code that displays a pretty icon for users but higher than the default object display code in entities.php)
git-svn-id: https://code.elgg.org/elgg/trunk@2221 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile/icon.php')
-rw-r--r-- | mod/profile/icon.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/profile/icon.php b/mod/profile/icon.php index f13ec7322..33a5cde7f 100644 --- a/mod/profile/icon.php +++ b/mod/profile/icon.php @@ -24,7 +24,7 @@ $size = "medium";
// Try and get the icon
-
+ $filehandler = new ElggFile();
$filehandler->owner_guid = $user->getGUID();
$filehandler->setFilename("profile/" . $username . $size . ".jpg");
|