-
Notifications
You must be signed in to change notification settings - Fork 4
/
crontab.xml
35 lines (35 loc) · 1.23 KB
/
crontab.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?xml version="1.0"?>
<!--
/**
* Bdcrops
*
* NOTICE OF LICENSE
*
* This source file is subject to the Bdcrops.com license that is
* available through the world-wide-web at this URL:
* https://www.bdcrops.com/LICENSE.txt
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade this extension to newer
* version in the future.
*
* @category Bdcrops
* @package Bdcrops_GiftCard
* @copyright Copyright (c) Bdcrops (https://www.bdcrops.com/)
* @license https://www.bdcrops.com/LICENSE.txt
*/
-->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Cron:etc/crontab.xsd">
<group id="default">
<job name="gift_card_process" instance="Bdcrops\GiftCard\Cron\Process" method="execute">
<schedule>0 * * * *</schedule>
</job>
<job name="gift_card_notification" instance="Bdcrops\GiftCard\Cron\Notification" method="execute">
<schedule>0 0 * * *</schedule>
</job>
<job name="gift_card_remove_tmp_images" instance="Bdcrops\GiftCard\Cron\RemoveTmpImages" method="execute">
<schedule>0 0 * * 0</schedule>
</job>
</group>
</config>