コード例 #1
0
ファイル: bootstrap.php プロジェクト: DrLeeroyPhD/sidekicks
<?php

/**
 * ======================================================================
 * LICENSE: This file is subject to the terms and conditions defined in *
 * file 'license.txt', which is part of this source code package.       *
 * ======================================================================
 */
if (defined('AAM_KEY') && !defined('AAM_UTILITIES')) {
    //define extension constant as it's version #
    define('AAM_UTILITIES', '1.3.2');
    //register activate and extension classes
    $basedir = dirname(__FILE__);
    AAM_Autoloader::add('AAM_Utilities', $basedir . '/Utilities.php');
    AAM_Utilities::bootstrap();
}
コード例 #2
0
ファイル: Utilities.php プロジェクト: DrLeeroyPhD/sidekicks
 /**
  * Bootstrap the extension
  * 
  * @return AAM_PlusPackage
  * 
  * @access public
  */
 public static function bootstrap()
 {
     if (is_null(self::$_instance)) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }