add methods [row|column][Start|End]()

This commit is contained in:
Uwe Steinmann 2020-10-07 18:32:50 +02:00
parent b509696715
commit b5f252cd54

View File

@ -903,6 +903,26 @@ background-image: linear-gradient(to bottom, #882222, #111111);;
return; return;
} /* }}} */ } /* }}} */
function rowStart() { /* {{{ */
echo "<div class=\"row-fluid\">\n";
return;
} /* }}} */
function rowEnd() { /* {{{ */
echo "</div>\n";
return;
} /* }}} */
function columnStart($width=6) { /* {{{ */
echo "<div class=\"span".$width."\">\n";
return;
} /* }}} */
function columnEnd() { /* {{{ */
echo "</div>\n";
return;
} /* }}} */
function formField($title, $value, $params=array()) { /* {{{ */ function formField($title, $value, $params=array()) { /* {{{ */
if($title !== null) { if($title !== null) {
echo "<div class=\"control-group\">"; echo "<div class=\"control-group\">";