1. Megs
  2. General
  3. Wednesday, July 09 2014, 12:51 PM
Hello,
We've developed a .php code to add a sort of graph to the bottom of the profile page on my website.
I've tried a few things but I can't get it to show. I've asked the developer and he should get back to me at some point but I was wandering if you had any ideas on where the code should go?

Thanks so much!
Megs
Accepted Answer
admin Accepted Answer
Admin
Hi Megs,
Two way: Plugin or Module

Module
You can develop a modulo and set the visibility only on profile menu item. So in module you can use our API to get displayed user data:
$id=JRequest::getVar('id',null);
require_once(JPATH_SITE.'/components/com_jsn/helpers/helper.php');
$user=JsnHelper::getUser($id);


Plugin (advised)
You can write plugin based on our skeleton plugin (download at the end of this page https://www.easy-profile.com/docs/44-triggers.html)
- Download, install, enable it
- Go in /plugins/jsn/skeleton/skeleton.php
- delete these example functions triggerFieldAvatarUpdate and triggerProfileUpdate
Easy Profile have some hidden trigger to render content on profile
- renderBeforeProfile
- renderLeftSide
- renderBeforeFields
- renderAfterFields
- renderAfterProfile
There is another trigger to render tabs but is too complex. In future we will write a documentation for this.

You can write a function like this into skeleton.php:
public function renderBeforeProfile($userData,$epConfig){
$html='Your id is:'.$userData->id;
return $html;
}
  1. more than a month ago
  2. General
  3. # Permalink


There are no replies made for this post yet.
However, you are not allowed to reply to this post.
Sorry, the discussion is currently locked. You will not be able to post a reply at the moment.