PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
backup
/
src
/
Commands
<?php namespace Botble\Backup\Commands; use Botble\Backup\Supports\Backup; use Exception; use Illuminate\Console\Command; class BackupListCommand extends Command { /** * @var Backup */ public $backup; /** * The console command signature. * * @var string */ protected $signature = 'cms:backup:list'; /** * The console command description. * * @var string */ protected $description = 'List all backups'; /** * BackupCommand constructor. * @param Backup $backup */ public function __construct(Backup $backup) { parent::__construct(); $this->backup = $backup; } /** * Execute the console command. * @throws Exception */ public function handle() { try { $backups = get_file_data($this->backup->getBackupPath('backup.json')); foreach ($backups as $key => &$backup) { $backup['key'] = $key; } $header = [ 'Name', 'Description', 'Date', 'Folder', ]; $this->table($header, $backups); } catch (Exception $exception) { $this->error($exception->getMessage()); } return 0; } }
[-] BackupListCommand.php
[edit]
[+]
..
[-] BackupCreateCommand.php
[edit]
[-] BackupRemoveCommand.php
[edit]
[-] BackupRestoreCommand.php
[edit]