-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathscheduledTasks.xml
executable file
·23 lines (23 loc) · 1020 Bytes
/
scheduledTasks.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<!--
* @file TaskScheduler.xml
*
* @copyright (c) 2021+ TIB Hannover
* @copyright (c) 2021+ Gazi Yücel
* @license Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @class CitationManagerPlugin-Task-Scheduler
* @brief This file describes the scheduled task that will submit citations to external OA websites
*
-->
<!DOCTYPE scheduled_tasks SYSTEM "../../../lib/pkp/dtd/scheduledTasks.dtd">
<scheduled_tasks>
<task class="\APP\plugins\generic\citationManager\classes\ScheduledTasks\ProcessTask">
<descr>Submit citations to external Open Access Websites</descr>
<frequency dayofweek="*" month="*" day="*" hour="*" minute="*/15"/>
</task>
<task class="\APP\plugins\generic\citationManager\classes\ScheduledTasks\DepositTask">
<descr>Submit citations to external Open Access Websites</descr>
<frequency dayofweek="*" month="*" day="*" hour="*" minute="*/15"/>
</task>
</scheduled_tasks>