PluginProbe
Import Users & Customers with Meta | WP Ultimate CSV Importer Add-on / 1.4.2
Import Users & Customers with Meta | WP Ultimate CSV Importer Add-on v1.4.2
2.0 1.7.1 1.2.9 1.3 1.4 1.4.1 1.4.2 1.4.3 1.5 1.6 1.7 trunk 1.0 1.1 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8
import-users / SmackImportUserPlugin.php

SmackImportUserPlugin.php in Import Users & Customers with Meta | WP Ultimate CSV Importer Add-on 1.4.2, at SmackImportUserPlugin.php

30 lines 556 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Import Users plugin file.
4 *
5 * Copyright (C) 2010-2020, Smackcoders Inc - info@smackcoders.com
6 */
7
8 namespace Smackcoders\SMUSERS;
9
10 if ( ! defined( 'ABSPATH' ) )
11 exit; // Exit if accessed directly
12
13 class Plugin{
14 private static $instance = null;
15 private static $string = 'com.smackcoders.smackcsv';
16
17 public static function getInstance() {
18 if (Plugin::$instance == null) {
19 Plugin::$instance = new Plugin;
20
21 return Plugin::$instance;
22 }
23 return Plugin::$instance;
24 }
25
26 public function getPluginSlug(){
27 return Plugin::$string;
28 }
29 }
30