drago-ex / application
Extension for Nette Framework, providing reusable UI components, alert types, and flash message handling.
Installs: 3 019
Dependents: 3
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >=8.3 <9
- nette/application: ^3.1
- nette/di: ^3.1
- nette/forms: ^3.1
- nette/security: ^3.1
- nette/utils: ^4.0
Requires (Dev)
- nette/bootstrap: ^3.2
- nette/tester: ^2.5
- phpstan/phpstan-nette: ^1.2.9
- tracy/tracy: ^2.10
README
The Drago Extension is a package built on top of the Nette Framework, designed to provide several useful components for your web applications. Below are the classes in the extension and how you can use them.
Technology
- PHP 8.3 or higher
- composer
Installation
composer require drago-ex/application
Check if there is a pair signal receiver and name (default is edit).
$this->getSignal();
Is AJAX request?
Shorter method in control.
$this->isAjax();
Retrieves a form component by its name.
$form = $this['factory']; $submitButton = $this->getFormComponent($form, 'submit'); $submitButton->setCaption('Edit');
Base template class extending Nette Template.
It is used in the bow of presenters or control
/** * @property-read Drago\Application\UI\ExtraTemplate $template */ class Presenter {}
In Latte, we will use these macros to insert into the template, which will tell us the variables and types that can be used by default in the template.
{templateType Drago\Application\UI\ExtraTemplate} {varType Drago\Application\UI\Flashes[] $flashes} <div n:foreach="$flashes as $flash" n:class="flash, $flash->type">{$flash->message}</div>