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
e00704c3
Commit
e00704c3
authored
14 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Perf: Speed enhancement. Reduce one request for each page call.
parent
93ab9b15
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
htdocs/core/class/menubase.class.php
+11
-4
11 additions, 4 deletions
htdocs/core/class/menubase.class.php
with
11 additions
and
4 deletions
htdocs/core/class/menubase.class.php
+
11
−
4
View file @
e00704c3
...
...
@@ -430,6 +430,7 @@ class Menubase
* @param mainmenu Value for mainmenu that defined top menu
* @param menu_handler Name of menu_handler used (auguria, eldy...)
* @return array Return array with menu entries for top menu
* TODO Mutualize menuTopCharger and menuLeftCharger
*/
function
menuTopCharger
(
$type_user
,
$mainmenu
,
$menu_handler
)
{
...
...
@@ -542,6 +543,7 @@ class Menubase
global
$langs
,
$user
,
$conf
,
$leftmenu
;
// To export to dol_eval function
global
$rights
;
// To export to dol_eval function
$menutopid
=
''
;
$leftmenu
=
$myleftmenu
;
$this
->
newmenu
=
$newmenu
;
...
...
@@ -549,7 +551,7 @@ class Menubase
$tabMenu
=
array
();
$sql
=
"SELECT m.rowid, m.fk_menu, m.url, m.titre, m.langs, m.perms, m.enabled, m.target, m.mainmenu, m.leftmenu"
;
$sql
=
"SELECT m.rowid,
m.type,
m.fk_menu, m.url, m.titre, m.langs, m.perms, m.enabled, m.target, m.mainmenu, m.leftmenu"
;
$sql
.
=
" FROM "
.
MAIN_DB_PREFIX
.
"menu as m"
;
$sql
.
=
" WHERE m.menu_handler in('"
.
$menu_handler
.
"','all')"
;
$sql
.
=
" AND m.entity = "
.
$conf
->
entity
;
...
...
@@ -572,6 +574,9 @@ class Menubase
//$objm = $this->db->fetch_object($resql);
$menu
=
$this
->
db
->
fetch_array
(
$resql
);
// Detect if it's top menu line
if
(
$menu
[
'type'
]
==
'top'
&&
$menu
[
'mainmenu'
]
==
$mainmenu
)
$menutopid
=
$menu
[
'rowid'
];
// Define $chaine
$chaine
=
""
;
$title
=
$langs
->
trans
(
$menu
[
'titre'
]);
...
...
@@ -644,21 +649,23 @@ class Menubase
}
// Get menutopid
$menutopid
=
''
;
$sql
=
"SELECT m.rowid, m.titre, m.type"
;
/*$sql = "SELECT m.rowid, m.titre, m.type";
$sql.= " FROM " . MAIN_DB_PREFIX . "menu as m";
$sql.= " WHERE m.mainmenu = '".$mainmenu."'";
$sql.= " AND m.menu_handler in('".$menu_handler."','all')";
$sql.= " AND m.entity = ".$conf->entity;
if ($type_user == 0) $sql.= " AND m.usertype in (0,2)";
if ($type_user == 1) $sql.= " AND m.usertype in (1,2)";
$sql.= " AND type = 'top'";
dol_syslog("Menubase::menuLeftCharger sql=".$sql);
// It should have only one response
$resql = $this->db->query($sql);
$menutop = $this->db->fetch_object($resql);
if ($menutop) $menutopid=$menutop->rowid;
$this->db->free($resql);
//print "menutopid=".$menutopid." sql=".$sql;
*/
// Now edit this->newmenu to add entries in tabMenu that are in childs
$this
->
recur
(
$tabMenu
,
$menutopid
,
1
);
...
...
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