activityReport/_init.php

23 lines
510 B
PHP
Raw Normal View History

2022-11-30 21:35:28 +00:00
<?php
/**
2022-11-30 21:41:32 +00:00
* @brief activityReport, a plugin for Dotclear 2
2022-11-30 21:35:28 +00:00
*
* @package Dotclear
* @subpackage Plugin
*
2022-11-30 21:41:32 +00:00
* @author Jean-Christian Denis and contributors
2022-11-30 21:35:28 +00:00
*
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
if (!defined('DC_RC_PATH')) {
return null;
}
class initActivityReport
{
public const ACTIVITY_TABLE_NAME = 'activity';
2022-11-30 21:41:32 +00:00
public const SETTING_TABLE_NAME = 'activity_setting';
2022-12-15 23:32:15 +00:00
public const CACHE_DIR_NAME = 'activityreport';
2022-11-30 21:35:28 +00:00
}