PluginProbe
Info Cards – present key information in elegant card layouts / trunk
Info Cards – present key information in elegant card layouts vtrunk
3.0.2 3.0.1 3.0.0 trunk 1.0.0 1.0.1 1.0.10 1.0.11 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
info-cards / includes / rootPlugin / plugin.php

plugin.php in Info Cards – present key information in elegant card layouts trunk, at includes/rootPlugin/plugin.php

29 lines 1016 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( 'ICB_InfoCards' ) ) {
6 class ICB_InfoCards {
7 function __construct() {
8 $this->loaded_classes();
9 }
10
11 function loaded_classes() {
12 require_once ICB_DIR_PATH . 'includes/rootPlugin/inc/Init.php';
13 require_once ICB_DIR_PATH . 'includes/rootPlugin/inc/Enqueue.php';
14 require_once ICB_DIR_PATH . 'includes/rootPlugin/inc/AdminMenu.php';
15 require_once ICB_DIR_PATH . 'includes/rootPlugin/inc/ShortCode.php';
16 require_once ICB_DIR_PATH . 'includes/rootPlugin/inc/RestAPI.php';
17 require_once ICB_DIR_PATH . 'includes/rootPlugin/inc/Functions.php';
18 require_once ICB_DIR_PATH . 'includes/rootPlugin/inc/Posts.php';
19
20 new ICB\Init();
21 new ICB\Enqueue();
22 new ICB\AdminMenu();
23 new ICB\ShortCode();
24 new ICB\RestAPI();
25 }
26 }
27 new ICB_InfoCards();
28 }
29