Tree.class.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?php
  2. class Tree extends Think {
  3. public $arr = array();
  4. public $icon = array('│','├','└');
  5. public $nbsp = "&nbsp;";
  6. public $ret = '';
  7. public $level = 0;
  8. public function __construct($arr=array()) {
  9. $this->arr = $arr;
  10. $this->ret = '';
  11. return is_array($arr);
  12. }
  13. public function getchild($bid){
  14. $a = $newarr = array();
  15. if(is_array($this->arr)){
  16. foreach($this->arr as $id => $a){
  17. if($a['parentid'] == $bid) $newarr[$id] = $a;
  18. }
  19. }
  20. return $newarr ? $newarr : false;
  21. }
  22. function get_tree($bid, $str, $sid = 0, $adds = '', $strgroup = ''){
  23. $number=1;
  24. $child = $this->getchild($bid);
  25. if(is_array($child)){
  26. $total = count($child);
  27. foreach($child as $id=>$a){
  28. $j=$k='';
  29. if($number==$total){
  30. $j .= $this->icon[2];
  31. }else{
  32. $j .= $this->icon[1];
  33. $k = $adds ? $this->icon[0] : '';
  34. }
  35. $spacer = $adds ? $adds.$j : '';
  36. @extract($a);
  37. if(empty($a['selected'])){$selected = $id==$sid ? 'selected' : '';}
  38. $parentid == 0 && $strgroup ? eval("\$newstr = \"$strgroup\";") : eval("\$newstr = \"$str\";");
  39. $this->ret .= $newstr;
  40. $nbsp = $this->nbsp;
  41. $this->get_tree($id, $str, $sid, $adds.$k.$nbsp,$strgroup);
  42. $number++;
  43. }
  44. }
  45. return $this->ret;
  46. }
  47. function get_nav($bid,$maxlevel,$effected_id='navlist',$style='filetree ' ,$homefont='',$recursion=FALSE ,$child='',$enhomefont='',$lang='') {
  48. if($enhomefont) $indexen = '<em>'.$enhomefont.'</em>';
  49. if($homefont) $homefont='<li id="nav_0"><span class="fl_ico"></span><a href="'.URL().'" title="'.L(HOME_FONT).'"><span class="fl">'.L(HOME_FONT).'</span>'.$indexen.'</a></li>';
  50. $number=1;
  51. if(!$child) $child = $this->getchild($bid);
  52. $total = count($child);
  53. $effected = $effected_id ? ' id="'.$effected_id.'_box"' : '';
  54. $class= $style? ' class="'.$style.'"' : '';
  55. if(!$recursion) $this->ret .='<ul'.$effected.$class.'>'.$homefont;
  56. foreach($child as $id=>$a) {
  57. @extract($a);
  58. if(!$this->level){
  59. $this->level= $level ? $level+$maxlevel-1 : $maxlevel;
  60. }
  61. $ischild =$this->getchild($id);
  62. $foldertype = $ischild ? 'folder' : 'file';
  63. $floder_status = ' id="'.$effected_id.'_'.$id.'"';
  64. $first = $number==1 ? 'first ' : '';
  65. $floder_status .= $number==$total ? ' class="foot '.$foldertype.'"' : ' class="'.$first.$foldertype.'"';
  66. $this->ret .= $recursion ? '<ul><li'.$floder_status.'>' : '<li'.$floder_status.'>';
  67. $recursion = FALSE;
  68. if($enhomefont){
  69. $enzm = $enname ? '<em>'.$enname.'</em>' : '<em>'.$catdir.'</em>';
  70. }
  71. if($ischild && $level < $this->level){
  72. $this->ret .= '<span class="fd_ico"></span><a href="'.$url.'" title="'.$catname.'"><span class="fd">'.$catname.'</span>'.$enzm.'</a>';
  73. $this->get_nav($id,$maxlevel,$effected_id,$style,'',TRUE,$ischild,$enhomefont,$lang);
  74. } else {
  75. $this->ret .= '<span class="fl_ico"></span><a href="'.$url.'" title="'.$catname.'"><span class="fl">'.$catname.'</span>'.$enzm.'</a>';
  76. }
  77. $this->ret .=$recursion ? '</li></ul>': '</li>';
  78. $number++;
  79. }
  80. if(!$recursion) $this->ret .='</ul>';
  81. return $this->ret;
  82. }
  83. }
  84. ?>