Plugin Directory

Changeset 2923431


Ignore:
Timestamp:
06/08/2023 01:29:50 PM (3 years ago)
Author:
abcfolio
Message:

Version: 0.3.1

Location:
staff-list-vcard/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • staff-list-vcard/trunk/readme.txt

    r2893881 r2923431  
    66Tags:  qr code, qrcode, vcard, vcf, staff, abcfolio
    77Requires at least: 4.9
    8 Tested up to: 6.2
     8Tested up to: 6.3
    99Requires PHP: 7.0
    10 Stable tag: 0.3.0
     10Stable tag: 0.3.1
    1111License: GPLv2 or later
    1212License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7777
    7878== Changelog ==
     79
     80= 0.3.0 20230608=
     81* Update: Removed outated code comments.
    7982
    8083= 0.3.0 20230404 =
  • staff-list-vcard/trunk/staff-list-vcard.php

    r2893881 r2923431  
    88Text Domain: staff-list
    99Domain Path: /languages
    10 Version: 0.3.0
     10Version: 0.3.1
    1111------------------------------------------------------------------------
    1212Copyright 2009-2015 abcFolio.
     
    5353    private function __construct (){}
    5454
    55      //Throw error on object clone. We don't want the object to be cloned.
    5655    public function __clone() {
    5756        _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'sl-vcard' ), '1.5' );
    5857    }
    5958
    60     //Disable unserializing of the class
    6159    public function __wakeup() {
    6260        _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'sl-vcard' ), '1.5' );
     
    7068        // Plugin Folder URL
    7169        if ( ! defined( 'ABCFVC_PLUGIN_URL' ) ) { define( 'ABCFVC_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); }
    72         // Plugin folder name abcfolio-staff-list
    73         //if( ! defined( 'ABCFVC_PLUGIN_FOLDER' ) ){ define('ABCFVC_PLUGIN_FOLDER', basename( dirname(__FILE__) ) ); }
    7470        // Plugin Root File QPath staff-list-vcard.php
    7571        if ( ! defined( 'ABCFVC_PLUGIN_FILE' ) ){ define( 'ABCFVC_PLUGIN_FILE', __FILE__ ); }
     
    7773     }
    7874
    79     //Include required files
    8075    private function includes() {
    8176       
     
    159154
    160155}
    161 } // End class_exists check
     156}
    162157
    163 /**
    164  * The main function responsible for returning the one true ABCFVC_Main instance to functions everywhere.
    165  * Use this function like you would a global variable, except without needing to declare the global.
    166  *  * Example: $object = ABCFVC_Main();
    167  */
    168158function ABCFVC_Main() {
    169159    return ABCF_Staff_VCard::instance();
    170160}
    171 // Get plugin Running
     161
    172162ABCFVC_Main();
    173163
Note: See TracChangeset for help on using the changeset viewer.