PATH:
home
/
letacommog
/
rdvenunclick.fr1
/
wp-content
/
plugins
/
dokan-lite
/
depricated
<?php namespace Dokan\Traits; /** * Singleton Trait * * @since 1.0.0 */ trait Singleton { /** * Singleton class instance holder * * @since 1.0.0 * * @var object */ protected static $instance; /** * Make a class instance * * @since 1.0.0 * * @return object */ public static function instance() { if ( ! isset( static::$instance ) && ! ( static::$instance instanceof static ) ) { static::$instance = new static(); if ( method_exists( static::$instance, 'boot' ) ) { static::$instance->boot(); } } return static::$instance; } }
[+]
..
[-] class-dokan-store-category-walker.php
[edit]
[-] class-dokan-seller-setup-wizard.php
[edit]
[-] class-dokan-rest-product-controller.php
[edit]
[-] class-dokan-template-products.php
[edit]
[-] class-dokan-template-settings.php
[edit]
[-] depricated-functions.php
[edit]
[-] depricated-classes.php
[edit]
[-] class-abstrct-dokan-rest-store-controller.php
[edit]
[-] Singleton.php
[edit]
[-] class-dokan-rest-store-controller.php
[edit]
[-] depricated-hooks.php
[edit]
[-] class-dokan-template-dashboard.php
[edit]
[-] class-dokan-email.php
[edit]
[-] class-dokan-store-location-widget.php
[edit]
[-] class-abstract-class-dokan-background-processes.php
[edit]
[-] class-dokan-vendor.php
[edit]
[-] class-dokan-rest-controller.php
[edit]
[-] class-dokan-withdraw.php
[edit]
[-] class-dokan-taxonomy-walker.php
[edit]