PATH:
home
/
bkunreyz
/
bcmuslimgolfers.com
/
wp-content
/
plugins
/
backup
/
com
/
lib
<?php class SGCallback { private $className; private $methodName; private $params; function __construct($className, $methodName, $params = array()) { $this->className = $className; $this->methodName = $methodName; $this->params = $params; } public function canPerform() { if (class_exists($this->className)) { $callbackClass = $this->className; $sgCallback = new $callbackClass(); if (method_exists($sgCallback, $this->methodName)) { return true; } return false; } return false; } public function perform() { $callbackClass = $this->className; $methodName = $this->methodName; $obj = new $callbackClass(); $obj->$methodName($this->params); } public function __toString() { return json_encode(array( 'class' => $this->className, 'method' => $this->methodName, 'params' => $this->params )); } }
[-] SGDBState.php
[edit]
[+]
Request
[-] SGMysqldump.php
[edit]
[-] SGUploadState.php
[edit]
[-] SGFileState.php
[edit]
[-] SGReloaderState.php
[edit]
[-] SGReviewManager.php
[edit]
[-] SGArchive.php
[edit]
[-] SGStatsRequests.php
[edit]
[-] SGCallback.php
[edit]
[-] SGAuthClient.php
[edit]
[-] SGReloadHandler.php
[edit]
[+]
BackupGuard
[-] SGMigrateState.php
[edit]
[+]
..
[-] SGReloader.php
[edit]
[-] SGCharsetHandler.php
[edit]
[-] SGUploadHandler.php
[edit]
[-] SGCdrEntry.php
[edit]
[-] SGFileEntry.php
[edit]
[+]
Dropbox
[-] SGState.php
[edit]
[-] SGEntry.php
[edit]