PATH:
home
/
bkunreyz
/
bcmuslimgolfers.com
/
wp-content
/
plugins
/
backup
/
com
/
lib
<?php require_once(dirname(__FILE__).'/SGEntry.php'); /** * */ class SGCdrEntry implements SGEntry { private $name; private $offset; private $path; private $type; private $size; public function __construct() { $this->type = SG_ENTRY_TYPE_CDR; } public function getName() { return $this->name; } public function getOffset() { return $this->offset; } public function getPath() { return $this->path; } public function getSize() { return $this->size; } public function getType() { return $this->type; } public function setName($name) { $this->name = $name; } public function setOffset($offset) { $this->offset = $offset; } public function setPath($path) { $this->path = $path; } public function setSize($size) { $this->size = $size; } public function toArray() { $cdrEntry = array( 'name' => $this->getName(), 'offset' => $this->getOffset(), 'path' => $this->getPath(), 'type' => $this->getType(), 'size' => $this->getSize() ); return $cdrEntry; } }
[-] 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]