芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/optimyar/wp-content/plugins/ithemes-security-pro/pro/wp-cli/map.php
* : The latitude coordinate. * * --long=
* : The longitude coordinate. * * [--
=
] * : Additional configuration options. */ public function get( $args, $assoc_args ) { $map = ITSEC_Lib_Static_Map_API::get_map( $assoc_args ); if ( is_wp_error( $map ) ) { WP_CLI::error( $map ); } WP_CLI::success( 'Retrieved Map: ' . $map ); } } WP_CLI::add_command( 'itsec map', 'ITSEC_Map_Command', array( 'before_invoke' => function () { require_once( ITSEC_Core::get_core_dir() . 'lib/class-itsec-lib-static-map-api.php' ); } ) );