Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
f67962a0
Commit
f67962a0
authored
16 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Enhancement in ecm module
parent
d4fdb236
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
htdocs/ecm/index.php
+8
-4
8 additions, 4 deletions
htdocs/ecm/index.php
htdocs/lib/treeview.lib.php
+11
-5
11 additions, 5 deletions
htdocs/lib/treeview.lib.php
with
19 additions
and
9 deletions
htdocs/ecm/index.php
+
8
−
4
View file @
f67962a0
...
...
@@ -480,19 +480,23 @@ if (empty($action) || $action == 'file_manager' || eregi('refresh',$action) || $
if
(
in_array
(
$val
[
'id'
],
$expandedsectionarray
))
$option
=
'indexexpanded'
;
else
$option
=
'indexnotexpanded'
;
//print $option;
print
'<tr>'
;
// Show tree graph pictos
print
'<td align="left">'
;
print
'<table class="nobordernopadding"><tr class="nobordernopadding"><td>'
;
tree_showpad
(
$fulltree
,
$key
);
$resarray
=
tree_showpad
(
$fulltree
,
$key
);
$a
=
$resarray
[
0
];
$b
=
$resarray
[
1
];
print
'</td>'
;
// Show picto
print
'<td valign="top">'
;
//print $val['fullpath']."(".$showline.")";
if
(
!
in_array
(
$val
[
'id'
],
$expandedsectionarray
))
$ref
=
img_picto
(
''
,
DOL_URL_ROOT
.
'/theme/common/treemenu/plustop2.gif'
,
''
,
1
);
else
$ref
=
img_picto
(
''
,
DOL_URL_ROOT
.
'/theme/common/treemenu/minustop2.gif'
,
''
,
1
);
$n
=
'2'
;
if
(
$b
==
0
||
!
in_array
(
$val
[
'id'
],
$expandedsectionarray
))
$n
=
'3'
;
if
(
!
in_array
(
$val
[
'id'
],
$expandedsectionarray
))
$ref
=
img_picto
(
''
,
DOL_URL_ROOT
.
'/theme/common/treemenu/plustop'
.
$n
.
'.gif'
,
''
,
1
);
else
$ref
=
img_picto
(
''
,
DOL_URL_ROOT
.
'/theme/common/treemenu/minustop'
.
$n
.
'.gif'
,
''
,
1
);
$oldref
=
$ecmdirstatic
->
ref
;
$ecmdirstatic
->
ref
=
$ref
;
print
$ecmdirstatic
->
getNomUrl
(
0
,
$option
);
...
...
This diff is collapsed.
Click to expand it.
htdocs/lib/treeview.lib.php
+
11
−
5
View file @
f67962a0
...
...
@@ -78,28 +78,34 @@ function is_in_subtree($fulltree,$parentid,$childid)
*
* @param fulltree Array of entries in correct order
* @param key Key of value to show picto
* @return
int 1
* @return
array (0 or 1 if at least one of this level after, 0 or 1 if at least one of higher level after)
*/
function
tree_showpad
(
&
$fulltree
,
$key
,
$selected
=
0
)
{
$pos
=
1
;
// Loop on each pos, because we will output an img for each pos
while
(
$pos
<=
$fulltree
[
$key
][
'level'
]
&&
$fulltree
[
$key
][
'level'
]
>
0
)
{
// Process picto for column $pos
$atleastonofthislevelafter
=
0
;
$nbofhigherlevelafter
=
0
;
$found
=
0
;
//print 'x'.$key;
foreach
(
$fulltree
as
$key2
=>
$val2
)
{
if
(
$found
==
1
)
if
(
$found
==
1
)
// We are after the entry to show
{
if
(
$fulltree
[
$key2
][
'level'
]
>
$pos
)
{
$nbofhigherlevelafter
++
;
}
if
(
$fulltree
[
$key2
][
'level'
]
==
$pos
)
{
$atleastonofthislevelafter
=
1
;
break
;
}
if
(
$fulltree
[
$key2
][
'level'
]
<
$pos
)
if
(
$fulltree
[
$key2
][
'level'
]
<
=
$pos
)
{
break
;
}
...
...
@@ -121,7 +127,7 @@ function tree_showpad(&$fulltree,$key,$selected=0)
$pos
++
;
}
return
1
;
return
array
(
$atleastonofthislevelafter
,
$nbofhigherlevelafter
)
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment