PluginProbe
Plugin Detective – Troubleshooting Conflicts / 1.2.13
Plugin Detective – Troubleshooting Conflicts v1.2.13
1.2.33 1.2.32 1.2.31 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2 1.2.1 1.2.10 1.2.12 1.2.13 1.2.14 1.2.16 1.2.19 1.2.20 1.2.22 1.2.23 1.2.24 1.2.25 All 53 releases
plugin-detective / troubleshoot / includes / class-bootstrap.php

class-bootstrap.php in Plugin Detective – Troubleshooting Conflicts 1.2.13, at troubleshoot/includes/class-bootstrap.php

49 lines 627 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Troubleshoot Bootstrap.
4 *
5 * @since 0.0.0
6 * @package Troubleshoot
7 */
8
9 /**
10 * Troubleshoot Bootstrap.
11 *
12 * @since 0.0.0
13 */
14 class PDT_Bootstrap {
15 /**
16 * Parent plugin class.
17 *
18 * @since 0.0.0
19 *
20 * @var Troubleshoot
21 */
22 protected $plugin = null;
23
24 /**
25 * Constructor.
26 *
27 * @since 0.0.0
28 *
29 * @param Troubleshoot $plugin Main plugin object.
30 */
31 public function __construct( $plugin ) {
32 $this->plugin = $plugin;
33
34 new PDT_Functions( $plugin );
35 new PDT_Settings( $plugin );
36
37 $this->hooks();
38 }
39
40 /**
41 * Initiate our hooks.
42 *
43 * @since 0.0.0
44 */
45 public function hooks() {
46
47 }
48 }
49