PluginProbe
Services Section Block – present your services in clean grids and columns / trunk
Services Section Block – present your services in clean grids and columns vtrunk
1.4.6 1.4.5 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 trunk 1.0 1.1 1.1.1 All 33 releases
services-section / includes / ssbPlugin / plugin.php

plugin.php in Services Section Block – present your services in clean grids and columns trunk, at includes/ssbPlugin/plugin.php

29 lines 842 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if (!defined('ABSPATH')) exit;
4
5 if( !class_exists( 'SSBPlugin' ) ){
6 class SSBPlugin{
7 function __construct(){
8 $this -> loaded_classes();
9 }
10
11 function loaded_classes(){
12 require_once SSB_DIR_PATH . 'includes/ssbPlugin/inc/Init.php';
13 require_once SSB_DIR_PATH . 'includes/ssbPlugin/inc/AdminMenu.php';
14 require_once SSB_DIR_PATH . 'includes/ssbPlugin/inc/Enqueue.php';
15 require_once SSB_DIR_PATH . 'includes/ssbPlugin/inc/ShortCode.php';
16 require_once SSB_DIR_PATH . 'includes/ssbPlugin/inc/CustomColumn.php';
17 require_once SSB_DIR_PATH . 'includes/ssbPlugin/inc/RestAPI.php';
18
19 new SSB\Init();
20 new SSB\AdminMenu();
21 new SSB\Enqueue();
22 new SSB\ShortCode();
23 new SSB\CustomColumn();
24 new SSB\RestAPI();
25 }
26
27 }
28 new SSBPlugin();
29 }