X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=encode.php;h=b81a4fc35441d3c3b18d63a4b8fe13e06b3073d1;hb=a6f8b885180ef3e009e28d723dd05734eb0d4ef5;hp=6102a91727b06f27e882d58242cd324817284323;hpb=456602c35b5550a0ab8cbaf4c74ca6d00a3be076;p=wfpl.git diff --git a/encode.php b/encode.php index 6102a91..b81a4fc 100644 --- a/encode.php +++ b/encode.php @@ -17,9 +17,9 @@ # This file contains basic encodings. These are used by the encoder. You can -# specify any template tag to be encoded with this syntax: ~variable.encoding~ +# specify any template tag to be encoded with this syntax: ~variable encoding~ # -# this example:

~foo.html~

+# this example:

~foo html~

# will encode foo (using enc_html()) before displaying it, so that characters # such as < will display properly. @@ -43,7 +43,7 @@ function enc_sql($str) { # Encode for output in html. does nothing with whitespace # -# Example:

~foo.html~

+# Example:

~foo html~

function enc_html($str) { $str = str_replace('&', '&', $str); $str = str_replace('<', '<', $str); @@ -53,7 +53,7 @@ function enc_html($str) { # Encode for output in html. Convert newlines to
# -# Example:

~foo.htmlbr~

+# Example:

~foo htmlbr~

function enc_htmlbr($str) { $str = enc_html($str); $str = str_replace("\n", "
\n", $str); @@ -63,7 +63,7 @@ function enc_htmlbr($str) { # Encode for output in html. Preserves newlines and indentation by converting # newlines to
and spaces at the begining of lines to    # -# Example:

~foo.htmlbrtab~

+# Example:

~foo htmlbrtab~

function enc_htmlbrtab($str) { $str = enc_htmlbr($str); $space_to_nbsp = create_function('$matches', 'return str_repeat(\' \', strlen($matches[0]) * 2);'); @@ -71,9 +71,18 @@ function enc_htmlbrtab($str) { return $str; } +# Encode for output in html. Spaces converted to   and \n to
+# +# Example: +function enc_htmlbrnbsp($str) { + $str = enc_htmlbr($str); + $str = str_replace(' ', ' ', $str); + return $str; +} + # Encode for output in html. Spaces converted to   # -# Example: +# Example: function enc_htmlnbsp($str) { $str = enc_html($str); $str = str_replace(' ', ' ', $str); @@ -83,7 +92,7 @@ function enc_htmlnbsp($str) { # HTML attribute. # -# Example: +# Example: function enc_attr($str) { $str = str_replace('&', '&', $str); $str = str_replace('"', '"', $str); @@ -92,7 +101,7 @@ function enc_attr($str) { # URI agument value. # -# Example: http://example.com?foo=~foo.url_val~ +# Example: http://example.com?foo=~foo url_val~ function enc_url_val($str) { return rawurlencode($str); } @@ -109,7 +118,7 @@ function enc_url_path($str) { # # Place the template marker just before a " somewhere. # -# Example: +# Example: function enc_checked($str) { if($str && $str !== 'No' && $str !== 'False' && $str !== 'false') { return '" checked="checked'; @@ -118,9 +127,8 @@ function enc_checked($str) { } } -# checkboxe values are stored in the db and handled in php as 0 or 1. When you -# want it displayed as "Yes" or "No" use this: -# Example: (displaying values from a form submission) Over 60?: ~over_60.yesno~ +# normally, checkboxes values from get/post to 0 or 1, and stored in the database this way. enc_yesno() can be used in your templates to display this as "Yes" or "No". +# Example template: Subscribe to mailing list?: ~subscribe yesno~ function enc_yesno($str) { if($str && $str !== 'No' && $str !== 'False' && $str !== 'false') { return 'Yes'; @@ -161,6 +169,11 @@ function enc_mmddyyyy($yyyy_mm_dd) { return substr($yyyy_mm_dd, 5, 2) . '/' . substr($yyyy_mm_dd, 8, 2) . '/' . substr($yyyy_mm_dd, 0, 4); } +# depricated. call enc_mmddyyyy() instead +function enc_mdy($str) { + return enc_mmddyyyy($str); +} + function enc_mmddyyyyhhmm($seconds) { return date('m/d/Y g:ia', (int)$seconds); } @@ -177,6 +190,26 @@ function enc_hhmm($str) { return $str; } +# takes decimal +# returns hh:mm followed by "am" or "pm" with no space +function enc_12hr($str) { + if(strlen($str) == 0) { + return ''; + } + $hours = floor($str); + $minutes = round(($str - $hours) * 60); + $suffix = 'am'; + if($hours >= 12.0) { + $suffix = 'pm'; + if($hours > 12.0) { + $hours -= 12.0; + } + } + $str = sprintf("%d:%02d", $hours, $minutes); + $str .= $suffix; + return $str; +} + @@ -268,7 +301,7 @@ function encode_options($selected, $options, $keys_from) { $out .= ' selected="selected"'; } - if($value !== $display) { + if($value !== $display || strpos($value, ' ') !== false) { $out .= ' value="'; $out .= enc_attr($value); $out .= '"'; @@ -317,4 +350,40 @@ function enc_evenodd($values, $name) { } } -?> +function enc_image_src($str) { + list($src, $width, $height, $a, $b, $c) = explode(' ', $str); + return $src; +} + +function enc_image_width($str) { + list($src, $width, $height, $a, $b, $c) = explode(' ', $str); + return $width; +} + +function enc_image_height($str) { + list($src, $width, $height, $a, $b, $c) = explode(' ', $str); + return $height; +} + +function enc_thumb_src($str) { + list($a, $b, $c, $src, $width, $height) = explode(' ', $str); + return $src; +} + +function enc_thumb_width($str) { + list($a, $b, $c, $src, $width, $height) = explode(' ', $str); + return $width; +} +function enc_thumb_height($str) { + list($a, $b, $c, $src, $width, $height) = explode(' ', $str); + return $height; +} + +# example template: Length: ~length html~ day~length s~ +function enc_s($str) { + if($str == '1') { + return ''; + } + + return 's'; +}