mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Merge pull request #1321 from zoghal/form-select-disabled
fix Form::_selectOptions, when disabled attribute is not array so do not...
This commit is contained in:
commit
a6bc92719a
2 changed files with 120 additions and 1 deletions
|
@ -4537,6 +4537,125 @@ class FormHelperTest extends CakeTestCase {
|
||||||
'/div'
|
'/div'
|
||||||
);
|
);
|
||||||
$this->assertTags($result, $expected);
|
$this->assertTags($result, $expected);
|
||||||
|
|
||||||
|
$options = array(1 => 'One', 2 => 'Two', '3' => 'Three', '3x' => 'Stringy');
|
||||||
|
$disabled = true;
|
||||||
|
$result = $this->Form->input('Contact.multiple', array('multiple' => 'multiple', 'disabled' => $disabled, 'options' => $options));
|
||||||
|
$expected = array(
|
||||||
|
array('div' => array('class' => 'input select')),
|
||||||
|
array('label' => array('for' => 'ContactMultiple')),
|
||||||
|
'Multiple',
|
||||||
|
'/label',
|
||||||
|
'input' => array(
|
||||||
|
'type' => 'hidden', 'name' => 'data[Contact][multiple]', 'value' => '', 'id' => 'ContactMultiple_'
|
||||||
|
),
|
||||||
|
'select' => array(
|
||||||
|
'name' => 'data[Contact][multiple][]', 'disabled' => 'disabled', 'multiple' => 'multiple', 'id' => 'ContactMultiple'
|
||||||
|
),
|
||||||
|
array('option' => array('value' => '1')),
|
||||||
|
'One',
|
||||||
|
'/option',
|
||||||
|
array('option' => array('value' => '2')),
|
||||||
|
'Two',
|
||||||
|
'/option',
|
||||||
|
array('option' => array('value' => '3')),
|
||||||
|
'Three',
|
||||||
|
'/option',
|
||||||
|
array('option' => array('value' => '3x')),
|
||||||
|
'Stringy',
|
||||||
|
'/option',
|
||||||
|
'/select',
|
||||||
|
'/div'
|
||||||
|
);
|
||||||
|
$this->assertTags($result, $expected);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test generating select with disabled elements.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function testSelectWithDisabledElements() {
|
||||||
|
$options = array(1 => 'One', 2 => 'Two', '3' => 'Three', '3x' => 'Stringy');
|
||||||
|
$disabled = array(2, 3);
|
||||||
|
$result = $this->Form->select('Model.field', $options, array('disabled' => $disabled));
|
||||||
|
$expected = array(
|
||||||
|
'select' => array(
|
||||||
|
'name' => 'data[Model][field]', 'id' => 'ModelField'
|
||||||
|
),
|
||||||
|
array('option' => array('value' => '')),
|
||||||
|
'/option',
|
||||||
|
array('option' => array('value' => '1')),
|
||||||
|
'One',
|
||||||
|
'/option',
|
||||||
|
array('option' => array('value' => '2', 'disabled' => 'disabled')),
|
||||||
|
'Two',
|
||||||
|
'/option',
|
||||||
|
array('option' => array('value' => '3', 'disabled' => 'disabled')),
|
||||||
|
'Three',
|
||||||
|
'/option',
|
||||||
|
array('option' => array('value' => '3x')),
|
||||||
|
'Stringy',
|
||||||
|
'/option',
|
||||||
|
'/select'
|
||||||
|
);
|
||||||
|
$this->assertTags($result, $expected);
|
||||||
|
|
||||||
|
$options = array(1 => 'One', 2 => 'Two', '3' => 'Three', '3x' => 'Stringy');
|
||||||
|
$disabled = array('2', '3x');
|
||||||
|
$result = $this->Form->input('Model.field', array('disabled' => $disabled, 'options' => $options));
|
||||||
|
$expected = array(
|
||||||
|
array('div' => array('class' => 'input select')),
|
||||||
|
array('label' => array('for' => 'ModelField')),
|
||||||
|
'Field',
|
||||||
|
'/label',
|
||||||
|
'select' => array(
|
||||||
|
'name' => 'data[Model][field]', 'id' => 'ModelField'
|
||||||
|
),
|
||||||
|
array('option' => array('value' => '1')),
|
||||||
|
'One',
|
||||||
|
'/option',
|
||||||
|
array('option' => array('value' => '2', 'disabled' => 'disabled')),
|
||||||
|
'Two',
|
||||||
|
'/option',
|
||||||
|
array('option' => array('value' => '3')),
|
||||||
|
'Three',
|
||||||
|
'/option',
|
||||||
|
array('option' => array('value' => '3x', 'disabled' => 'disabled')),
|
||||||
|
'Stringy',
|
||||||
|
'/option',
|
||||||
|
'/select',
|
||||||
|
'/div'
|
||||||
|
);
|
||||||
|
$this->assertTags($result, $expected);
|
||||||
|
|
||||||
|
$options = array(1 => 'One', 2 => 'Two', '3' => 'Three', '3x' => 'Stringy');
|
||||||
|
$disabled = true;
|
||||||
|
$result = $this->Form->input('Model.field', array('disabled' => $disabled, 'options' => $options));
|
||||||
|
$expected = array(
|
||||||
|
array('div' => array('class' => 'input select')),
|
||||||
|
array('label' => array('for' => 'ModelField')),
|
||||||
|
'Field',
|
||||||
|
'/label',
|
||||||
|
'select' => array(
|
||||||
|
'name' => 'data[Model][field]', 'id' => 'ModelField', 'disabled' => 'disabled'
|
||||||
|
),
|
||||||
|
array('option' => array('value' => '1')),
|
||||||
|
'One',
|
||||||
|
'/option',
|
||||||
|
array('option' => array('value' => '2')),
|
||||||
|
'Two',
|
||||||
|
'/option',
|
||||||
|
array('option' => array('value' => '3')),
|
||||||
|
'Three',
|
||||||
|
'/option',
|
||||||
|
array('option' => array('value' => '3x')),
|
||||||
|
'Stringy',
|
||||||
|
'/option',
|
||||||
|
'/select',
|
||||||
|
'/div'
|
||||||
|
);
|
||||||
|
$this->assertTags($result, $expected);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -2653,7 +2653,7 @@ class FormHelper extends AppHelper {
|
||||||
) {
|
) {
|
||||||
$htmlOptions['disabled'] = 'disabled';
|
$htmlOptions['disabled'] = 'disabled';
|
||||||
}
|
}
|
||||||
if ($hasDisabled && !$disabledIsArray) {
|
if ($hasDisabled && !$disabledIsArray && $attributes['style'] === 'checkbox') {
|
||||||
$htmlOptions['disabled'] = $attributes['disabled'] === true ? 'disabled' : $attributes['disabled'];
|
$htmlOptions['disabled'] = $attributes['disabled'] === true ? 'disabled' : $attributes['disabled'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue