| Conditions | 2 |
| Paths | 2 |
| Total Lines | 17 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | public static function schedule_send() { |
||
| 18 | if ( wp_next_scheduled( 'formidable_send_usage' ) ) { |
||
| 19 | return; |
||
| 20 | } |
||
| 21 | |||
| 22 | $tracking = array( |
||
| 23 | 'day' => rand( 0, 6 ) * DAY_IN_SECONDS, |
||
| 24 | 'hour' => rand( 0, 23 ) * HOUR_IN_SECONDS, |
||
| 25 | 'minute' => rand( 0, 59 ) * MINUTE_IN_SECONDS, |
||
| 26 | 'second' => rand( 0, 59 ), |
||
| 27 | ); |
||
| 28 | |||
| 29 | $offset = array_sum( $tracking ); |
||
| 30 | $init_send = strtotime( 'next sunday' ) + $offset; |
||
| 31 | |||
| 32 | wp_schedule_event( $init_send, 'weekly', 'formidable_send_usage' ); |
||
| 33 | } |
||
| 34 | |||
| 56 |