38 lines
1.1 KiB
PHP
38 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* @brief dcAdvancedCleaner, a plugin for Dotclear 2
|
|
*
|
|
* @package Dotclear
|
|
* @subpackage Plugin
|
|
*
|
|
* @author Jean-Christian Denis and Contributors
|
|
*
|
|
* @copyright Jean-Christian Denis
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
*/
|
|
|
|
if (!defined('DC_RC_PATH')){return;}
|
|
|
|
# This file is used with plugin activityReport
|
|
$core->activityReport->addGroup('dcadvancedcleaner',__('Plugin dcAdvancedCleaner'));
|
|
|
|
# from BEHAVIOR dcAdvancedCleanerBeforeAction
|
|
# in dcAdvancedCleaner/inc/class.dc.advanced.cleaner.php
|
|
$core->activityReport->addAction(
|
|
'dcadvancedcleaner',
|
|
'maintenance',
|
|
__('Maintenance'),
|
|
__('New action from dcAdvancedCleaner has been made with type="%s", action="%s", ns="%s".'),
|
|
'dcAdvancedCleanerBeforeAction',
|
|
array('dcAdvancedCleanerActivityReportBehaviors','maintenance')
|
|
);
|
|
|
|
class dcAdvancedCleanerActivityReportBehaviors
|
|
{
|
|
public static function maintenance($type,$action,$ns)
|
|
{
|
|
$logs = array($type,$action,$ns);
|
|
|
|
$GLOBALS['core']->activityReport->addLog('dcadvancedcleaner','maintenance',$logs);
|
|
}
|
|
} |