X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=encode.php;h=2dbf756066ed06d429432de9c520d3ce5f092f27;hb=4a4d453bf7dad654a6dc988a8a9c36f1ec45a9a8;hp=6e57c36a0c9a39b0e7263f55c1525dc865e71a84;hpb=d3416270f26f08e34ff1748e1ee1fef7a15e79db;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");