PluginProbe
Borderless – Addons and Templates for Elementor / trunk
Borderless – Addons and Templates for Elementor vtrunk
trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 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.0 1.2.1 1.2.2 1.2.3 All 78 releases
borderless / includes / library / importer.php

importer.php in Borderless – Addons and Templates for Elementor trunk, at includes/library/importer.php

23 lines 551 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 // don't load directly
4 defined( 'ABSPATH' ) || exit;
5
6 class Library_Importer {
7
8 public function __construct() {
9
10 require_once BORDERLESS__LIBRARY__DIR . 'vendor/autoload.php';
11
12 $borderless_library_importer = LIBRARY\BorderlessLibraryImporter::get_instance();
13
14 if ( defined( 'WP_CLI' ) && WP_CLI ) {
15 WP_CLI::add_command( 'library list', array( 'LIBRARY\WPCLICommands', 'list_predefined' ) );
16 WP_CLI::add_command( 'library import', array( 'LIBRARY\WPCLICommands', 'import' ) );
17 }
18
19 }
20 }
21
22 $library_importer = new Library_Importer();
23