You are here

function ConfigPartialExportCommands::_user_abort in Config Partial Export 8

Parameters

null $msg:

Return value

bool

1 call to ConfigPartialExportCommands::_user_abort()
ConfigPartialExportCommands::configPartialExport in src/Commands/ConfigPartialExportCommands.php
Command description here.

File

src/Commands/ConfigPartialExportCommands.php, line 263

Class

ConfigPartialExportCommands
Defines Drush commands for the Search API.

Namespace

Drupal\config_partial_export\Commands

Code

function _user_abort($msg = NULL) {
  drush_set_context('DRUSH_USER_ABORT', TRUE);
  $this
    ->logger()
    ->info($msg ? $msg : dt('Aborting.'));
  return FALSE;
}