Пример #1
0
 public static function getInstance()
 {
     if (!is_object(self::$instance)) {
         self::$instance = new self();
     }
     return self::$instance;
 }
Пример #2
0
 public static function getWeightObject()
 {
     if (!self::$weight) {
         require_once 'weight.php';
         self::$weight = J2StoreWeight::getInstance();
     }
     return self::$weight;
 }