Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
06
/
wp-content
/
plugins
/
the-events-calendar
/
src
/
Tribe
/
Aggregator
/
CLI
:
Service_Provider.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php use TEC\Common\Contracts\Service_Provider; class Tribe__Events__Aggregator__CLI__Service_Provider extends Service_Provider { /** * Binds and sets up implementations. */ public function register() { if ( ! ( defined( 'WP_CLI' ) && WP_CLI ) ) { return; } /** * While using wp-cli PHP version will be 5.3.29 or later but this file might still be parsed from PHP 5.2 * so we must avoid PHP 5.3+ syntax here. */ WP_CLI::add_command( 'event-aggregator', 'Tribe__Events__Aggregator__CLI__Command', [ 'shortdesc' => __( 'Create, run and manage Event Aggregator imports.', 'the-events-calendar' ), 'longdesc' => __( 'If required the commands will use the API keys and licenses set for the current site.' ), ] ); } }