-
-
Save ambrose40/53ab36a1cab0438b9187f0194337cd93 to your computer and use it in GitHub Desktop.
prestashop cron method
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
| /* Run cron tasks */ | |
| public function hookActionCronJob() | |
| { | |
| return $this->cronTask(); | |
| } | |
| /* Return cron job execution frequency */ | |
| public function getCronFrequency() | |
| { | |
| return array( | |
| 'hour' => -1, | |
| 'day' => -1, | |
| 'month' => -1, | |
| 'day_of_week' => -1 | |
| ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment