You are here

protected function SalesforceMappingCommandsBase::interactPushMappings in Salesforce Suite 8.3

Same name and namespace in other branches
  1. 8.4 modules/salesforce_mapping/src/Commands/SalesforceMappingCommandsBase.php \Drupal\salesforce_mapping\Commands\SalesforceMappingCommandsBase::interactPushMappings()
  2. 5.0.x modules/salesforce_mapping/src/Commands/SalesforceMappingCommandsBase.php \Drupal\salesforce_mapping\Commands\SalesforceMappingCommandsBase::interactPushMappings()

Collect a salesforce mapping name, and set it to a "name" argument.

2 calls to SalesforceMappingCommandsBase::interactPushMappings()
SalesforcePushCommands::interactPushQueue in modules/salesforce_push/src/Commands/SalesforcePushCommands.php
Collect a mapping interactively.
SalesforcePushCommands::interactPushUnmapped in modules/salesforce_push/src/Commands/SalesforcePushCommands.php
Collect a mapping interactively.

File

modules/salesforce_mapping/src/Commands/SalesforceMappingCommandsBase.php, line 92

Class

SalesforceMappingCommandsBase
Shared command base for Salesforce Drush commands.

Namespace

Drupal\salesforce_mapping\Commands

Code

protected function interactPushMappings(Input $input, Output $output, $message = 'Choose a Salesforce mapping', $allOption = FALSE) {
  return $this
    ->interactMapping($input, $output, $message, $allOption, 'push');
}