Split detail page contracts
This commit is contained in:
26
lib/Console/Commands/Module/AssetsSyncCommand.php
Normal file
26
lib/Console/Commands/Module/AssetsSyncCommand.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace MintyPHP\Console\Commands\Module;
|
||||
|
||||
use MintyPHP\Console\Command;
|
||||
|
||||
final class AssetsSyncCommand extends Command
|
||||
{
|
||||
public function name(): string
|
||||
{
|
||||
return 'module:assets-sync';
|
||||
}
|
||||
|
||||
public function description(): string
|
||||
{
|
||||
return 'Publish module web assets to web/modules/';
|
||||
}
|
||||
|
||||
public function execute(array $args, array $options): int
|
||||
{
|
||||
require_once __DIR__ . '/../../../../bin/module-cli-bootstrap.php';
|
||||
require_once __DIR__ . '/../../../../bin/module-assets-sync.php';
|
||||
|
||||
return moduleAssetsSyncRun();
|
||||
}
|
||||
}
|
||||
26
lib/Console/Commands/Module/BuildCommand.php
Normal file
26
lib/Console/Commands/Module/BuildCommand.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace MintyPHP\Console\Commands\Module;
|
||||
|
||||
use MintyPHP\Console\Command;
|
||||
|
||||
final class BuildCommand extends Command
|
||||
{
|
||||
public function name(): string
|
||||
{
|
||||
return 'module:build';
|
||||
}
|
||||
|
||||
public function description(): string
|
||||
{
|
||||
return 'Build runtime page root with module symlinks';
|
||||
}
|
||||
|
||||
public function execute(array $args, array $options): int
|
||||
{
|
||||
require_once __DIR__ . '/../../../../bin/module-cli-bootstrap.php';
|
||||
require_once __DIR__ . '/../../../../bin/module-build.php';
|
||||
|
||||
return moduleBuildRun();
|
||||
}
|
||||
}
|
||||
41
lib/Console/Commands/Module/DeactivateCommand.php
Normal file
41
lib/Console/Commands/Module/DeactivateCommand.php
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
namespace MintyPHP\Console\Commands\Module;
|
||||
|
||||
use MintyPHP\Console\Command;
|
||||
|
||||
final class DeactivateCommand extends Command
|
||||
{
|
||||
public function name(): string
|
||||
{
|
||||
return 'module:deactivate';
|
||||
}
|
||||
|
||||
public function description(): string
|
||||
{
|
||||
return 'Run a module\'s deactivation handler (--confirm or --dry-run)';
|
||||
}
|
||||
|
||||
public function execute(array $args, array $options): int
|
||||
{
|
||||
$moduleId = $args[0] ?? '';
|
||||
if ($moduleId === '') {
|
||||
fwrite(STDERR, "Usage: php bin/console module:deactivate <module-id> --confirm|--dry-run\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
// Rebuild global argv for the underlying script
|
||||
global $argv;
|
||||
$argv = ['module-deactivate.php', $moduleId];
|
||||
if ($options['confirm'] ?? false) {
|
||||
$argv[] = '--confirm';
|
||||
}
|
||||
if ($options['dry-run'] ?? false) {
|
||||
$argv[] = '--dry-run';
|
||||
}
|
||||
|
||||
require_once __DIR__ . '/../../../../bin/module-deactivate.php';
|
||||
|
||||
return moduleDeactivateRun();
|
||||
}
|
||||
}
|
||||
26
lib/Console/Commands/Module/MigrateCommand.php
Normal file
26
lib/Console/Commands/Module/MigrateCommand.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace MintyPHP\Console\Commands\Module;
|
||||
|
||||
use MintyPHP\Console\Command;
|
||||
|
||||
final class MigrateCommand extends Command
|
||||
{
|
||||
public function name(): string
|
||||
{
|
||||
return 'module:migrate';
|
||||
}
|
||||
|
||||
public function description(): string
|
||||
{
|
||||
return 'Apply pending module SQL migrations';
|
||||
}
|
||||
|
||||
public function execute(array $args, array $options): int
|
||||
{
|
||||
require_once __DIR__ . '/../../../../bin/module-cli-bootstrap.php';
|
||||
require_once __DIR__ . '/../../../../bin/module-migrate.php';
|
||||
|
||||
return moduleMigrateRun();
|
||||
}
|
||||
}
|
||||
26
lib/Console/Commands/Module/PermissionsSyncCommand.php
Normal file
26
lib/Console/Commands/Module/PermissionsSyncCommand.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace MintyPHP\Console\Commands\Module;
|
||||
|
||||
use MintyPHP\Console\Command;
|
||||
|
||||
final class PermissionsSyncCommand extends Command
|
||||
{
|
||||
public function name(): string
|
||||
{
|
||||
return 'module:permissions-sync';
|
||||
}
|
||||
|
||||
public function description(): string
|
||||
{
|
||||
return 'Sync module permissions to DB and deactivate orphaned ones';
|
||||
}
|
||||
|
||||
public function execute(array $args, array $options): int
|
||||
{
|
||||
require_once __DIR__ . '/../../../../bin/module-cli-bootstrap.php';
|
||||
require_once __DIR__ . '/../../../../bin/module-permissions-sync.php';
|
||||
|
||||
return modulePermissionsSyncRun();
|
||||
}
|
||||
}
|
||||
25
lib/Console/Commands/Module/RuntimeSyncCommand.php
Normal file
25
lib/Console/Commands/Module/RuntimeSyncCommand.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
namespace MintyPHP\Console\Commands\Module;
|
||||
|
||||
use MintyPHP\Console\Command;
|
||||
|
||||
final class RuntimeSyncCommand extends Command
|
||||
{
|
||||
public function name(): string
|
||||
{
|
||||
return 'module:sync';
|
||||
}
|
||||
|
||||
public function description(): string
|
||||
{
|
||||
return 'Run full module runtime sync (migrate, permissions, build, assets)';
|
||||
}
|
||||
|
||||
public function execute(array $args, array $options): int
|
||||
{
|
||||
require_once __DIR__ . '/../../../../bin/module-runtime-sync.php';
|
||||
|
||||
return moduleRuntimeSyncRun();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user