Skip to content
New issue

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

TextBase support mixed as value #178

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Conversation

milous
Copy link
Contributor

@milous milous commented Apr 20, 2018

  • bug fix? no
  • new feature? yes
  • BC break? no

adds support for

// class without __toString method
final class User {
  // ..
}

$repo = function(string $userName): ?User {
   return new User;
}

$form = new Nette\Forms\Form;
$form->addText('user', 'Username')
  ->addFilter(function (string $userName) use ($repo) {
    return new Nette\Forms\ScalarValue($userName, $repo($userName)));
  } )
;

$form->onSuccess[] = function(Nette\Forms\Form $form, array $values): void {
  $values['user'] instanceof User || null;
};

@dg dg force-pushed the master branch 2 times, most recently from 2df07d6 to 82e9980 Compare February 11, 2019 11:33
@dg dg force-pushed the master branch 3 times, most recently from 4876961 to b8d3a7c Compare July 8, 2019 09:58
@dg dg force-pushed the master branch 4 times, most recently from 41ff307 to f03a237 Compare November 19, 2019 15:43
@dg dg force-pushed the master branch 2 times, most recently from 341ed9a to 97e6400 Compare December 11, 2019 19:43
@dg dg force-pushed the master branch 3 times, most recently from 9d62255 to ec59537 Compare January 2, 2020 16:48
@dg dg force-pushed the master branch 2 times, most recently from 21f7326 to 35f9b84 Compare March 9, 2020 10:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants