Last active
August 17, 2017 14:38
-
-
Save ecomcoders/a75556a297d54ab70837a5a698d9bb10 to your computer and use it in GitHub Desktop.
Magento 2 PHPStorm File Templates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Store:etc/config.xsd"> | |
<default> | |
</default> | |
</config> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Cron:etc/cron_groups.xsd"> | |
<group id="${GROUP_ID}"> | |
<schedule_generate_every>15</schedule_generate_every> | |
<schedule_ahead_for>20</schedule_ahead_for> | |
<schedule_lifetime>15</schedule_lifetime> | |
<history_cleanup_every>10</history_cleanup_every> | |
<history_success_lifetime>60</history_success_lifetime> | |
<history_failure_lifetime>600</history_failure_lifetime> | |
<use_separate_process>0</use_separate_process> | |
</group> | |
</config> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Cron:etc/crontab.xsd"> | |
<group id="${GROUP_ID}"> | |
<job name="${CRON_ID}" instance="${CLASS}" method="execute"> | |
<schedule>${CRONEXPRESSION}</schedule> | |
</job> | |
</group> | |
</config> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment