From e7920de7be5acd78b7e6bfd741231ddc25de91ee Mon Sep 17 00:00:00 2001 From: Diego Najar Date: Thu, 1 Nov 2018 20:21:36 -0300 Subject: [PATCH] bug fixes, Bootstrap class doesnt show the proper label --- bl-kernel/admin/themes/booty/init.php | 31 ++------------------------- 1 file changed, 2 insertions(+), 29 deletions(-) diff --git a/bl-kernel/admin/themes/booty/init.php b/bl-kernel/admin/themes/booty/init.php index 2859f202..d3a6f0fb 100644 --- a/bl-kernel/admin/themes/booty/init.php +++ b/bl-kernel/admin/themes/booty/init.php @@ -106,7 +106,7 @@ EOF; $disabled = empty($args['disabled'])?'':'disabled'; $placeholder = isset($args['placeholder'])?$args['placeholder']:''; $value = isset($args['value'])?$args['value']:''; - + $id = 'js'.$name; if (isset($args['id'])) { $id = $args['id']; @@ -216,33 +216,6 @@ EOF; return $html; } - public static function formInputGroupText($args) - { - $label = $args['label']; - $labelInside = $args['labelInside']; - $tip = $args['tip']; - $value = $args['value']; - $name = $args['name']; - $id = 'js'.$name; - if (isset($args['id'])) { - $id = $args['id']; - } - $disabled = isset($args['disabled'])?'disabled':''; - -return << - -
-
- $labelInside -
- -
- $tip - -EOF; - } - public static function formInputText($args) { $name = $args['name']; @@ -262,7 +235,7 @@ EOF; $label = ''; if (isset($args['label'])) { - $label = ''; + $label = ''; } $class = 'form-control';