hypejunction/elgg-cli
Composer 安装命令:
composer require hypejunction/elgg-cli
包简介
A set of CLI tools for Elgg
README 文档
README
Installation
Project Scope
cd /path/to/elgg/ composer require hypejunction/elgg-cli:~1.0 vendor/bin/elgg-cli --help
Global Scope
composer global require hypejunction/elgg-cli:~1.0 cd /path/to/elgg # if you have composer bin in your environment variables use the shortcut elgg-cli --help
Run Commands
cd /path/to/elgg/ # Get help vendor/bin/elgg-cli --help # List all commands vendor/bin/elgg-cli list # Install Elgg vendor/bin/elgg-cli install # Flush caches vendor/bin/elgg-cli site:flush_cache # Run upgrades vendor/bin/elgg-cli site:upgrade # Activate plugins vendor/bin/elgg-cli plugins:activate [--all] # Deactivate plugins vendor/bin/elgg-cli plugins:deactivate [--all] # Add a new user vendor/bin/elgg-cli user:add [--admin] [--notify] # Display or change site URL vendor/bin/elgg-cli site:url <new_url> # Display or change root path vendor/bin/elgg-cli config:path <new_path> # Display or change data directory path vendor/bin/elgg-cli config:dataroot <new_path> # Request a page vendor/bin/elgg-cli route <uri> <method> [--tokens] [--export] [--as] # Execute an action vendor/bin/elgg-cli action <action_name> [--as] # Run cron vendor/bin/elgg-cli route cron/run # List/search entities vendor/bin/elgg-cli entities:get [--guid] [--type] [--subtype] [--limit] [--offset] [--keyword] [--full-view]
Custom Commands
Plugins can add their commands to the CLI application, by adding command class name via
'commands','cli' hoook. Command class must extend \Symfony\Component\Console\Command\Command.
class MyCommand extends \Symfony\Component\Console\Command\Command {} elgg_register_plugin_hook_handler('commands', 'cli', function($hook, $type, $return) { $return[] = MyCommand::class; return $return; });
统计信息
- 总下载量: 629
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-2.0
- 更新时间: 2016-07-29