Hi,
no problem, unfortunately we speak English a more technical and therefore not express myself well. "so we are crazy because we have import feature" was a joke. sorry.
Is it possible to alert the admin when a user has updated their profile?
yes, but it does not natively.
You can create a simple plugin based on our "skeleton" plugin, follow these steps:
- Download, install and enable our "skeleton" plugin, you will find at the end on this page
http://docs.easy-profile.com/index.php/article/triggers
- open file /plugins/jsn/skeleton/skeleton.php
- Delete example functions: triggerFieldAvatarUpdate, triggerProfileUpdate
- write your function like this:
public function triggerProfileUpdate($user, &$data, $changed, $isNew)
{
if(!$isNew)
{
$body=$user->name." updated user profile. \n\n";
foreach($changed as $fieldalias){
$body.=$fieldalias .": ". $data[$fieldalias] ."\n";
}
$result=JFactory::getMailer()->sendMail(
$user->email, // Sender Mail
$user->name, // Sender Name
'PUT HERE YOUR EMAIL ADDRESS', // Receiver Mail
'Profile Updated', // Subject Mail
$body // Body Mail
);
}
}
this plugin will send you an email with list on field changed
Skeleton plugin is very useful, you can also change values: $data['field1']=$data['field2']+$data['field3'] (sum example)