X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=encode.php;h=38de08072ea9e7c5a1427d047a23d1f328a124d4;hb=8a5f6e7c208344736b432515d9b93a1aa78790ed;hp=6e57c36a0c9a39b0e7263f55c1525dc865e71a84;hpb=d3416270f26f08e34ff1748e1ee1fef7a15e79db;p=wfpl.git diff --git a/encode.php b/encode.php index 6e57c36..38de080 100644 --- a/encode.php +++ b/encode.php @@ -138,24 +138,24 @@ function enc_yesno($str) { } -# add a tab at the begining of each non-empty line +# add a tab at the begining of each line function enc_tab($str) { - $lines = explode("\n", $str); - $out = ''; - foreach($lines as $line) { - if($line) { - $out .= "\t$line"; - } - $out .= "\n"; + if('' . $str === '') { + return ''; } - - # remove the extra newline added above - return substr($out, 0, -1); + return "\t" . implode("\n\t", explode("\n", $str)); } -function enc_upper($str) { +function enc_uppercase($str) { return strtoupper($str); } +function enc_upper($str) { # depricated + return enc_uppercase($str); +} + +function enc_lowercase($str) { + return strtolower($str); +} # pass date in the form 2008-05-23 # ercodes date as 05/23/2008 @@ -174,11 +174,16 @@ function enc_mdy($str) { return enc_mmddyyyy($str); } -function enc_mmddyyyyhhmm($seconds) { - return date('m/d/Y g:ia', (int)$seconds); +# pass unix timestamp or "2012-12-20 22:23:34" +function enc_mmddyyyyhhmm($str) { + if(is_numeric($str)) { + return date('m/d/Y g:ia', (int)$str); + } else { + return enc_mmddyyyy(substr($str, 0, 10)) . substr($str, 10, 6); + } } -# takes decimal +# takes decimal number of hours # returns hh:mm function enc_hhmm($str) { if(strlen($str) == 0) { @@ -190,7 +195,7 @@ function enc_hhmm($str) { return $str; } -# takes decimal +# takes decimal number of hours # returns hh:mm followed by "am" or "pm" with no space function enc_12hr($str) { if(strlen($str) == 0) { @@ -263,6 +268,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"); @@ -328,12 +348,14 @@ function encode_options($selected, $options, $keys_from) { } $out = ''; - foreach($options as $valdisp) { - list($value, $display) = $valdisp; + foreach($options as $option) { + list($value, $display, $arg3) = $option; $out .= '' . enc_html($piece) . ''; + } + $even = !$even; + } + return $ret; +} + +# turns a filename into the unix timestamp of that files modification date +function enc_mtime($dummy, $filename) { + $stat = stat($filename); + if ($stat === false) { + return ''; + } + return '' . $stat['mtime']; +}