ae402f0c3bd8c679730ed168a81826fc839a7e13
[atutor.git] / mods / wiki / tools / cron.d / S90__monthly__.php
1 <?php
2 /*
3    Stops following parts from execution if not a month has elapsed
4    since last run.
5 */
6
7 if ($anacron["month"] + 29 * 24 * 3599 >= time()) {
8    $GOTO = 98;   // skip most __monthly__ scripts without '$HALT'ing rest
9    echo "[$cron]: no month has elapsed since last run yet, not running any script now\n";
10 }
11 else {
12    $anacron["month"] = EWIKI_CRON;
13    echo "[$cron]: proceeding\n";
14 }
15
16 ?>