activityReport/_prepend.php

38 lines
857 B
PHP
Raw Normal View History

<?php
2021-09-02 22:18:08 +00:00
/**
* @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'] =
2021-09-02 22:18:08 +00:00
dirname(__FILE__).'/inc/class.activity.report.php';
try
{
2021-09-02 22:18:08 +00:00
$core->activityReport = new activityReport($core);
2021-09-02 22:18:08 +00:00
$core->url->register(
'activityReport',
'reports',
'^reports/((atom|rss2)/(.+))$',
array('activityReportPublicUrl','feed')
);
2021-09-02 22:18:08 +00:00
define('ACTIVITY_REPORT',true);
2021-09-02 22:18:08 +00:00
require_once dirname(__FILE__).'/inc/class.activity.report.behaviors.php';
}
catch (Exception $e) {
2021-09-02 22:18:08 +00:00
//throw new Exception('Failed to launch activityReport');
}