You are here

class UpdateCommand in CKEditor Media Embed Plugin 8

Same name in this branch
  1. 8 src/Command/UpdateCommand.php \Drupal\ckeditor_media_embed\Command\UpdateCommand
  2. 8 src/Command/Drush/UpdateCommand.php \Drupal\ckeditor_media_embed\Command\Drush\UpdateCommand

Class UpdateCommand.

@package Drupal\ckeditor_media_embed

@DrupalCommand ( extension="ckeditor_media_embed", extensionType="module" )

Hierarchy

Expanded class hierarchy of UpdateCommand

1 string reference to 'UpdateCommand'
console.services.yml in ./console.services.yml
console.services.yml
1 service uses UpdateCommand
ckeditor_media_embed_update in ./console.services.yml
Drupal\ckeditor_media_embed\Command\UpdateCommand

File

src/Command/UpdateCommand.php, line 18

Namespace

Drupal\ckeditor_media_embed\Command
View source
class UpdateCommand extends InstallCommand {

  /**
   * {@inheritdoc}
   */
  protected function configure() {
    $this
      ->setName('ckeditor_media_embed:update')
      ->setDescription($this
      ->trans('commands.ckeditor_media_embed.update.description'));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
InstallCommand::$cliCommands protected property The CKEditor Media Embed CLI Commands service.
InstallCommand::comment public function Output message in comment style. Overrides CKEditorCliCommandInterface::comment
InstallCommand::confirmation public function Present confirmation question to user. Overrides CKEditorCliCommandInterface::confirmation
InstallCommand::execute protected function
InstallCommand::getInput public function Retrieve the command input service. Overrides CKEditorCliCommandInterface::getInput
InstallCommand::getIo public function Retrieve the i/o style. Overrides CKEditorCliCommandInterface::getIo
InstallCommand::getMessage public function Retrieve message text. Overrides CKEditorCliCommandInterface::getMessage
InstallCommand::__construct public function
UpdateCommand::configure protected function Overrides InstallCommand::configure