PluginProbe ʕ •ᴥ•ʔ
Advanced Import / 1.3.2
Advanced Import v1.3.2
trunk 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 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.3.9 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 2.0.0
advanced-import / includes / class-theme-template-library-base.php
advanced-import / includes Last commit date
theme-template-library 5 years ago class-advanced-import-activator.php 5 years ago class-advanced-import-deactivator.php 5 years ago class-advanced-import-i18n.php 5 years ago class-advanced-import-loader.php 5 years ago class-advanced-import.php 5 years ago class-theme-template-library-base.php 5 years ago functions-advanced-import.php 5 years ago index.php 5 years ago
class-theme-template-library-base.php
33 lines
1 <?php
2
3 if ( ! defined( 'ABSPATH' ) ) {
4 exit;
5 }
6
7 if ( ! class_exists( 'Advanced_Import_Theme_Template_Library_Base' ) ) {
8
9 /**
10 * Base Class For CosmosWP for common functions
11 *
12 * @package Advanced Import
13 * @subpackage Advanced Import Template Library
14 * @since 1.0.0
15 */
16 class Advanced_Import_Theme_Template_Library_Base {
17
18 /**
19 * Run Block
20 *
21 * @access public
22 * @since 1.0.0
23 * @return void
24 */
25 public function run() {
26
27 if ( method_exists( $this, 'add_template_library' ) ) {
28 add_filter( 'advanced_import_demo_lists', array( $this, 'add_template_library' ) );
29 }
30 }
31 }
32 }
33