| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function init() { |
||
| 14 | |||
| 15 | add_action( 'wordlift_generate_video_sitemap_on', array( $this, 'schedule_generation' ) ); |
||
| 16 | |||
| 17 | add_action( self::CRON_ACTION_HOOK, array( $this, 'generate_video_sitemap' ) ); |
||
| 18 | |||
| 19 | add_action( 'wordlift_generate_video_sitemap_off', array( $this, 'remove_scheduled_generation' ) ); |
||
| 20 | |||
| 21 | } |
||
| 22 | |||
| 55 | } |