mirror of
				https://github.com/Chouchen/Shikiryu_Backup.git
				synced 2021-06-30 16:02:14 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			899 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			899 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace Shikiryu\Backup\Backup;
 | 
						|
 | 
						|
class Files extends BackupAbstract
 | 
						|
{
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param array $config
 | 
						|
     * @throws \Exception
 | 
						|
     */
 | 
						|
    public function __construct(array $config = array())
 | 
						|
    {
 | 
						|
        if (!isset($config['files'])) {
 | 
						|
            throw new \Exception('Files needs a "files" configuration.');
 | 
						|
        }
 | 
						|
        parent::__construct();
 | 
						|
        $filesToBackup = $config['files'];
 | 
						|
        if(!empty($filesToBackup) && is_array($filesToBackup)){
 | 
						|
            $names = array_map("basename",$filesToBackup);
 | 
						|
            $this->_filesToBackup = array_combine($filesToBackup,$names);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    public function isValid()
 | 
						|
    {
 | 
						|
        $result = true;
 | 
						|
        foreach ($this->_filesToBackup as $file => $name) {
 | 
						|
            if (!file_exists($file)) {
 | 
						|
                $result = false;
 | 
						|
                break;
 | 
						|
            }
 | 
						|
        }
 | 
						|
        return $result;
 | 
						|
    }
 | 
						|
 | 
						|
}
 | 
						|
?>
 |