better autoload call
This commit is contained in:
parent
8b50811b0b
commit
610e8a2124
@ -15,7 +15,10 @@ if (!defined('DC_RC_PATH')) {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
$__autoload['activityReport'] = dirname(__FILE__) . '/inc/class.activity.report.php';
|
$d = dirname(__FILE__) . '/inc/';
|
||||||
|
$__autoload['activityReport'] = $d . 'class.activity.report.php';
|
||||||
|
$__autoload['activityReportBehaviors'] = $d . 'class.activity.report.behaviors.php';
|
||||||
|
$__autoload['activityReportLib'] = $d . 'lib.activity.report.index.php';
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$core->activityReport = new activityReport($core);
|
$core->activityReport = new activityReport($core);
|
||||||
@ -29,7 +32,7 @@ try {
|
|||||||
|
|
||||||
define('ACTIVITY_REPORT', true);
|
define('ACTIVITY_REPORT', true);
|
||||||
|
|
||||||
require_once dirname(__FILE__) . '/inc/class.activity.report.behaviors.php';
|
activityReportBehaviors::registerBehaviors($core);
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
//throw new Exception('Failed to launch activityReport');
|
//throw new Exception('Failed to launch activityReport');
|
||||||
}
|
}
|
@ -19,6 +19,11 @@ if (!defined('ACTIVITY_REPORT')) {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class activityReportBehaviors
|
||||||
|
{
|
||||||
|
|
||||||
|
public static function registerBehaviors($core)
|
||||||
|
{
|
||||||
// ActivityReport plugin
|
// ActivityReport plugin
|
||||||
$core->activityReport->addGroup('activityReport', __('ActivityReport messages'));
|
$core->activityReport->addGroup('activityReport', __('ActivityReport messages'));
|
||||||
|
|
||||||
@ -212,9 +217,8 @@ $core->activityReport->addAction(
|
|||||||
'adminBeforeUserDelete',
|
'adminBeforeUserDelete',
|
||||||
['activityReportBehaviors', 'userDelete']
|
['activityReportBehaviors', 'userDelete']
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
|
||||||
class activityReportBehaviors
|
|
||||||
{
|
|
||||||
public static function messageActivityReport($message)
|
public static function messageActivityReport($message)
|
||||||
{
|
{
|
||||||
global $core;
|
global $core;
|
||||||
|
Loading…
Reference in New Issue
Block a user