PluginProbe
Import Users & Customers with Meta | WP Ultimate CSV Importer Add-on / 1.2
Import Users & Customers with Meta | WP Ultimate CSV Importer Add-on v1.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.2, at SmackImportUserPlugin.php

31 lines 903 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /******************************************************************************************
3 * Copyright (C) Smackcoders. - All Rights Reserved under Smackcoders Proprietary License
4 * Unauthorized copying of this file, via any medium is strictly prohibited
5 * Proprietary and confidential
6 * You can contact Smackcoders at email address info@smackcoders.com.
7 *******************************************************************************************/
8
9 namespace Smackcoders\SMUSERS;
10
11 if ( ! defined( 'ABSPATH' ) )
12 exit; // Exit if accessed directly
13
14 class Plugin{
15 private static $instance = null;
16 private static $string = 'com.smackcoders.smackcsv';
17
18 public static function getInstance() {
19 if (Plugin::$instance == null) {
20 Plugin::$instance = new Plugin;
21
22 return Plugin::$instance;
23 }
24 return Plugin::$instance;
25 }
26
27 public function getPluginSlug(){
28 return Plugin::$string;
29 }
30 }
31