class ChoiceQuestion in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Question/ChoiceQuestion.php \Symfony\Component\Console\Question\ChoiceQuestion
Represents a choice question.
@author Fabien Potencier <fabien@symfony.com>
Hierarchy
- class \Symfony\Component\Console\Question\Question
- class \Symfony\Component\Console\Question\ChoiceQuestion
Expanded class hierarchy of ChoiceQuestion
4 files declare their use of ChoiceQuestion
- QuestionHelper.php in vendor/
symfony/ console/ Helper/ QuestionHelper.php - QuestionHelperTest.php in vendor/
symfony/ console/ Tests/ Helper/ QuestionHelperTest.php - SymfonyQuestionHelper.php in vendor/
symfony/ console/ Helper/ SymfonyQuestionHelper.php - SymfonyStyle.php in vendor/
symfony/ console/ Style/ SymfonyStyle.php
File
- vendor/
symfony/ console/ Question/ ChoiceQuestion.php, line 19
Namespace
Symfony\Component\Console\QuestionView source
class ChoiceQuestion extends Question {
private $choices;
private $multiselect = false;
private $prompt = ' > ';
private $errorMessage = 'Value "%s" is invalid';
/**
* Constructor.
*
* @param string $question The question to ask to the user
* @param array $choices The list of available choices
* @param mixed $default The default answer to return
*/
public function __construct($question, array $choices, $default = null) {
parent::__construct($question, $default);
$this->choices = $choices;
$this
->setValidator($this
->getDefaultValidator());
$this
->setAutocompleterValues($choices);
}
/**
* Returns available choices.
*
* @return array
*/
public function getChoices() {
return $this->choices;
}
/**
* Sets multiselect option.
*
* When multiselect is set to true, multiple choices can be answered.
*
* @param bool $multiselect
*
* @return ChoiceQuestion The current instance
*/
public function setMultiselect($multiselect) {
$this->multiselect = $multiselect;
$this
->setValidator($this
->getDefaultValidator());
return $this;
}
/**
* Gets the prompt for choices.
*
* @return string
*/
public function getPrompt() {
return $this->prompt;
}
/**
* Sets the prompt for choices.
*
* @param string $prompt
*
* @return ChoiceQuestion The current instance
*/
public function setPrompt($prompt) {
$this->prompt = $prompt;
return $this;
}
/**
* Sets the error message for invalid values.
*
* The error message has a string placeholder (%s) for the invalid value.
*
* @param string $errorMessage
*
* @return ChoiceQuestion The current instance
*/
public function setErrorMessage($errorMessage) {
$this->errorMessage = $errorMessage;
$this
->setValidator($this
->getDefaultValidator());
return $this;
}
/**
* Returns the default answer validator.
*
* @return callable
*/
private function getDefaultValidator() {
$choices = $this->choices;
$errorMessage = $this->errorMessage;
$multiselect = $this->multiselect;
$isAssoc = $this
->isAssoc($choices);
return function ($selected) use ($choices, $errorMessage, $multiselect, $isAssoc) {
// Collapse all spaces.
$selectedChoices = str_replace(' ', '', $selected);
if ($multiselect) {
// Check for a separated comma values
if (!preg_match('/^[a-zA-Z0-9_-]+(?:,[a-zA-Z0-9_-]+)*$/', $selectedChoices, $matches)) {
throw new \InvalidArgumentException(sprintf($errorMessage, $selected));
}
$selectedChoices = explode(',', $selectedChoices);
}
else {
$selectedChoices = array(
$selected,
);
}
$multiselectChoices = array();
foreach ($selectedChoices as $value) {
$results = array();
foreach ($choices as $key => $choice) {
if ($choice === $value) {
$results[] = $key;
}
}
if (count($results) > 1) {
throw new \InvalidArgumentException(sprintf('The provided answer is ambiguous. Value should be one of %s.', implode(' or ', $results)));
}
$result = array_search($value, $choices);
if (!$isAssoc) {
if (false !== $result) {
$result = $choices[$result];
}
elseif (isset($choices[$value])) {
$result = $choices[$value];
}
}
elseif (false === $result && isset($choices[$value])) {
$result = $value;
}
if (false === $result) {
throw new \InvalidArgumentException(sprintf($errorMessage, $value));
}
$multiselectChoices[] = (string) $result;
}
if ($multiselect) {
return $multiselectChoices;
}
return current($multiselectChoices);
};
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ChoiceQuestion:: |
private | property | ||
ChoiceQuestion:: |
private | property | ||
ChoiceQuestion:: |
private | property | ||
ChoiceQuestion:: |
private | property | ||
ChoiceQuestion:: |
public | function | Returns available choices. | |
ChoiceQuestion:: |
private | function | Returns the default answer validator. | |
ChoiceQuestion:: |
public | function | Gets the prompt for choices. | |
ChoiceQuestion:: |
public | function | Sets the error message for invalid values. | |
ChoiceQuestion:: |
public | function | Sets multiselect option. | |
ChoiceQuestion:: |
public | function | Sets the prompt for choices. | |
ChoiceQuestion:: |
public | function |
Constructor. Overrides Question:: |
|
Question:: |
private | property | ||
Question:: |
private | property | ||
Question:: |
private | property | ||
Question:: |
private | property | ||
Question:: |
private | property | ||
Question:: |
private | property | ||
Question:: |
private | property | ||
Question:: |
private | property | ||
Question:: |
public | function | Gets values for the autocompleter. | |
Question:: |
public | function | Returns the default answer. | |
Question:: |
public | function | Gets the maximum number of attempts. | |
Question:: |
public | function | Gets the normalizer for the response. | |
Question:: |
public | function | Returns the question. | |
Question:: |
public | function | Gets the validator for the question. | |
Question:: |
protected | function | ||
Question:: |
public | function | Returns whether the user response must be hidden. | |
Question:: |
public | function | In case the response can not be hidden, whether to fallback on non-hidden question or not. | |
Question:: |
public | function | Sets values for the autocompleter. | |
Question:: |
public | function | Sets whether the user response must be hidden or not. | |
Question:: |
public | function | Sets whether to fallback on non-hidden question if the response can not be hidden. | |
Question:: |
public | function | Sets the maximum number of attempts. | |
Question:: |
public | function | Sets a normalizer for the response. | |
Question:: |
public | function | Sets a validator for the question. |