mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-12 20:51:30 +00:00
add methods [row|column][Start|End]()
This commit is contained in:
parent
b509696715
commit
b5f252cd54
|
@ -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\">";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user