Selectbox
» Stamp, alternative PHP Templates
This is a Painter plugin for Stamp. Usage:
echo Stamp_Painters_Select::paintListKeyAsLabel('pizza',array(
'Margharita'=>1,
'Funghi'=>2,
'Venezia'=>3
),2);
echo Stamp_Painters_Select::paintListValueAsLabel('pizza',array(
'Margharita'=>1,
'Funghi'=>2,
'Venezia'=>3
));
echo Stamp_Painters_Select::paintListSimple('pizza',array(
'Margharita',
'Funghi',
'Venezia'
));
Template Details
<select name="#name#">
<!-- cut:option -->
<option #selected# value="#value#">#label#</option>
<!-- /cut:option -->
<!-- paste:options(option) -->
</select>
Cut Points
| option | An option for the selectbox |
Glue Points
| options | A place to attach new options |
Slots
| selected | A place to put the selected attribute |
| value | A place to put the value of an option |
| label | A place to put the label of an option |