├── LICENSE ├── Makefile ├── README.md ├── UPGRADE.md ├── composer.json ├── config ├── admin_routing.yaml ├── config.yaml ├── grids.yaml ├── resources.yaml ├── services.yaml ├── twig_hooks.yaml └── validation.yaml ├── doc └── images │ ├── Commands.png │ └── ScheduledCommands.png ├── install └── Application │ └── config │ ├── packages │ ├── sylius_fixtures.yaml │ ├── sylius_scheduler_command.yaml │ └── test │ │ └── sylius_scheduler_command.yaml │ └── routes │ └── sylius_scheduler_command.yaml ├── migrations ├── Version20200107151826.php ├── Version20210810054537.php ├── Version20210828114655.php └── Version20211224090032.php ├── public ├── column │ └── index.js └── controller │ ├── index.css │ └── index.js ├── src ├── Action │ └── CleanLogAction.php ├── Checker │ ├── EveryMinuteIsDueChecker.php │ ├── IsDueCheckerInterface.php │ └── SoftLimitThresholdIsDueChecker.php ├── Command │ ├── PurgeScheduledCommandCommand.php │ └── SynoliaSchedulerRunCommand.php ├── Components │ └── Exceptions │ │ └── Checker │ │ └── IsNotDueException.php ├── Controller │ ├── DownloadController.php │ ├── EmptyLogsController.php │ ├── LogViewerController.php │ └── ScheduledCommandExecuteImmediateController.php ├── DataRetriever │ └── LogDataRetriever.php ├── DependencyInjection │ └── SynoliaSyliusSchedulerCommandExtension.php ├── DoctrineEvent │ └── ScheduledCommandPostRemoveEvent.php ├── Entity │ ├── Command.php │ ├── CommandInterface.php │ ├── ScheduledCommand.php │ └── ScheduledCommandInterface.php ├── Enum │ └── ScheduledCommandStateEnum.php ├── EventSubscriber │ └── ConsoleSubscriber.php ├── Fixture │ └── SchedulerCommandFixture.php ├── Form │ ├── CommandChoiceType.php │ ├── CommandType.php │ └── ScheduledCommandType.php ├── Grid │ └── FieldType │ │ ├── DatetimeFieldType.php │ │ ├── ScheduledCommandExecutionTimeType.php │ │ ├── ScheduledCommandHumanReadableExpressionType.php │ │ ├── ScheduledCommandStateType.php │ │ └── ScheduledCommandUrlType.php ├── Humanizer │ ├── CronExpressionHumanizer.php │ └── HumanizerInterface.php ├── Listener │ └── Grid │ │ ├── GoToCommandsButtonGridListener.php │ │ └── GoToHistoryButtonGridListener.php ├── Menu │ └── AdminMenuListener.php ├── Parser │ ├── CommandParser.php │ └── CommandParserInterface.php ├── Planner │ ├── ScheduledCommandPlanner.php │ └── ScheduledCommandPlannerInterface.php ├── Provider │ └── CalendarWithTimezone.php ├── Repository │ ├── CommandRepository.php │ ├── CommandRepositoryInterface.php │ ├── ScheduledCommandRepository.php │ └── ScheduledCommandRepositoryInterface.php ├── Runner │ ├── ScheduleCommandRunner.php │ └── ScheduleCommandRunnerInterface.php ├── SynoliaSyliusSchedulerCommandPlugin.php ├── Twig │ └── BytesFormatterExtension.php ├── Validator │ ├── LogfilePrefixPropertyValidator.php │ └── LogfilePropertyValidator.php └── Voter │ ├── IsDueVoter.php │ └── IsDueVoterInterface.php ├── templates ├── Controller │ ├── css.html.twig │ ├── js.html.twig │ ├── modal.html.twig │ └── show.html.twig └── Grid │ ├── Action │ ├── empty_log_file.html.twig │ ├── empty_logs_file.html.twig │ ├── execute_immediate.html.twig │ └── link.html.twig │ └── Column │ ├── human_readable_expression.html.twig │ ├── js.html.twig │ ├── log_file.html.twig │ └── scheduled_command_state.html.twig └── translations ├── messages.en.yml ├── messages.fr.yml ├── messages.nl.yml ├── validators.en.yaml └── validators.fr.yaml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/UPGRADE.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/composer.json -------------------------------------------------------------------------------- /config/admin_routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/config/admin_routing.yaml -------------------------------------------------------------------------------- /config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/config/config.yaml -------------------------------------------------------------------------------- /config/grids.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/config/grids.yaml -------------------------------------------------------------------------------- /config/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/config/resources.yaml -------------------------------------------------------------------------------- /config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/config/services.yaml -------------------------------------------------------------------------------- /config/twig_hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/config/twig_hooks.yaml -------------------------------------------------------------------------------- /config/validation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/config/validation.yaml -------------------------------------------------------------------------------- /doc/images/Commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/doc/images/Commands.png -------------------------------------------------------------------------------- /doc/images/ScheduledCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/doc/images/ScheduledCommands.png -------------------------------------------------------------------------------- /install/Application/config/packages/sylius_fixtures.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/install/Application/config/packages/sylius_fixtures.yaml -------------------------------------------------------------------------------- /install/Application/config/packages/sylius_scheduler_command.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/install/Application/config/packages/sylius_scheduler_command.yaml -------------------------------------------------------------------------------- /install/Application/config/packages/test/sylius_scheduler_command.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/install/Application/config/packages/test/sylius_scheduler_command.yaml -------------------------------------------------------------------------------- /install/Application/config/routes/sylius_scheduler_command.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/install/Application/config/routes/sylius_scheduler_command.yaml -------------------------------------------------------------------------------- /migrations/Version20200107151826.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/migrations/Version20200107151826.php -------------------------------------------------------------------------------- /migrations/Version20210810054537.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/migrations/Version20210810054537.php -------------------------------------------------------------------------------- /migrations/Version20210828114655.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/migrations/Version20210828114655.php -------------------------------------------------------------------------------- /migrations/Version20211224090032.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/migrations/Version20211224090032.php -------------------------------------------------------------------------------- /public/column/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/public/column/index.js -------------------------------------------------------------------------------- /public/controller/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/public/controller/index.css -------------------------------------------------------------------------------- /public/controller/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/public/controller/index.js -------------------------------------------------------------------------------- /src/Action/CleanLogAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Action/CleanLogAction.php -------------------------------------------------------------------------------- /src/Checker/EveryMinuteIsDueChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Checker/EveryMinuteIsDueChecker.php -------------------------------------------------------------------------------- /src/Checker/IsDueCheckerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Checker/IsDueCheckerInterface.php -------------------------------------------------------------------------------- /src/Checker/SoftLimitThresholdIsDueChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Checker/SoftLimitThresholdIsDueChecker.php -------------------------------------------------------------------------------- /src/Command/PurgeScheduledCommandCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Command/PurgeScheduledCommandCommand.php -------------------------------------------------------------------------------- /src/Command/SynoliaSchedulerRunCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Command/SynoliaSchedulerRunCommand.php -------------------------------------------------------------------------------- /src/Components/Exceptions/Checker/IsNotDueException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Components/Exceptions/Checker/IsNotDueException.php -------------------------------------------------------------------------------- /src/Controller/DownloadController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Controller/DownloadController.php -------------------------------------------------------------------------------- /src/Controller/EmptyLogsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Controller/EmptyLogsController.php -------------------------------------------------------------------------------- /src/Controller/LogViewerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Controller/LogViewerController.php -------------------------------------------------------------------------------- /src/Controller/ScheduledCommandExecuteImmediateController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Controller/ScheduledCommandExecuteImmediateController.php -------------------------------------------------------------------------------- /src/DataRetriever/LogDataRetriever.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/DataRetriever/LogDataRetriever.php -------------------------------------------------------------------------------- /src/DependencyInjection/SynoliaSyliusSchedulerCommandExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/DependencyInjection/SynoliaSyliusSchedulerCommandExtension.php -------------------------------------------------------------------------------- /src/DoctrineEvent/ScheduledCommandPostRemoveEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/DoctrineEvent/ScheduledCommandPostRemoveEvent.php -------------------------------------------------------------------------------- /src/Entity/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Entity/Command.php -------------------------------------------------------------------------------- /src/Entity/CommandInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Entity/CommandInterface.php -------------------------------------------------------------------------------- /src/Entity/ScheduledCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Entity/ScheduledCommand.php -------------------------------------------------------------------------------- /src/Entity/ScheduledCommandInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Entity/ScheduledCommandInterface.php -------------------------------------------------------------------------------- /src/Enum/ScheduledCommandStateEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Enum/ScheduledCommandStateEnum.php -------------------------------------------------------------------------------- /src/EventSubscriber/ConsoleSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/EventSubscriber/ConsoleSubscriber.php -------------------------------------------------------------------------------- /src/Fixture/SchedulerCommandFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Fixture/SchedulerCommandFixture.php -------------------------------------------------------------------------------- /src/Form/CommandChoiceType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Form/CommandChoiceType.php -------------------------------------------------------------------------------- /src/Form/CommandType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Form/CommandType.php -------------------------------------------------------------------------------- /src/Form/ScheduledCommandType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Form/ScheduledCommandType.php -------------------------------------------------------------------------------- /src/Grid/FieldType/DatetimeFieldType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Grid/FieldType/DatetimeFieldType.php -------------------------------------------------------------------------------- /src/Grid/FieldType/ScheduledCommandExecutionTimeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Grid/FieldType/ScheduledCommandExecutionTimeType.php -------------------------------------------------------------------------------- /src/Grid/FieldType/ScheduledCommandHumanReadableExpressionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Grid/FieldType/ScheduledCommandHumanReadableExpressionType.php -------------------------------------------------------------------------------- /src/Grid/FieldType/ScheduledCommandStateType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Grid/FieldType/ScheduledCommandStateType.php -------------------------------------------------------------------------------- /src/Grid/FieldType/ScheduledCommandUrlType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Grid/FieldType/ScheduledCommandUrlType.php -------------------------------------------------------------------------------- /src/Humanizer/CronExpressionHumanizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Humanizer/CronExpressionHumanizer.php -------------------------------------------------------------------------------- /src/Humanizer/HumanizerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Humanizer/HumanizerInterface.php -------------------------------------------------------------------------------- /src/Listener/Grid/GoToCommandsButtonGridListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Listener/Grid/GoToCommandsButtonGridListener.php -------------------------------------------------------------------------------- /src/Listener/Grid/GoToHistoryButtonGridListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Listener/Grid/GoToHistoryButtonGridListener.php -------------------------------------------------------------------------------- /src/Menu/AdminMenuListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Menu/AdminMenuListener.php -------------------------------------------------------------------------------- /src/Parser/CommandParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Parser/CommandParser.php -------------------------------------------------------------------------------- /src/Parser/CommandParserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Parser/CommandParserInterface.php -------------------------------------------------------------------------------- /src/Planner/ScheduledCommandPlanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Planner/ScheduledCommandPlanner.php -------------------------------------------------------------------------------- /src/Planner/ScheduledCommandPlannerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Planner/ScheduledCommandPlannerInterface.php -------------------------------------------------------------------------------- /src/Provider/CalendarWithTimezone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Provider/CalendarWithTimezone.php -------------------------------------------------------------------------------- /src/Repository/CommandRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Repository/CommandRepository.php -------------------------------------------------------------------------------- /src/Repository/CommandRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Repository/CommandRepositoryInterface.php -------------------------------------------------------------------------------- /src/Repository/ScheduledCommandRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Repository/ScheduledCommandRepository.php -------------------------------------------------------------------------------- /src/Repository/ScheduledCommandRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Repository/ScheduledCommandRepositoryInterface.php -------------------------------------------------------------------------------- /src/Runner/ScheduleCommandRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Runner/ScheduleCommandRunner.php -------------------------------------------------------------------------------- /src/Runner/ScheduleCommandRunnerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Runner/ScheduleCommandRunnerInterface.php -------------------------------------------------------------------------------- /src/SynoliaSyliusSchedulerCommandPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/SynoliaSyliusSchedulerCommandPlugin.php -------------------------------------------------------------------------------- /src/Twig/BytesFormatterExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Twig/BytesFormatterExtension.php -------------------------------------------------------------------------------- /src/Validator/LogfilePrefixPropertyValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Validator/LogfilePrefixPropertyValidator.php -------------------------------------------------------------------------------- /src/Validator/LogfilePropertyValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Validator/LogfilePropertyValidator.php -------------------------------------------------------------------------------- /src/Voter/IsDueVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Voter/IsDueVoter.php -------------------------------------------------------------------------------- /src/Voter/IsDueVoterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/src/Voter/IsDueVoterInterface.php -------------------------------------------------------------------------------- /templates/Controller/css.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/templates/Controller/css.html.twig -------------------------------------------------------------------------------- /templates/Controller/js.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/templates/Controller/js.html.twig -------------------------------------------------------------------------------- /templates/Controller/modal.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/templates/Controller/modal.html.twig -------------------------------------------------------------------------------- /templates/Controller/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/templates/Controller/show.html.twig -------------------------------------------------------------------------------- /templates/Grid/Action/empty_log_file.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/templates/Grid/Action/empty_log_file.html.twig -------------------------------------------------------------------------------- /templates/Grid/Action/empty_logs_file.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/templates/Grid/Action/empty_logs_file.html.twig -------------------------------------------------------------------------------- /templates/Grid/Action/execute_immediate.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/templates/Grid/Action/execute_immediate.html.twig -------------------------------------------------------------------------------- /templates/Grid/Action/link.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/templates/Grid/Action/link.html.twig -------------------------------------------------------------------------------- /templates/Grid/Column/human_readable_expression.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/templates/Grid/Column/human_readable_expression.html.twig -------------------------------------------------------------------------------- /templates/Grid/Column/js.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/templates/Grid/Column/js.html.twig -------------------------------------------------------------------------------- /templates/Grid/Column/log_file.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/templates/Grid/Column/log_file.html.twig -------------------------------------------------------------------------------- /templates/Grid/Column/scheduled_command_state.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/templates/Grid/Column/scheduled_command_state.html.twig -------------------------------------------------------------------------------- /translations/messages.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/translations/messages.en.yml -------------------------------------------------------------------------------- /translations/messages.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/translations/messages.fr.yml -------------------------------------------------------------------------------- /translations/messages.nl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/translations/messages.nl.yml -------------------------------------------------------------------------------- /translations/validators.en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/translations/validators.en.yaml -------------------------------------------------------------------------------- /translations/validators.fr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synolia/SyliusSchedulerCommandPlugin/HEAD/translations/validators.fr.yaml --------------------------------------------------------------------------------