Origin commit

This commit is contained in:
Hoang Huu
2019-09-10 11:27:33 +07:00
commit 499e068e4f
844 changed files with 188705 additions and 0 deletions

22
inc/vendors/cmb2-plugins/cmb2-tabs/plugin.php vendored Executable file
View File

@@ -0,0 +1,22 @@
<?php
/*
Plugin Name: Tabs for CMB2
Plugin URI: https://github.com/LeadSoftInc/cmb2-tabs
Description: Extensions the tabs to the library CMB2
Version: 1.2.3
Author: LeadSoft Inc.
Author URI: http://leadsoft.org/
*/
namespace cmb2_tabs;
if ( is_admin() ) {
// Run autoloader
include __DIR__ . '/autoloader.php';
// Connection css and js
new inc\Assets();
// Run global class
new inc\CMB2_Tabs();
}