|
| __construct (&$subject, $config) |
|
| onContentAfterSave ($context, $article, $isNew) |
|
| onContentAfterDelete ($context, $article) |
|
| onContentChangeState ($context, $pks, $value) |
|
| onApplicationAfterSave ($config) |
|
| onExtensionAfterInstall ($installer, $eid) |
|
| onExtensionAfterUninstall ($installer, $eid, $result) |
|
| onExtensionAfterUpdate ($installer, $eid) |
|
| onExtensionAfterSave ($context, $table, $isNew) |
|
| onExtensionAfterDelete ($context, $table) |
|
| onUserAfterSave ($user, $isnew, $success, $msg) |
|
| onUserAfterDelete ($user, $success, $msg) |
|
| onUserAfterSaveGroup ($context, $table, $isNew) |
|
| onUserAfterDeleteGroup ($group, $success, $msg) |
|
| onUserAfterLogin ($options) |
|
| onUserLoginFailure ($response) |
|
| onUserLogout ($user, $options=array()) |
|
| onUserAfterRemind ($user) |
|
| onAfterCheckin ($table) |
|
| onAfterLogPurge ($group='') |
|
| onAfterLogExport ($group='') |
|
| onAfterPurge ($group='all') |
|
| onJoomlaAfterUpdate ($oldVersion=null) |
|
Joomla! Users Actions Logging Plugin.
- Depuis
- 3.9.0
onContentAfterDelete |
( |
|
$context, |
|
|
|
$article |
|
) |
| |
After delete content logging method This method adds a record to #__action_logs contains (message, date, context, user) Method is called right after the content is deleted
- Paramètres
-
string | $context | The context of the content passed to the plugin |
object | $article | A JTableContent object |
- Renvoie
- void
- Depuis
- 3.9.0
Références $article, $context, $id, $message, $option, $params, ActionlogsHelper\getLogContentTypeParams(), et null.
onContentAfterSave |
( |
|
$context, |
|
|
|
$article, |
|
|
|
$isNew |
|
) |
| |
After save content logging method This method adds a record to #__action_logs contains (message, date, context, user) Method is called right after the content is saved
- Paramètres
-
string | $context | The context of the content passed to the plugin |
object | $article | A JTableContent object |
boolean | $isNew | If the content is just about to be created |
- Renvoie
- void
- Depuis
- 3.9.0
Références $article, $context, $id, $message, $option, $params, ActionlogsHelper\getContentTypeLink(), ActionlogsHelper\getLogContentTypeParams(), et null.
onContentChangeState |
( |
|
$context, |
|
|
|
$pks, |
|
|
|
$value |
|
) |
| |
On content change status logging method This method adds a record to #__action_logs contains (message, date, context, user) Method is called when the status of the article is changed
- Paramètres
-
string | $context | The context of the content passed to the plugin |
array | $pks | An array of primary key ids of the content that has changed state. |
integer | $value | The value of the state that the content has been changed to. |
- Renvoie
- void
- Depuis
- 3.9.0
Références $action, $context, $db, $items, $message, $messages, $option, $params, $query, $value, ActionlogsHelper\getContentTypeLink(), ActionlogsHelper\getLogContentTypeParams(), et null.
onExtensionAfterInstall |
( |
|
$installer, |
|
|
|
$eid |
|
) |
| |
On installing extensions logging method This method adds a record to #__action_logs contains (message, date, context, user) Method is called when an extension is installed
- Paramètres
-
JInstaller | $installer | Installer object |
integer | $eid | Extension Identifier |
- Renvoie
- void
- Depuis
- 3.9.0
Références $context, $manifest, $message, et null.
onExtensionAfterUninstall |
( |
|
$installer, |
|
|
|
$eid, |
|
|
|
$result |
|
) |
| |
On uninstalling extensions logging method This method adds a record to #__action_logs contains (message, date, context, user) Method is called when an extension is uninstalled
- Paramètres
-
JInstaller | $installer | Installer instance |
integer | $eid | Extension id |
integer | $result | Installation result |
- Renvoie
- void
- Depuis
- 3.9.0
Références $context, $manifest, $message, et null.
onExtensionAfterUpdate |
( |
|
$installer, |
|
|
|
$eid |
|
) |
| |
On updating extensions logging method This method adds a record to #__action_logs contains (message, date, context, user) Method is called when an extension is updated
- Paramètres
-
JInstaller | $installer | Installer instance |
integer | $eid | Extension id |
- Renvoie
- void
- Depuis
- 3.9.0
Références $context, $manifest, $message, et null.
onUserAfterSave |
( |
|
$user, |
|
|
|
$isnew, |
|
|
|
$success, |
|
|
|
$msg |
|
) |
| |
On saving user data logging method
Method is called after user data is stored in the database. This method logs who created/edited any user's data
- Paramètres
-
array | $user | Holds the new user data. |
boolean | $isnew | True if a new user is stored. |
boolean | $success | True if user was successfully stored in the database. |
string | $msg | Message. |
- Renvoie
- void
- Depuis
- 3.9.0
Références $action, $context, $message, $task, $user, $userId, elseif, et Factory\getUser().