HTML_QuickForm_hierselect::setSecOptions() -- DEPRECATED: Sets the options for the secondary select
Descripción
Sets the options for the secondary select. Options are passed as a two-dimensional array, where the first key is parent id and the second key is child id, as it is needed to know the parent option to which the secondary option relates.
This method has been deprecated. Use setOptions() instead.
Parámetro
- array
$options
Array of options for the second select
Lanza
throws no exceptions thrown
Nota
Esta función no puede ser llamada
estáticamente.
| Aviso |
Esta función está
en desuso. Lo que significa que futuras versiones de
este paquete no la soportarán. |
Deprecated in release 3.2.2
Ejemplo
Ejemplo 43-1. Setting the hierselect options
<?php
$hierSel =& $form->addElement('hierselect', 'test', 'Test:', null, '/');
$main[0] = 'Pop';
$main[1] = 'Classical';
$main[2] = 'Funeral doom';
$sec[0][1] = 'Red Hot Chili Peppers';
$sec[0][2] = 'The Pixies';
$sec[1][3] = 'Wagner';
$sec[1][4] = 'Strauss';
$sec[2][5] = 'Pantheist';
$sec[2][6] = 'Skepticism';
$hierSel->setMainOptions($main);
$hierSel->setSecOptions($sec);
?>
|
|