From b5f252cd544e02d5c67ee4084c8be5ddee93884c Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Wed, 7 Oct 2020 18:32:50 +0200 Subject: [PATCH] add methods [row|column][Start|End]() --- views/bootstrap/class.Bootstrap.php | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/views/bootstrap/class.Bootstrap.php b/views/bootstrap/class.Bootstrap.php index 017dcce7b..7b5261b5b 100644 --- a/views/bootstrap/class.Bootstrap.php +++ b/views/bootstrap/class.Bootstrap.php @@ -903,6 +903,26 @@ background-image: linear-gradient(to bottom, #882222, #111111);; return; } /* }}} */ + function rowStart() { /* {{{ */ + echo "
\n"; + return; + } /* }}} */ + + function rowEnd() { /* {{{ */ + echo "
\n"; + return; + } /* }}} */ + + function columnStart($width=6) { /* {{{ */ + echo "
\n"; + return; + } /* }}} */ + + function columnEnd() { /* {{{ */ + echo "
\n"; + return; + } /* }}} */ + function formField($title, $value, $params=array()) { /* {{{ */ if($title !== null) { echo "
";