本文整理汇总了PHP中WP_CLI::root方法的典型用法代码示例。如果您正苦于以下问题:PHP WP_CLI::root方法的具体用法?PHP WP_CLI::root怎么用?PHP WP_CLI::root使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WP_CLI
的用法示例。
在下文中一共展示了WP_CLI::root方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: generate_man
WP_CLI::line("PHP binary:\t" . $php_bin);
WP_CLI::line("PHP version:\t" . PHP_VERSION);
WP_CLI::line("php.ini used:\t" . get_cfg_var('cfg_file_path'));
WP_CLI::line("wp-cli root:\t" . WP_CLI_ROOT);
WP_CLI::line("wp-cli version:\t" . WP_CLI_VERSION);
}
private static function generate_man($args)
{
$command = Dispatcher\traverse($args);
if (!$command) {
WP_CLI::error(sprintf("'%s' command not found."));
}
foreach (self::$man_dirs as $dest_dir => $src_dir) {
\WP_CLI\Man\generate($src_dir, $dest_dir, $command);
}
}
private static function render_automcomplete()
{
foreach (self::$root->get_subcommands() as $name => $command) {
$subcommands = $command->get_subcommands();
self::line($name . ' ' . implode(' ', array_keys($subcommands)));
}
}
// back-compat
static function addCommand($name, $class)
{
self::add_command($name, $class);
}
}
WP_CLI::$root = new Dispatcher\RootCommand();