mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-16 14:33:14 +00:00
14 lines
536 B
PHP
14 lines
536 B
PHP
<?php
|
|
|
|
// This file is automatically generated, please do not edit it.
|
|
// To update configuration, use bin/setup plugins:* commands.
|
|
|
|
use Alchemy\Phrasea\CLI;
|
|
|
|
return call_user_func(function (CLI $cli) {
|
|
$app = $cli; if ($app['plugins.manager']->isEnabled('web-gallery-plugin')) {
|
|
$cli->command(Alchemy\WebGallery\Command\InstallCommand::create()); $cli->command(Alchemy\WebGallery\Command\UninstallCommand::create()); $cli->command(Alchemy\WebGallery\Command\UpdateCommand::create()); }
|
|
|
|
return $cli;
|
|
}, $cli);
|