Skip to content

Commit

Permalink
Merge pull request #3 from chapcz/patch-1
Browse files Browse the repository at this point in the history
Prompt from base class
  • Loading branch information
paveljanda authored Jan 12, 2017
2 parents 1906def + d989d19 commit 5217fa5
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 5217fa5

Please sign in to comment.