setControl($control); $this->setLabelName($labelName); } /** * Set the Control * * @param Control $control Map Info Control * @return static */ public function setControl(Control $control) { $control->checkId(); if ($control instanceof Scriptable) { $control->setScriptEvents(true); } $this->control = $control; return $this; } /** * Set the label name * * @param string $labelName Script Label name * @return static */ public function setLabelName($labelName) { $this->labelName = (string)$labelName; return $this; } /** * @see \FML\Script\Features\ScriptFeature::prepare() */ public function prepare(Script $script) { $script->appendGenericScriptLabel($this->labelName, $this->getScriptText()); return $this; } /** * Get the script text * * @return string */ protected function getScriptText() { if ($this->control) { // Control event $controlId = Builder::escapeText($this->control->getId(), true); $scriptText = " if (Event.Control.ControlId == {$controlId}) { ShowCurChallengeCard(); }"; } else { // Other $scriptText = " ShowCurChallengeCard();"; } return $scriptText; } }