You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
VMBindraban edited this page Mar 4, 2013
·
3 revisions
The SxBootstap alert view helper shows a alert made with the twitter bootstrap.
The following syntax builds the alert.
<?phpecho$this->sxbAlert($string);
?>
Explicit usage
<?php// additional parameters: isBlock and classecho$this->sxbAlert('This is an alert', true, 'alert-warning');
// class types: info, error, success, warningecho$this->sxbAlert()->success('This is an alert');
// explicit additional parameters: isBlock echo$this->sxbAlert()->warning('This is an alert', true);
?>