diff options
author | Chad Furman <cybarc@gmail.com> | 2012-07-29 07:03:50 +0200 |
---|---|---|
committer | Chad Furman <cybarc@gmail.com> | 2012-07-29 07:03:50 +0200 |
commit | a1abadaab34d8d08c54557c7e60d12eb624b72fe (patch) | |
tree | da4d0593ace467ff4629c016afee0d7fae512162 /system/core | |
parent | d83e727d6deedded5b637e685accb4fac0dc3985 (diff) |
refactored (crunched down) _stringify_attributes
Diffstat (limited to 'system/core')
-rw-r--r-- | system/core/Common.php | 41 |
1 files changed, 40 insertions, 1 deletions
diff --git a/system/core/Common.php b/system/core/Common.php index 06b162264..5cd3961d1 100644 --- a/system/core/Common.php +++ b/system/core/Common.php @@ -598,5 +598,44 @@ if ( ! function_exists('html_escape')) } } +// ------------------------------------------------------------------------ + +if ( ! function_exists('_stringify_attributes')) +{ + /** + * Stringify attributes for use in html tags. + * + * Helper function used to convert a string, array, or object of + * attributes to a string + * + * @param mixed string, array, object + * @param bool + * @return string + */ + function _stringify_attributes($attributes, $js = FALSE) + { + $atts = null; + + if (empty($attributes)) + { + return $atts; + } + + if (is_string($attributes)) + { + return ' '.$attributes; + } + + $attributes = (array) $attributes; + + foreach ($attributes as $key => $val) + { + $atts .= ($js) ? $key.'='.$val.',' : ' '.$key.'="'.$val.'"'; + } + + return rtrim($atts, ','); + } +} + /* End of file Common.php */ -/* Location: ./system/core/Common.php */
\ No newline at end of file +/* Location: ./system/core/Common.php */ |