Skip to content

Commit

Permalink
Prompt from base class
Browse files Browse the repository at this point in the history
  • Loading branch information
chapcz authored Jan 11, 2017
1 parent 1906def commit d989d19
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/Controls/NotTranslatableSelectBox.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,6 @@ class NotTranslatableSelectBox extends Nette\Forms\Controls\SelectBox
*/
private $options = [];

/**
* @var mixed
*/
private $prompt = FALSE;


/**
* We have to repeat that method in our class due to parent::$options property accesibility
* Otherwise we would be working with BaseControl::$options
Expand Down Expand Up @@ -58,7 +52,7 @@ public function setItems(array $items, $useKeys = TRUE)
*/
public function getControl()
{
$items = $this->prompt === FALSE ? array() : array('' => $this->translate($this->prompt));
$items = $this->getPrompt() === FALSE ? array() : array('' => $this->translate($this->getPrompt()));
foreach ($this->options as $key => $value) {
$items[is_array($value) ? $key : $key] = $value;
}
Expand Down

0 comments on commit d989d19

Please sign in to comment.