We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For now, I'm using something like:
class ExtenfionForm extends Form { private $childIndex; private $childControl; public function addChild(string $name, string $label, UI\Control $control, boolean $stretchy=NULL) { $this->childIndex[$name] = $this->append($label, $control, $stretchy ?? false); $this->childControl[$name] = $control; } public function getChild(string $name) { return ($this->childControl[$name] ?? NULL); } }
Perhaps we need something simpler.
The text was updated successfully, but these errors were encountered:
This is possible without any additional upstream change, we could do this.
Sorry, something went wrong.
No branches or pull requests
For now, I'm using something like:
Perhaps we need something simpler.
The text was updated successfully, but these errors were encountered: