dolibarr/htdocs/core/lib/treeview.lib.php

259 lines
7.4 KiB
PHP
Raw Normal View History

2008-09-01 23:51:38 +02:00
<?php
/* Copyright (C) 2007 Patrick Raguin <patrick.raguin@gmail.com>
* Copyright (C) 2007-2008 Laurent Destailleur <eldy@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
2008-09-01 23:51:38 +02:00
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2011-08-01 01:24:38 +02:00
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2008-09-01 23:51:38 +02:00
*/
/**
2011-10-24 10:45:06 +02:00
* \file htdocs/core/lib/treeview.lib.php
2008-09-01 23:51:38 +02:00
* \ingroup core
* \brief Libraries for tree views
*/
/**
* Return if a child id is in descendance of parentid
*
2012-02-04 10:48:47 +01:00
* @param array $fulltree Full tree. Tree must be an array of records that looks like:
* id = id record
* id_mere = id record mother
* id_children = array of direct child id
* label = record label
* fullpath = Full path of id
* level = Level of record
* @param int $parentid Parent id
* @param int $childid Child id
* @return int 1=Yes, 0=No
*/
function is_in_subtree($fulltree,$parentid,$childid)
{
if ($parentid == $childid) return 1;
// Get fullpath of parent
$fullpathparent='';
foreach($fulltree as $key => $val)
{
//print $val['id']."-".$section."<br>";
if ($val['id'] == $parentid)
{
$fullpathparent=$val['fullpath'];
break;
}
}
//print '> parent='.$parentid.' - child='.$childid.' - '.$fullpathparent.'<br>';
foreach($fulltree as $record)
{
if ($record['id'] == $childid)
{
//print $record['fullpath'].'_'.' - '.$fullpathparent.'_';
if (preg_match('/'.$fullpathparent.'_/i',$record['fullpath'].'_'))
{
//print 'DEL='.$childid;
return 1;
}
}
}
return 0;
}
2008-09-02 02:27:05 +02:00
/**
2012-03-21 21:30:08 +01:00
* Show indent and picto of a tree line. Return array with information of line.
*
2012-02-04 10:48:47 +01:00
* @param array &$fulltree Array of entries in correct order
2012-03-24 15:20:49 +01:00
* @param string $key Key of entry into fulltree to show picto
2012-03-21 21:30:08 +01:00
* @param int $silent Do not output indent and picto, returns only value
* @return array array(0 or 1 if at least one of this level after, 0 or 1 if at least one of higher level after, nbofdirinsub, nbofdocinsub)
2008-09-02 02:27:05 +02:00
*/
2012-03-21 21:30:08 +01:00
function tree_showpad(&$fulltree,$key,$silent=0)
2008-09-02 02:27:05 +02:00
{
$pos=1;
2008-10-26 02:28:11 +02:00
// Loop on each pos, because we will output an img for each pos
2008-10-13 17:00:27 +02:00
while ($pos <= $fulltree[$key]['level'] && $fulltree[$key]['level'] > 0)
2008-09-02 02:27:05 +02:00
{
2012-03-21 21:30:08 +01:00
// Process for column $pos
2008-10-13 17:00:27 +02:00
2012-03-21 21:30:08 +01:00
$atleastoneofthislevelafter=0;
2008-10-26 02:26:18 +01:00
$nbofdirinsub=0;
$nbofdocinsub=0;
2008-10-13 17:00:27 +02:00
$found=0;
//print 'x'.$key;
foreach($fulltree as $key2 => $val2)
{
2012-03-21 21:30:08 +01:00
//print "x".$pos." ".$key2." ".$found." ".$fulltree[$key2]['level'];
2008-10-26 02:28:11 +02:00
if ($found == 1) // We are after the entry to show
2008-10-13 17:00:27 +02:00
{
2008-10-26 02:28:11 +02:00
if ($fulltree[$key2]['level'] > $pos)
{
2008-10-26 02:26:18 +01:00
$nbofdirinsub++;
if (isset($fulltree[$key2]['cachenbofdoc']) && $fulltree[$key2]['cachenbofdoc'] > 0) $nbofdocinsub+=$fulltree[$key2]['cachenbofdoc'];
}
2008-10-13 17:00:27 +02:00
if ($fulltree[$key2]['level'] == $pos)
{
2012-03-21 21:30:08 +01:00
$atleastoneofthislevelafter=1;
}
2008-10-26 02:28:11 +02:00
if ($fulltree[$key2]['level'] <= $pos)
2008-10-13 17:00:27 +02:00
{
break;
}
2008-10-13 17:00:27 +02:00
}
2012-03-21 21:30:08 +01:00
if ($key2 == $key) // We found ourself, so now every lower level will be counted
2008-10-26 02:26:18 +01:00
{
$found=1;
}
2008-10-13 17:00:27 +02:00
}
2012-03-21 21:30:08 +01:00
//print $atleastoneofthislevelafter;
2012-03-21 21:30:08 +01:00
if (! $silent)
2008-09-02 02:27:05 +02:00
{
2012-03-21 21:30:08 +01:00
if ($atleastoneofthislevelafter)
{
if ($fulltree[$key]['level'] == $pos) print img_picto_common('','treemenu/branch.gif');
else print img_picto_common('','treemenu/line.gif');
}
else
{
if ($fulltree[$key]['level'] == $pos) print img_picto_common('','treemenu/branchbottom.gif');
else print img_picto_common('','treemenu/linebottom.gif');
}
2008-09-02 02:27:05 +02:00
}
$pos++;
}
2012-03-21 21:30:08 +01:00
return array($atleastoneofthislevelafter,$nbofdirinsub,$nbofdocinsub);
2008-09-02 02:27:05 +02:00
}
// ------------------------------- Used by menu editor -----------------
2008-09-02 02:27:05 +02:00
2008-09-01 23:51:38 +02:00
/**
* Show an element with correct offset
2012-03-21 21:30:08 +01:00
*
2012-02-04 10:48:47 +01:00
* @param array $tab Array of all elements
* @param int $rang Level of offset
* @return void
2008-09-01 23:51:38 +02:00
*/
function tree_showline($tab,$rang)
{
global $conf, $rangLast, $idLast, $menu_handler;
if ($conf->use_javascript_ajax)
{
if($rang == $rangLast)
{
print '<script type="text/javascript">imgDel('.$idLast.');</script>';
//print '<a href="'.DOL_URL_ROOT.'/admin/menus/index.php?menu_handler=eldy&action=delete&menuId='.$idLast.'">aa</a>';
}
elseif($rang > $rangLast)
{
2008-09-01 23:51:38 +02:00
print '<li><ul>';
}
elseif($rang < $rangLast)
{
print '<script type="text/javascript">imgDel('.$idLast.')</script>';
2008-09-01 23:51:38 +02:00
for($i=$rang; $i < $rangLast; $i++)
{
print '</ul></li>';
echo "\n";
}
}
}
else
{
if($rang > $rangLast)
{
2008-09-01 23:51:38 +02:00
print '<li><ul>';
}
elseif($rang < $rangLast)
{
2008-09-01 23:51:38 +02:00
for($i=$rang; $i < $rangLast; $i++)
{
print '</ul></li>';
echo "\n";
}
}
}
print '<li id=li'.$tab['rowid'].'>';
2008-09-01 23:51:38 +02:00
// Content of line
print '<strong> &nbsp;<a href="edit.php?menu_handler='.$menu_handler.'&action=edit&menuId='.$tab['rowid'].'">'.$tab['title'].'</a></strong>';
print '<div class="menuEdit"><a href="edit.php?menu_handler='.$menu_handler.'&action=edit&menuId='.$tab['rowid'].'">'.img_edit('default',0,'class="menuEdit" id="edit'.$tab['rowid'].'"').'</a></div>';
print '<div class="menuNew"><a href="edit.php?menu_handler='.$menu_handler.'&action=create&menuId='.$tab['rowid'].'">'.img_edit_add('default',0,'class="menuNew" id="new'.$tab['rowid'].'"').'</a></div>';
print '<div class="menuDel"><a href="index.php?menu_handler='.$menu_handler.'&action=delete&menuId='.$tab['rowid'].'">'.img_delete('default',0,'class="menuDel" id="del'.$tab['rowid'].'"').'</a></div>';
print '<div class="menuFleche"><a href="index.php?menu_handler='.$menu_handler.'&action=up&menuId='.$tab['rowid'].'">'.img_picto("Monter","1uparrow").'</a><a href="index.php?menu_handler='.$menu_handler.'&action=down&menuId='.$tab['rowid'].'">'.img_picto("Descendre","1downarrow").'</a></div>';
2008-09-01 23:51:38 +02:00
print '</li>';
echo "\n";
$rangLast = $rang;
$idLast = $tab['rowid'];
2008-09-01 23:51:38 +02:00
}
/**
* Recursive function to output menu tree
2012-03-21 21:30:08 +01:00
*
2012-02-04 10:48:47 +01:00
* @param array $tab Array of elements
* @param int $pere Array with parent ids ('rowid'=>,'mainmenu'=>,'leftmenu'=>,'fk_mainmenu=>,'fk_leftmenu=>)
2012-02-04 10:48:47 +01:00
* @param int $rang Level of element
* @return void
2008-09-01 23:51:38 +02:00
*/
function tree_recur($tab,$pere,$rang)
2008-09-01 23:51:38 +02:00
{
if (empty($pere['rowid'])) print '<ul class="arbre">';
2008-09-01 23:51:38 +02:00
if ($rang > 10) return; // Protection contre boucle infinie
//ballayage du tableau
$sizeoftab=count($tab);
for ($x=0; $x < $sizeoftab; $x++)
2008-09-01 23:51:38 +02:00
{
//var_dump($tab[$x]);exit;
// If an element has $pere for parent
if ($tab[$x]['fk_menu'] != -1 && $tab[$x]['fk_menu'] == $pere['rowid'])
2008-09-01 23:51:38 +02:00
{
// We shot it with an offset
2008-09-01 23:51:38 +02:00
tree_showline($tab[$x],$rang);
// And now we search all its sons of lower level
tree_recur($tab,$tab[$x],$rang+1);
}
elseif (! empty($tab[$x]['rowid']) && $tab[$x]['fk_menu'] == -1 && $tab[$x]['fk_mainmenu'] == $pere['mainmenu'] && $tab[$x]['fk_leftmenu'] == $pere['leftmenu'])
{
// We shot it with an offset
tree_showline($tab[$x],$rang);
// And now we search all its sons of lower level
tree_recur($tab,$tab[$x],$rang+1);
2008-09-01 23:51:38 +02:00
}
}
if (empty($pere['rowid'])) print '</ul>';
2008-09-01 23:51:38 +02:00
}
?>