Minor - update UI

1.10.x
Julio Montoya 10 years ago
parent 93d2bd5f6c
commit fab006e0d4
  1. 5
      main/inc/lib/display.lib.php
  2. 4
      main/inc/lib/formvalidator/Element/DatePicker.php
  3. 4
      main/inc/lib/formvalidator/Element/DateTimePicker.php

@ -1758,7 +1758,7 @@ class Display
* @param string $type
* @return string
*/
public static function label($content, $type = null)
public static function label($content, $type = 'default')
{
$class = '';
switch ($type) {
@ -1777,6 +1777,9 @@ class Display
case 'inverse':
$class = 'label-inverse';
break;
default:
$class = 'label-default';
break;
}
$html = '';

@ -2,7 +2,7 @@
/* For licensing terms, see /license.txt */
/**
* Form element to select a date and hour (with popup datepicker)
* Form element to select a date.
*
* Class DatePicker
*/
@ -18,7 +18,7 @@ class DatePicker extends HTML_QuickForm_text
if (!isset($attributes['id'])) {
$attributes['id'] = $elementName;
}
//$attributes['class'] = '';
$attributes['class'] = 'form-control';
HTML_QuickForm_element::HTML_QuickForm_element($elementName, $elementLabel, $attributes);
$this->_appendName = true;

@ -2,7 +2,7 @@
/* For licensing terms, see /license.txt */
/**
* Form element to select a date and hour (with popup datepicker)
* Form element to select a date and hour.
*/
class DateTimePicker extends HTML_QuickForm_text
{
@ -14,7 +14,7 @@ class DateTimePicker extends HTML_QuickForm_text
if (!isset($attributes['id'])) {
$attributes['id'] = $elementName;
}
$attributes['class'] = 'form-control';
HTML_QuickForm_element::HTML_QuickForm_element($elementName, $elementLabel, $attributes);
$this->_appendName = true;
$this->_type = 'date_time_picker';

Loading…
Cancel
Save