PluginProbe ʕ •ᴥ•ʔ
JetFormBuilder — Dynamic Blocks Form Builder / 3.5.4
JetFormBuilder — Dynamic Blocks Form Builder v3.5.4
3.6.3.1 3.6.3 3.6.2.2 3.6.2.1 3.6.2 3.6.1.1 3.6.1 3.6.0.1 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.1.0 2.1.1 2.1.10 2.1.11 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 3.0.0 3.0.0.1 3.0.0.2 3.0.0.3 3.0.1 3.0.1.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.0.1 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.1.8 3.1.9 3.2.0 3.2.1 3.2.2 3.2.3 3.3.0 3.3.1 3.3.2 3.3.3 3.3.3.1 3.3.4 3.3.4.1 3.3.4.2 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.5.1 3.4.5.2 3.4.6 3.4.7 3.4.7.1 3.5.0 3.5.1 3.5.1.1 3.5.1.2 3.5.2 3.5.2.1 3.5.3 3.5.4 3.5.5 3.5.6 3.5.6.1 3.5.6.2 3.5.6.3 3.6.0
jetformbuilder / includes / admin / pages / addons-page.php
jetformbuilder / includes / admin / pages Last commit date
actions 2 years ago interfaces 2 years ago settings 2 years ago action-pages-manager.php 2 years ago addons-page.php 2 years ago base-page.php 2 years ago pages-manager.php 1 year ago single-pages-manager.php 2 years ago stable-pages-manager.php 1 year ago
addons-page.php
58 lines
1 <?php
2
3 namespace Jet_Form_Builder\Admin\Pages;
4
5 use Jet_Form_Builder\Addons\Manager;
6 use Jet_Form_Builder\Plugin;
7
8 // If this file is called directly, abort.
9 if ( ! defined( 'WPINC' ) ) {
10 die;
11 }
12
13 class Addons_Page extends Base_Page {
14
15 /**
16 * Page slug
17 */
18 public function slug(): string {
19 return 'jfb-addons';
20 }
21
22 /**
23 * Page title
24 */
25 public function title(): string {
26 return __( 'Addons', 'jet-form-builder' );
27 }
28
29 /**
30 * Return page config array
31 */
32 public function page_config(): array {
33
34 return apply_filters(
35 'jfb-addons-page/page-localize-data',
36 array(
37 'nonce' => wp_create_nonce( Manager::NONCE_ACTION ),
38 'ajaxUrl' => esc_url_raw( admin_url( 'admin-ajax.php' ) ),
39 'allAddons' => Plugin::instance()->addons_manager->get_plugin_data_list(),
40 'licenseMode' => false,
41 'licenseKey' => '',
42 'licenseList' => array(),
43 'themeInfo' => Plugin::instance()->addons_manager->get_theme_info(),
44 'miscInfo' => array(
45 'mainSiteUrl' => 'https://jetformbuilder.com/',
46 'pricingPageUrl' => 'https://jetformbuilder.com/pricing/',
47 ),
48 )
49 );
50 }
51
52 public function assets() {
53 wp_enqueue_script( 'jet-form-builder-admin-package' );
54
55 parent::assets();
56 }
57 }
58