This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class ResultMessages extends Object { | |
| const TYPE_INFO = "info"; | |
| const TYPE_WARNING = "warning"; | |
| const TYPE_ERROR = "error"; | |
| /** array(message, type, error-persistent) */ | |
| protected $messages = array(); | |
| protected $data = null; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * @author Daniel Robenek | |
| * @license MIT | |
| * @since 2011 | |
| */ | |
| namespace Debug; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * @author Daniel Robenek | |
| * @license MIT | |
| * @since 2011 | |
| */ | |
| /** | |
| Presenter: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| use Nette\Application\Presenter; | |
| use Nette\Application\AppForm; | |
| use Nette\Forms\Form; | |
| use DependentSelectBox\DependentSelectBox; | |
| use DependentSelectBox\JsonDependentSelectBox; | |
| use Nette\Forms\FormContainer; | |
| class ExamplePresenter extends Presenter { |