2021-09-02 22:04:20 +00:00
|
|
|
<?php
|
2021-09-02 22:18:08 +00:00
|
|
|
/**
|
|
|
|
* @brief activityReport, a plugin for Dotclear 2
|
2022-11-18 20:24:30 +00:00
|
|
|
*
|
2021-09-02 22:18:08 +00:00
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
2022-11-18 20:24:30 +00:00
|
|
|
*
|
2021-09-02 22:18:08 +00:00
|
|
|
* @author Jean-Christian Denis and contributors
|
2022-11-18 20:24:30 +00:00
|
|
|
*
|
2021-09-02 22:18:08 +00:00
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
2023-04-20 12:22:43 +00:00
|
|
|
declare(strict_types=1);
|
2021-09-02 22:18:08 +00:00
|
|
|
|
2023-04-20 12:22:43 +00:00
|
|
|
namespace Dotclear\Plugin\activityReport;
|
2021-09-02 22:18:08 +00:00
|
|
|
|
2023-04-20 12:22:43 +00:00
|
|
|
use dcCore;
|
2023-08-17 14:25:19 +00:00
|
|
|
use Dotclear\Core\Process;
|
2021-09-02 22:04:20 +00:00
|
|
|
|
2023-04-20 12:22:43 +00:00
|
|
|
/**
|
|
|
|
* Front end process.
|
|
|
|
*/
|
2023-08-17 14:25:19 +00:00
|
|
|
class Frontend extends Process
|
2021-09-02 22:04:20 +00:00
|
|
|
{
|
2023-04-20 12:22:43 +00:00
|
|
|
public static function init(): bool
|
2021-09-02 22:18:08 +00:00
|
|
|
{
|
2023-08-17 14:25:19 +00:00
|
|
|
return self::status(My::checkContext(My::FRONTEND));
|
2021-09-02 22:18:08 +00:00
|
|
|
}
|
|
|
|
|
2023-04-20 12:22:43 +00:00
|
|
|
public static function process(): bool
|
2021-09-02 22:18:08 +00:00
|
|
|
{
|
2023-08-17 14:25:19 +00:00
|
|
|
if (!self::status()) {
|
2023-04-20 12:22:43 +00:00
|
|
|
return false;
|
2021-09-02 22:18:08 +00:00
|
|
|
}
|
|
|
|
|
2023-05-08 08:18:43 +00:00
|
|
|
dcCore::app()->tpl->setPath(dcCore::app()->tpl->getPath(), implode(DIRECTORY_SEPARATOR, [My::path(), 'default-templates', 'tpl']));
|
2021-09-02 22:04:20 +00:00
|
|
|
|
2023-04-20 12:22:43 +00:00
|
|
|
dcCore::app()->tpl->addBlock('activityReports', [Template::class, 'activityReports']);
|
|
|
|
dcCore::app()->tpl->addValue('activityReportFeedID', [Template::class, 'activityReportFeedID']);
|
|
|
|
dcCore::app()->tpl->addValue('activityReportTitle', [Template::class, 'activityReportTitle']);
|
|
|
|
dcCore::app()->tpl->addValue('activityReportDate', [Template::class, 'activityReportDate']);
|
|
|
|
dcCore::app()->tpl->addValue('activityReportContent', [Template::class, 'activityReportContent']);
|
2022-11-18 20:24:30 +00:00
|
|
|
|
2023-04-20 12:22:43 +00:00
|
|
|
return true;
|
2021-09-02 22:18:08 +00:00
|
|
|
}
|
2022-11-18 20:24:30 +00:00
|
|
|
}
|