Conditions | 1 |
Paths | 1 |
Total Lines | 19 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | protected function enqueueModalAssets(): void |
||
16 | { |
||
17 | /** |
||
18 | * Hide the menus |
||
19 | */ |
||
20 | \wp_enqueue_style( |
||
21 | 'graphql-api-hide-admin-bar', |
||
22 | \GRAPHQL_API_URL . 'assets/css/hide-admin-bar.css', |
||
23 | array(), |
||
24 | \GRAPHQL_API_VERSION |
||
25 | ); |
||
26 | /** |
||
27 | * Styles for content within the modal window |
||
28 | */ |
||
29 | \wp_enqueue_style( |
||
30 | 'graphql-api-modal-window-content', |
||
31 | \GRAPHQL_API_URL . 'assets/css/modal-window-content.css', |
||
32 | array(), |
||
33 | \GRAPHQL_API_VERSION |
||
34 | ); |
||
37 |