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
·
2 revisions
The SxBootstap code view helper shows a code made with the twitter bootstrap.
The following syntax builds the code. If given parameter is multilined, the code block turns into a pre block.
<?phpecho$this->sxbCode($string);
?>
Explicit usage
<?php// code blockecho$this->sxbCode('Display a code block here');
// pre blockecho$this->sxbCode(
'Display a code block here, also display it on the second line.'
);
?>