mirror of
https://github.com/Chouchen/Shikiryu_Backup.git
synced 2021-06-30 16:02:14 +02:00
Creation of the world
This commit is contained in:
38
Files.php
Normal file
38
Files.php
Normal file
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
include_once dirname(__FILE__).'/Abstract.php';
|
||||
|
||||
class Shikiryu_Backup_Files extends Shikiryu_Backup_Abstract
|
||||
{
|
||||
|
||||
/**
|
||||
* @param array $filesToBackup
|
||||
*/
|
||||
function __construct($filesToBackup = array())
|
||||
{
|
||||
parent::__construct();
|
||||
if(!empty($filesToBackup) && is_array($filesToBackup)){
|
||||
$names = $filesToBackup;
|
||||
array_walk($names, array($this, '_getNames'));
|
||||
$this->_filesToBackup = array_combine($filesToBackup,$names);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @param string[] $filestobackup a list of file path
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
function setFilePath($filestobackup = array())
|
||||
{
|
||||
if(!empty($filestobackup) && is_array($filestobackup))
|
||||
{
|
||||
$names = $filestobackup;
|
||||
array_walk($names, 'basename');
|
||||
$this->_filesToBackup = array_combine($filestobackup,$names);
|
||||
}
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user