From 2898b0f28b4a044829fa9a6df8c258049dc5f585 Mon Sep 17 00:00:00 2001 From: admin Date: Sun, 29 Oct 2006 20:23:20 +0000 Subject: --- system/helpers/list_helper.php | 132 ----------------------------------------- 1 file changed, 132 deletions(-) delete mode 100644 system/helpers/list_helper.php (limited to 'system/helpers') diff --git a/system/helpers/list_helper.php b/system/helpers/list_helper.php deleted file mode 100644 index 587a0aa93..000000000 --- a/system/helpers/list_helper.php +++ /dev/null @@ -1,132 +0,0 @@ -\n"; - - foreach ($list as $item) - { - if (is_array($item)) - { - $out .= _list($type, $item, '', $depth+4); - } - else - { - $out .= str_repeat(" ", $depth + 2); - - $out .= "
  • ".$item."
  • \n"; - } - } - - $out .= str_repeat(" ", $depth); - - $out .= "\n"; - - return $out; -} - -// ------------------------------------------------------------------------ - -/** - * Generates the attribute string - * - * @access private - * @param mixed - * @return string - */ -function _set_attributes($attributes) -{ - if (is_string($attributes)) - { - return $attributes; - } - - $atts = ''; - foreach ($attributes as $key => $val) - { - $atts .= ' ' . $key . '="' . $val . '"'; - } - - return $atts; -} -?> \ No newline at end of file -- cgit v1.2.3-24-g4f1b