PluginProbe
Elementor Website Builder – more than just a page builder / 3.11.1
Elementor Website Builder – more than just a page builder v3.11.1
4.3.0-beta3 4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 All 452 releases
elementor / core / editor / config-providers / config-provider-interface.php

config-provider-interface.php in Elementor Website Builder – more than just a page builder 3.11.1, at core/editor/config-providers/config-provider-interface.php

44 lines 878 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Elementor\Core\Editor\Config_Providers;
3
4 if ( ! defined( 'ABSPATH' ) ) {
5 exit; // Exit if accessed directly.
6 }
7
8 interface Config_Provider_Interface {
9 /**
10 * Return a list of the scripts to register.
11 *
12 * @return array
13 */
14 public function get_script_configs();
15
16 /**
17 * Return a list of the scripts handles to enqueue (loaders for the apps).
18 *
19 * @return string[] handle names
20 */
21 public function get_script_handles_to_enqueue();
22
23 /**
24 * Return a list of the styles to register.
25 *
26 * @return array
27 */
28 public function get_style_configs();
29
30 /**
31 * Return a list of the style handles to enqueue (loaders for the apps).
32 *
33 * @return string[] handle names
34 */
35 public function get_style_handles_to_enqueue();
36
37 /**
38 * Return the path to the template body file.
39 *
40 * @return string
41 */
42 public function get_template_body_file_path();
43 }
44