forked from Sylius/Sylius-Standard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
62 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Sylius package. | ||
* | ||
* (c) Sylius Sp. z o.o. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace App\Console\Command; | ||
|
||
use Symfony\Component\Console\Attribute\AsCommand; | ||
use Symfony\Component\Console\Command\Command; | ||
use Symfony\Component\Console\Input\InputInterface; | ||
use Symfony\Component\Console\Output\OutputInterface; | ||
use Symfony\Component\Console\Style\SymfonyStyle; | ||
|
||
#[AsCommand( | ||
name: 'sylius:show-plus-info', | ||
description: 'Shows information about Sylius Plus and Sylius Store', | ||
)] | ||
final class ShowPlusInfoCommand extends Command | ||
{ | ||
private const SYLIUS_PLUS_URL = 'https://sylius.com/plus/'; | ||
|
||
private const SYLIUS_STORE_URL = 'https://store.sylius.com/'; | ||
|
||
protected function execute(InputInterface $input, OutputInterface $output): int | ||
{ | ||
$io = new SymfonyStyle($input, $output); | ||
|
||
$io->section('Sylius Plus'); | ||
$io->writeln('<comment>Consists of modules: </comment>'); | ||
$io->listing($this->getPlusModules()); | ||
$io->writeln('<comment>For more information visit: </comment> <href=' . self::SYLIUS_PLUS_URL . '>' . self::SYLIUS_PLUS_URL . '</>'); | ||
|
||
$io->section('Sylius Store'); | ||
$io->writeln('<comment>A wide range of community plugins both open source and licensed</comment> <href=' . self::SYLIUS_STORE_URL . '>' . self::SYLIUS_STORE_URL . '</>'); | ||
|
||
return Command::SUCCESS; | ||
} | ||
|
||
private function getPlusModules(): array | ||
Check failure on line 47 in src/Console/Command/ShowPlusInfoCommand.php GitHub Actions / PHP 8.1, Symfony ^5.4, MySQL 8.3, Node 20.x
Check failure on line 47 in src/Console/Command/ShowPlusInfoCommand.php GitHub Actions / PHP 8.1, Symfony ^6.4, MySQL 8.3, Node 20.x
Check failure on line 47 in src/Console/Command/ShowPlusInfoCommand.php GitHub Actions / PHP 8.2, Symfony ^5.4, MySQL 8.3, Node 20.x
|
||
{ | ||
return [ | ||
'<info>B2B Suite</info>', | ||
'<info>Marketplace Suite</info>', | ||
'<info>Advanced Multi-store</info>', | ||
'<info>Returns Management (RMA)</info>', | ||
'<info>Multi-source Inventory</info>', | ||
'<info>Loyalty system</info>', | ||
'<info>RBAC (Role-Based Access Control)</info>', | ||
'<info>Partial Shipment</info>', | ||
'<info>One page checkout</info>', | ||
]; | ||
} | ||
} |