PluginProbe
Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts / 2.3.1
Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts v2.3.1
2.7.7 2.7.6 2.7.5 2.7.4 trunk 1.3 2.0.4 2.0.6 2.1.91 2.2.4 2.2.7 2.2.9 2.3.1 2.3.10 2.4.10 2.4.2 2.4.4 2.4.5 2.4.6 2.4.7 2.4.8 2.4.9 2.6.0 2.6.1 2.7.0 All 28 releases
insert-php / libs / factory / core / boot.php

boot.php in Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts 2.3.1, at libs/factory/core/boot.php

63 lines 2.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Factory Plugin
4 *
5 * @author @author Alex Kovalev <alex.kovalevv@gmail.com>, repo: https://github.com/alexkovalevv
6 * @since 1.0.0
7 * @package core
8 * @copyright (c) 2018, Webcraftic Ltd
9 *
10 */
11
12 // Exit if accessed directly
13 if ( ! defined( 'ABSPATH' ) ) {
14 exit;
15 }
16
17 if ( defined( 'FACTORY_422_LOADED' ) ) {
18 return;
19 }
20
21 define( 'FACTORY_422_LOADED', true );
22
23 define( 'FACTORY_422_VERSION', '4.2.2' );
24
25 define( 'FACTORY_422_DIR', dirname( __FILE__ ) );
26 define( 'FACTORY_422_URL', plugins_url( null, __FILE__ ) );
27
28 load_plugin_textdomain( 'wbcr_factory_422', false, dirname( plugin_basename( __FILE__ ) ) . '/langs' );
29
30 #comp merge
31 require_once( FACTORY_422_DIR . '/includes/functions.php' );
32
33 require_once( FACTORY_422_DIR . '/includes/entities/class-factory-paths.php' );
34 require_once( FACTORY_422_DIR . '/includes/entities/class-factory-support.php' );
35
36 require_once( FACTORY_422_DIR . '/includes/class-factory-requests.php' );
37 require_once( FACTORY_422_DIR . '/includes/class-factory-options.php' );
38 require_once( FACTORY_422_DIR . '/includes/class-factory-plugin-base.php' );
39 require_once( FACTORY_422_DIR . '/includes/class-factory-migrations.php' );
40 require_once( FACTORY_422_DIR . '/includes/class-factory-notices.php' );
41
42 // ASSETS
43 require_once( FACTORY_422_DIR . '/includes/assets-managment/class-factory-assets-list.php' );
44 require_once( FACTORY_422_DIR . '/includes/assets-managment/class-factory-script-list.php' );
45 require_once( FACTORY_422_DIR . '/includes/assets-managment/class-factory-style-list.php' );
46
47 // PREMIUM
48 require_once( FACTORY_422_DIR . '/includes/premium/class-factory-license-interface.php' );
49 require_once( FACTORY_422_DIR . '/includes/premium/class-factory-provider-abstract.php' );
50 require_once( FACTORY_422_DIR . '/includes/premium/class-factory-manager.php' );
51
52 // UPDATES
53 require_once( FACTORY_422_DIR . '/includes/updates/repositories/class-factory-repository-abstract.php' );
54 require_once( FACTORY_422_DIR . '/includes/updates/repositories/class-factory-wordpress.php' );
55 require_once( FACTORY_422_DIR . '/includes/updates/class-factory-upgrader.php' );
56 require_once( FACTORY_422_DIR . '/includes/updates/class-factory-premium-upgrader.php' );
57
58 require_once( FACTORY_422_DIR . '/includes/class-factory-plugin-abstract.php' );
59
60 require_once( FACTORY_422_DIR . '/includes/activation/class-factory-activator.php' );
61 require_once( FACTORY_422_DIR . '/includes/activation/class-factory-update.php' );
62 #endcomp
63