PluginProbe ʕ •ᴥ•ʔ
Everest Forms – Contact Form, Payment Form, Quiz, Survey & Custom Form Builder with AI / 3.0.5
Everest Forms – Contact Form, Payment Form, Quiz, Survey & Custom Form Builder with AI v3.0.5
3.6.0 3.5.3 3.5.2 3.5.1 3.5.0 3.4.8 3.4.7 3.4.6 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.5.1 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.9 1.5.0 1.5.1 1.5.10 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.6.1 1.6.7 1.7.0 1.7.0.1 1.7.0.2 1.7.0.3 1.7.1 1.7.2 1.7.2.1 1.7.2.2 1.7.3 1.7.4 1.7.5 1.7.5.1 1.7.5.2 1.7.6 1.7.7 1.7.7.1 1.7.7.2 1.7.8 1.7.9 1.8.0 1.8.0.1 1.8.1 1.8.2 1.8.2.1 1.8.2.2 1.8.2.3 1.8.3 1.8.4 1.8.5 1.8.6 1.8.7 1.8.8 1.8.9 1.9.0 1.9.0.1 1.9.1 1.9.2 1.9.3 1.9.4 1.9.4.1 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.0.0.1 2.0.1 2.0.2 2.0.3 2.0.3.1 2.0.4 2.0.4.1 2.0.5 2.0.6 2.0.7 2.0.8 2.0.8.1 2.0.9 3.0.0 3.0.0.1 3.0.1 3.0.2 3.0.3 3.0.3.1 3.0.4 3.0.4.1 3.0.4.2 3.0.5 3.0.5.1 3.0.5.2 3.0.6 3.0.6.1 3.0.7.1 3.0.8 3.0.8.1 3.0.9 3.0.9.1 3.0.9.2 3.0.9.3 3.0.9.4 3.0.9.5 3.1.0 3.1.1 3.1.2 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.2.5 3.2.6 3.3.0 3.4.0 3.4.1 3.4.2 3.4.2.1 3.4.3 3.4.4 3.4.5 trunk 1.0 1.0.1 1.0.2 1.0.3
everest-forms / includes / admin / class-evf-admin-builder.php
everest-forms / includes / admin Last commit date
builder 1 year ago form-migrator 2 years ago plugin-updates 8 years ago settings 1 year ago views 1 year ago class-evf-admin-addons.php 2 years ago class-evf-admin-assets.php 1 year ago class-evf-admin-builder.php 8 years ago class-evf-admin-dashboard.php 2 years ago class-evf-admin-deactivation-feedback.php 3 years ago class-evf-admin-editor.php 4 years ago class-evf-admin-embed-wizard.php 2 years ago class-evf-admin-entries-table-list.php 2 years ago class-evf-admin-entries.php 2 years ago class-evf-admin-form-templates.php 1 year ago class-evf-admin-forms-table-list.php 2 years ago class-evf-admin-forms.php 2 years ago class-evf-admin-import-export.php 4 years ago class-evf-admin-menus.php 2 years ago class-evf-admin-notices.php 1 year ago class-evf-admin-preview-confirmation.php 2 years ago class-evf-admin-settings.php 1 year ago class-evf-admin-tools.php 2 years ago class-evf-admin-welcome.php 3 years ago class-evf-admin.php 2 years ago evf-admin-functions.php 1 year ago
class-evf-admin-builder.php
45 lines
1 <?php
2 /**
3 * EverestForms Admin Builder Class
4 *
5 * @package EverestForms\Admin
6 * @version 1.0.0
7 */
8
9 defined( 'ABSPATH' ) || exit;
10
11 if ( ! class_exists( 'EVF_Admin_Builder', false ) ) :
12
13 /**
14 * EVF_Admin_Builder Class.
15 */
16 class EVF_Admin_Builder {
17
18 /**
19 * Builder pages.
20 *
21 * @var array
22 */
23 private static $builder = array();
24
25 /**
26 * Include the builder page classes.
27 */
28 public static function get_builder_pages() {
29 if ( empty( self::$builder ) ) {
30 $builder = array();
31
32 include_once dirname( __FILE__ ) . '/builder/class-evf-builder-page.php';
33
34 $builder[] = include 'builder/class-evf-builder-fields.php';
35 $builder[] = include 'builder/class-evf-builder-settings.php';
36
37 self::$builder = apply_filters( 'everest_forms_get_builder_pages', $builder );
38 }
39
40 return self::$builder;
41 }
42 }
43
44 endif;
45