Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class MyForm
- {
- // public $onSuccess = [];
- public $onSomeAction = [];
- public function __construct()
- {
- parent::__construct();
- // $this->addText();
- $this->onSuccess[] = function () {
- $this->onSomeAction($this);
- }
- }
- }
- $form = new MyForm;
- $form->onSuccess[] = function () {
- $this->redirect();
- };
Advertisement
Add Comment
Please, Sign In to add comment