X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=encode.php;h=2dbf756066ed06d429432de9c520d3ce5f092f27;hb=f70921e088f20e545067b7c844537d04984fb9ea;hp=6e57c36a0c9a39b0e7263f55c1525dc865e71a84;hpb=e7a6624958150b529f4c4333190e8d031464baf8;p=wfpl.git diff --git a/encode.php b/encode.php index 6e57c36..2dbf756 100644 --- a/encode.php +++ b/encode.php @@ -263,6 +263,21 @@ function enc_options($values, $name) { return encode_options($values, $GLOBALS[$name . '_options']['options'], PULLDOWN_2D); } +# for radios and pulldowns: +# pass posted value +# returns what the user sees in the pulldown or on the radio button caption +function enc_pulled($str, $name) { + if(!isset($GLOBALS[$name . '_options'])) { + die("pulldown('$name') must be called before this template can be run. See code/wfpl/encode.php"); + } + foreach($GLOBALS[$name . '_options']['options'] as &$kv) { + if($kv[0] == $str) { + return $kv[1]; + } + } + return $str; +} + function enc_radio_n($str, $name, $n) { if(!isset($GLOBALS[$name . '_options'])) { die("pulldown('$name') must be called before this template can be run. See code/wfpl/encode.php");