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
685942b5
Commit
685942b5
authored
14 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Fix: Missing translation for menu editor
parent
dd464ca0
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/admin/menus/menu.js.php
+49
-6
49 additions, 6 deletions
htdocs/admin/menus/menu.js.php
htdocs/lib/treeview.lib.php
+22
-21
22 additions, 21 deletions
htdocs/lib/treeview.lib.php
with
71 additions
and
27 deletions
htdocs/admin/menus/menu.js
→
htdocs/admin/menus/menu.js
.php
+
49
−
6
View file @
685942b5
/* -----------------------------------------------------
<?php
/* Copyright (C) 20010 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 2 of the License, or
* (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
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/**
* \file htdocs/admin/menus/menus.js.php
* \brief File for js menu
* \version $Id$
*/
//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language
//if (! defined('NOREQUIREDB')) define('NOREQUIREDB','1'); // Not disabled to increase speed. Language code is found on url.
if
(
!
defined
(
'NOREQUIRESOC'
))
define
(
'NOREQUIRESOC'
,
'1'
);
//if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1'); // Not disabled cause need to do translations
if
(
!
defined
(
'NOCSRFCHECK'
))
define
(
'NOCSRFCHECK'
,
1
);
if
(
!
defined
(
'NOTOKENRENEWAL'
))
define
(
'NOTOKENRENEWAL'
,
1
);
if
(
!
defined
(
'NOLOGIN'
))
define
(
'NOLOGIN'
,
1
);
if
(
!
defined
(
'NOREQUIREMENU'
))
define
(
'NOREQUIREMENU'
,
1
);
if
(
!
defined
(
'NOREQUIREHTML'
))
define
(
'NOREQUIREHTML'
,
1
);
if
(
!
defined
(
'NOREQUIREAJAX'
))
define
(
'NOREQUIREAJAX'
,
'1'
);
require_once
(
"../../master.inc.php"
);
require_once
(
DOL_DOCUMENT_ROOT
.
"/lib/functions.lib.php"
);
if
(
!
empty
(
$_GET
[
"lang"
]))
$langs
->
setDefaultLang
(
$_GET
[
"lang"
]);
// If language was forced on URL by the main.inc.php
$langs
->
load
(
"main"
,
0
,
1
);
?>
-------------------------------------------------------- */
// Tests pour navigateurs
var OPE = (window.opera) ? true : false;
var IE = (document.all
&&
!OPE) ? true : false;
...
...
@@ -13,9 +56,9 @@ function arbre() {
// Presentation de l'arbre au depart : deployee ('yes') ou fermee ('no')
extend = "no";
// Textes du lien plier / deplier
plier_text
=
'
Replier tout
'
;
plier_text = '
<?php
echo
$langs
->
transnoentities
(
"UndoExpandAll"
);
?>
';
plier_title = 'Replier tous les noeuds de l\'arbre'
deplier_text
=
'
Deplier tout
'
;
deplier_text = '
<?php
echo
$langs
->
transnoentities
(
"ExpandAll"
);
?>
';
deplier_title = 'Deplier tous les noeuds de l\'arbre'
// Recuperation de tous les arbres de la page
uls = getElBy('ul','class','arbre');
...
...
@@ -25,7 +68,7 @@ function arbre() {
processULEL
(
ul
);
plier
(
ul
,'
replier
');
}
}
//
-------------------------------------------------------
...
...
@@ -151,7 +194,7 @@ function getElBy(tag,attr,val) {
var
dbEl =
document.getElementsByTagName(tag);
for
(e=
0;
e
<
dbEl.length
;
e
++)
{
if
(attr =
=
'
class
')
{
if
(dbEl[e].className=
=val)
{
dbRes.push
(
dbEl
[
e
]);}}
else
{
if
(
dbEl
[
e
].
getAttribute
(
attr
)
==
val
)
{
dbRes
.
push
(
dbEl
[
e
]);}}
else
{
if
(dbEl[e].getAttribute(attr)=
=val)
{
dbRes.push
(
dbEl
[
e
]);}}
}
return
dbRes
;
}
...
...
This diff is collapsed.
Click to expand it.
htdocs/lib/treeview.lib.php
+
22
−
21
View file @
685942b5
...
...
@@ -41,7 +41,7 @@
*/
function
is_in_subtree
(
$fulltree
,
$parentid
,
$childid
)
{
if
(
$parentid
==
$childid
)
return
1
;
if
(
$parentid
==
$childid
)
return
1
;
// Get fullpath of parent
$fullpathparent
=
''
;
...
...
@@ -54,21 +54,21 @@ function is_in_subtree($fulltree,$parentid,$childid)
break
;
}
}
//print '> parent='.$parentid.' - child='.$childid.' - '.$fullpathparent.'<br>';
//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'
]
.
'_'
))
if
(
preg_match
(
'/'
.
$fullpathparent
.
'_/i'
,
$record
[
'fullpath'
]
.
'_'
))
{
//print 'DEL='.$childid;
return
1
;
}
}
}
return
0
;
}
...
...
@@ -83,7 +83,7 @@ function is_in_subtree($fulltree,$parentid,$childid)
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
)
{
...
...
@@ -104,23 +104,23 @@ function tree_showpad(&$fulltree,$key,$selected=0)
$nbofdirinsub
++
;
$nbofdocinsub
+=
$fulltree
[
$key2
][
'cachenbofdoc'
];
$nbofhigherlevelafter
++
;
}
}
if
(
$fulltree
[
$key2
][
'level'
]
==
$pos
)
{
$atleastonofthislevelafter
=
1
;
}
}
if
(
$fulltree
[
$key2
][
'level'
]
<=
$pos
)
{
break
;
}
}
}
if
(
$key2
==
$key
)
if
(
$key2
==
$key
)
{
$found
=
1
;
}
}
//print $atleastonofthislevelafter;
if
(
$atleastonofthislevelafter
)
{
if
(
$fulltree
[
$key
][
'level'
]
==
$pos
)
print
img_picto_common
(
''
,
'treemenu/branch.gif'
);
...
...
@@ -133,7 +133,7 @@ function tree_showpad(&$fulltree,$key,$selected=0)
}
$pos
++
;
}
return
array
(
$atleastonofthislevelafter
,
$nbofhigherlevelafter
,
$nbofdirinsub
,
$nbofdocinsub
);
}
...
...
@@ -146,11 +146,12 @@ function tree_showpad(&$fulltree,$key,$selected=0)
*/
function
tree_addjs
()
{
print
'<script src="'
.
DOL_URL_ROOT
.
'/admin/menus/menu.js" type="text/javascript"></script>'
;
global
$langs
;
print
'<script src="'
.
DOL_URL_ROOT
.
'/admin/menus/menu.js.php?lang='
.
$langs
->
defaultlang
.
'" type="text/javascript"></script>'
;
}
/* cette fonction g
�
re le d
�
callage des
�l�
ments
/* cette fonction g
e
re le d
e
callage des
ele
ments
suivant leur position dans l'arborescence
*/
function
tree_showline
(
$tab
,
$rang
)
...
...
@@ -166,14 +167,14 @@ function tree_showline($tab,$rang)
}
elseif
(
$rang
>
$rangLast
)
{
print
'<li><ul>'
;
}
elseif
(
$rang
<
$rangLast
)
{
print
'<script type="text/javascript">imgDel('
.
$idLast
.
')</script>'
;
for
(
$i
=
$rang
;
$i
<
$rangLast
;
$i
++
)
{
print
'</ul></li>'
;
...
...
@@ -186,13 +187,13 @@ function tree_showline($tab,$rang)
{
if
(
$rang
>
$rangLast
)
{
print
'<li><ul>'
;
}
elseif
(
$rang
<
$rangLast
)
{
for
(
$i
=
$rang
;
$i
<
$rangLast
;
$i
++
)
{
print
'</ul></li>'
;
...
...
@@ -224,7 +225,7 @@ function tree_showline($tab,$rang)
$pere :index de l'�l�ment courant
$rang :d�callage de l'�l�ment
*/
function
tree_recur
(
$tab
,
$pere
,
$rang
)
function
tree_recur
(
$tab
,
$pere
,
$rang
)
{
if
(
$pere
==
0
)
print
'<ul class="arbre">'
;
...
...
@@ -238,14 +239,14 @@ function tree_recur($tab,$pere,$rang)
{
//on l'affiche avec le d�callage courrant
tree_showline
(
$tab
[
$x
],
$rang
);
/*et on recherche ses fils
en rappelant la fonction recur()
(+ incr�mentation du d�callage)*/
tree_recur
(
$tab
,
$tab
[
$x
][
0
],
$rang
+
1
);
}
}
if
(
$pere
==
0
)
print
'</ul>'
;
}
...
...
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