illagrenan/nette-bootstrap-alert-control

Nette komponenta pro výpis Twitter Bootstrap alertů

v0.0.1 2013-03-25 11:25 UTC

This package is not auto-updated.

Last update: 2024-04-13 11:20:34 UTC


README

Licence: MIT

{
	"require": {
	    "illagrenan/nette-bootstrap-alert-control": "dev-master"
	}
}

Závislosti:

Použití

Vytvoření komponenty v presenteru

<?php
protected function createComponentTWAlerts($name)
{
        
        $twAlerts = new \Illagrenan\BootstrapAlert\BootstrapAlert($this, $name);
        return $twAlerts;
}
?>

Použití v šabloně

{* Bude vykresleno jako blok *}
{widget tWAlerts "Na druhou kolej přijel osobní vlak z Pardubic", "Upozornění pro cestující", \Illagrenan\BootstrapAlert\AlertType::INFO()}

{* Vykreslíme inline s defaultním stylem "Warning" *}
{widget tWAlerts "Natala neznámá chyba"}