This commit is contained in:
mmoeller
2023-01-05 10:44:38 +01:00
parent b992fd42ba
commit 9d349584ac
35 changed files with 3400 additions and 2666 deletions

View File

@@ -36,13 +36,19 @@ class HiltesExportCommand extends Command
;
}
/**
* Schreibt die Hiltes Expport Datei
* @param InputInterface $input
* @param OutputInterface $output
* @return int
*/
protected function execute(InputInterface $input, OutputInterface $output): int
{
$io = new SymfonyStyle($input, $output);
$hiltes = new Hiltes();
$hiltes->export('Test');
$hiltes->export('Test Test');
$io->success('Done!');

View File

@@ -2,6 +2,7 @@
namespace App\Command;
use App\Helper\Hiltes;
use Symfony\Component\Console\Attribute\AsCommand;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
@@ -10,9 +11,11 @@ use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;
use Symfony\Component\Finder\Finder;
#[AsCommand(
name: 'hiltes:import',
description: 'Add a short description for your command',
description: 'Importiert die Bestandsdaten von Hiltes',
)]
class HiltesImportCommand extends Command
{
@@ -33,9 +36,10 @@ class HiltesImportCommand extends Command
$io->note(sprintf('You passed an argument: %s', $arg1));
}
if ($input->getOption('option1')) {
// ...
}
$hiltes = new Hiltes();
$hiltes->import();
$io->success('You have a new command! Now make it your own! Pass --help to see your options.');

View File

@@ -4,6 +4,8 @@ namespace App\Helper;
use Symfony\Component\Filesystem\Exception\IOExceptionInterface;
use Symfony\Component\Filesystem\Filesystem;
use Symfony\Component\Finder\Finder;
class Hiltes
{
@@ -36,6 +38,15 @@ class Hiltes
public function import()
{
$finder = new Finder();
$finder->files()->in($this->current_dir_path . "/hiltes/h2c/");
foreach ($finder as $file) {
$contents = $file->getContents();
var_dump($contents);
}
}
/**
@@ -59,4 +70,6 @@ class Hiltes
echo "Error creating file at". $exception->getPath();
}
}
}