Created
May 8, 2016 11:27
-
-
Save prestarocket/1c5481706b7b34757d9dadad7aec89a1 to your computer and use it in GitHub Desktop.
prestashop cron method
This file contains 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