| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function enqueue_scripts() { |
||
| 21 | Scripts_Helper::enqueue_based_on_wordpress_version( 'wl-videoobject', |
||
| 22 | plugin_dir_url( dirname( dirname( __DIR__ ) ) ) . '/js/dist/videoobject', |
||
| 23 | array( 'react', 'react-dom', 'wp-hooks', 'wp-i18n', 'wp-polyfill' ) |
||
| 24 | ); |
||
| 25 | wp_enqueue_style( 'wl-videoobject', |
||
| 26 | plugin_dir_url( dirname( dirname( __DIR__ ) ) ) . '/js/dist/videoobject.css' ); |
||
| 27 | wp_localize_script( 'wl-videoobject', '_wlVideoobjectConfig', array( |
||
| 28 | 'restUrl' => get_rest_url( null, '/wordlift/v1/videos' ), |
||
| 29 | 'nonce' => wp_create_nonce( 'wp_rest' ), |
||
| 30 | 'postId' => get_the_ID(), |
||
| 31 | ) ); |
||
| 32 | } |
||
| 33 | |||
| 34 | } |