Feature #272 - PEAR, HTML_QuickForm_advmultiselect class: Prepararion for upgrade. The current version is 0.5.1.

skala
Ivan Tcholakov 15 years ago
parent af65b48160
commit 6d3d6baa00
  1. 22
      main/inc/lib/pear/HTML/QuickForm/advmultiselect.php
  2. 2
      main/inc/lib/pear/HTML/QuickForm/date.php

@ -19,7 +19,7 @@
* @author Laurent Laville <pear@laurent-laville.org>
* @copyright 1997-2005 The PHP Group
* @license http://www.php.net/license/3_0.txt PHP License 3.0
* @version CVS: $Id: advmultiselect.php 20028 2009-04-23 19:32:35Z cfasanando $
* @version CVS: $Id: advmultiselect.php,v 1.5 2005/08/05 14:02:43 farell Exp $
* @link http://pear.php.net/package/HTML_QuickForm_advmultiselect
*/
@ -330,6 +330,7 @@ class HTML_QuickForm_advmultiselect extends HTML_QuickForm_select
case 'add':
if (is_null($attributes)) {
$this->_addButtonAttributes = array('name' => 'add',
'value' => ' >> ',
'type' => 'button'
);
} else {
@ -341,6 +342,7 @@ class HTML_QuickForm_advmultiselect extends HTML_QuickForm_select
case 'remove':
if (is_null($attributes)) {
$this->_removeButtonAttributes = array('name' => 'remove',
'value' => ' << ',
'type' => 'button'
);
} else {
@ -440,9 +442,12 @@ class HTML_QuickForm_advmultiselect extends HTML_QuickForm_select
if ($raw !== true) {
$css = '<style type="text/css">' . PHP_EOL
// Modified by Chamilo team, 16-MAR-2010.
//. '<!--' . $css . '// -->' . PHP_EOL
. '/*<![CDATA[*/' . PHP_EOL
. $css . PHP_EOL
. '/*]]>*/' . PHP_EOL
//
. '</style>';
}
return $css;
@ -563,14 +568,17 @@ class HTML_QuickForm_advmultiselect extends HTML_QuickForm_select
// The 'unselected' multi-select which appears on the left
$strHtmlUnselected = "<select$attrUnselected>". PHP_EOL;
// Added by Chamilo team, 16-MAR-2010.
if (is_array($arrHtmlUnselected) && count($arrHtmlUnselected) > 0) {
foreach ($arrHtmlUnselected as $data) {
$strHtmlUnselected .= $tabs . $tab
. '<option' . $this->_getAttrString($data['attr']) . '>'
. $data['text'] . '</option>' . PHP_EOL;
}
//
foreach ($arrHtmlUnselected as $data) {
$strHtmlUnselected .= $tabs . $tab
. '<option' . $this->_getAttrString($data['attr']) . '>'
. $data['text'] . '</option>' . PHP_EOL;
}
//
}
//
$strHtmlUnselected .= '</select>';
// The 'selected' multi-select which appears on the right

@ -73,7 +73,7 @@ class HTML_QuickForm_date extends HTML_QuickForm_group
'format' => 'dMY',
'minYear' => 2001,
// Modified by Chamilo team, 16-MAR-2010.
// TODO: This modification to be rethinked.
// TODO: This modification to be re-thought.
//'maxYear' => 2090,
'maxYear' => 2010,
//

Loading…
Cancel
Save