| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | public function init_all_dependencies() { |
||
| 22 | $video_storage = Video_Storage_Factory::get_storage(); |
||
| 23 | new Jsonld( $video_storage ); |
||
| 24 | // Hook in to save_post to save the videos |
||
| 25 | $post_filter = new Post_Filter(); |
||
| 26 | $post_filter->init(); |
||
| 27 | // Add entry to wordlift admin tabs |
||
| 28 | $settings_tab = new Settings_Tab(); |
||
| 29 | $settings_tab->init(); |
||
| 30 | $video_sitemap = new Video_Sitemap(); |
||
| 31 | $video_sitemap->init(); |
||
| 32 | $rest_controller = new Rest_Controller(); |
||
| 33 | $rest_controller->register_all_routes(); |
||
| 34 | |||
| 35 | $post_edit_screen = new Post_Edit_Screen(); |
||
| 36 | $post_edit_screen->init(); |
||
| 37 | } |
||
| 38 | |||
| 46 | } |