1 | <?php |
||
11 | class Sensei_Theme_Integration_Loader { |
||
12 | |||
13 | /** |
||
14 | * @var array |
||
15 | * Holding a reference core supported themes |
||
16 | */ |
||
17 | protected $themes; |
||
18 | |||
19 | /** |
||
20 | * @var string |
||
21 | * reference to the theme currently active on this site |
||
22 | */ |
||
23 | protected $active_theme; |
||
24 | |||
25 | public function __construct() { |
||
32 | |||
33 | /** |
||
34 | * Setup the theme slugs supported by Sensei Core |
||
35 | * |
||
36 | * @since 1.9.0 |
||
37 | */ |
||
38 | private function setup_themes(){ |
||
51 | |||
52 | /** |
||
53 | * Setup the currently active theme |
||
54 | * |
||
55 | * @since 1.9.0 |
||
56 | */ |
||
57 | private function setup_currently_active_theme(){ |
||
62 | |||
63 | /** |
||
64 | * Remove default Sensei wrappers and load |
||
65 | * supported wrappers if the current theme is |
||
66 | * a theme we have an integration for within core. |
||
67 | * |
||
68 | * @since 1.9.0 |
||
69 | */ |
||
70 | private function possibly_load_supported_theme_wrappers(){ |
||
99 | |||
100 | } /// end class |