File indexing completed on 2025-05-04 05:29:24

0001 <style>
0002     div.title{
0003         font-weight:bold;border-bottom:1px solid #ccc; padding:5px; margin-bottom:5px;
0004     }
0005 </style>
0006 
0007 <?php 
0008 
0009     function findRoots($roots,$level) {
0010         
0011     }
0012 
0013     $pc = new Default_Model_ProjectClone();
0014     $parents = $pc->fetchParentIds($this->product->project_id);
0015     $roots=[];
0016     $maxLevel = 10;
0017     if($parents && strlen($parents)>0)
0018     {
0019         $roots = explode(',', $parents);
0020         foreach ($roots as $r) {
0021             
0022         }
0023     }
0024     
0025 ?>
0026 test