From f70921e088f20e545067b7c844537d04984fb9ea Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Thu, 23 Dec 2010 00:50:19 -0500 Subject: [PATCH] add: enc_pulled() --- encode.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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"); -- 1.7.10.4