Ejemplo n.º 1
0
 /**
  * @return ICWP_WPTB_WpFilesystem
  */
 public static function GetInstance()
 {
     if (is_null(self::$oInstance)) {
         self::$oInstance = new self();
     }
     return self::$oInstance;
 }
Ejemplo n.º 2
0
 /**
  * @return ICWP_WPTB_WpFilesystem
  */
 protected function loadWpFilesystem()
 {
     return ICWP_WPTB_WpFilesystem::GetInstance();
 }
 /**
  * @return ICWP_WPTB_WpFilesystem
  */
 public function loadFileSystemProcessor()
 {
     if (!class_exists('ICWP_WPTB_WpFilesystem')) {
         require_once dirname(__FILE__) . '/icwp-wpfilesystem.php';
     }
     return ICWP_WPTB_WpFilesystem::GetInstance();
 }