38 lines
857 B
PHP
38 lines
857 B
PHP
<?php
|
|
/**
|
|
* @brief activityReport, 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;}
|
|
|
|
global $__autoload, $core;
|
|
|
|
$__autoload['activityReport'] =
|
|
dirname(__FILE__).'/inc/class.activity.report.php';
|
|
|
|
try
|
|
{
|
|
$core->activityReport = new activityReport($core);
|
|
|
|
$core->url->register(
|
|
'activityReport',
|
|
'reports',
|
|
'^reports/((atom|rss2)/(.+))$',
|
|
array('activityReportPublicUrl','feed')
|
|
);
|
|
|
|
define('ACTIVITY_REPORT',true);
|
|
|
|
require_once dirname(__FILE__).'/inc/class.activity.report.behaviors.php';
|
|
}
|
|
catch (Exception $e) {
|
|
//throw new Exception('Failed to launch activityReport');
|
|
} |