* Fix rank importing with PIREP pay #443 * Import ledger information #443 * Uncomment out testing importers * Import expense log and settings #443 * Formatting
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Importer\Services\Importers;
|
||||
|
||||
use App\Repositories\SettingRepository;
|
||||
use Modules\Importer\Services\BaseImporter;
|
||||
|
||||
class SettingsImporter extends BaseImporter
|
||||
{
|
||||
protected $table = 'settings';
|
||||
|
||||
public function run($start = 0)
|
||||
{
|
||||
$this->comment('--- SETTINGS IMPORT ---');
|
||||
|
||||
/** @var SettingRepository $settingsRepo */
|
||||
$settingsRepo = app(SettingRepository::class);
|
||||
|
||||
$count = 0;
|
||||
$rows = $this->db->readRows($this->table, $this->idField, $start);
|
||||
foreach ($rows as $row) {
|
||||
switch ($row->name) {
|
||||
case 'ADMIN_EMAIL':
|
||||
$settingsRepo->store('general.admin_email', $row->value);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
$this->info('Imported '.$count.' settings');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user