public function WSCall::getOptions in Web Service Data 2.0.x
Same name and namespace in other branches
- 8 src/Entity/WSCall.php \Drupal\wsdata\Entity\WSCall::getOptions()
Return the active options.
Overrides WSCallInterface::getOptions
2 calls to WSCall::getOptions()
- WSCall::call in src/
Entity/ WSCall.php - Make the web service call.
- WSCall::getReplacements in src/
Entity/ WSCall.php - Get the available replacement tokens.
File
- src/
Entity/ WSCall.php, line 289
Class
- WSCall
- Defines the Web Service Call entity.
Namespace
Drupal\wsdata\EntityCode
public function getOptions() {
return isset($this->options[$this->wsserver]) ? $this->options[$this->wsserver] : [];
}