mirror of
https://github.com/Chouchen/Shikiryu_Backup.git
synced 2021-06-30 16:02:14 +02:00
adding docs
This commit is contained in:
@@ -54,7 +54,7 @@ class BackupAbstract
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
function addDate($format = 'Ymd')
|
||||
public function addDate($format = 'Ymd')
|
||||
{
|
||||
$tmpFiles = array();
|
||||
foreach ($this->_filesToBackup as $file => $name) {
|
||||
@@ -82,7 +82,7 @@ class BackupAbstract
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
function addTime($format = 'his')
|
||||
public function addTime($format = 'his')
|
||||
{
|
||||
$tmpFiles = array();
|
||||
foreach ($this->_filesToBackup as $file => $name) {
|
||||
@@ -108,30 +108,6 @@ class BackupAbstract
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $folder
|
||||
*/
|
||||
function backupToFolder($folder)
|
||||
{
|
||||
if (!empty($folder)) {
|
||||
$folder = sprintf('%s/', rtrim($folder, '/'));
|
||||
}
|
||||
// if($folder != '')
|
||||
// {
|
||||
// if(substr($folder, 0, -1) != '/')
|
||||
// $folder .= '/';
|
||||
// }
|
||||
foreach ($this->_filesToBackup as $file => $name) {
|
||||
copy($file, $folder . $name);
|
||||
}
|
||||
foreach ($this->_streamsToBackup as $name => $file) {
|
||||
if (count(explode('.', $name)) < 2) {
|
||||
$name = 'backup' . $name . '.txt';
|
||||
}
|
||||
file_put_contents($folder . $name, $file);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if all files got the minimum given size.
|
||||
*
|
||||
@@ -157,10 +133,7 @@ class BackupAbstract
|
||||
/**
|
||||
* @return bool
|
||||
*/
|
||||
public function isValid()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
abstract public function isValid();
|
||||
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user