Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vtigercrm
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
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
Admin message
Welcome to Vtiger Community. To gain access for account, please contact [ community @ vtiger.com ]
Show more breadcrumbs
Code80
vtigercrm
Commits
e5d316cc
Commit
e5d316cc
authored
6 years ago
by
Adrien Faveraux
Browse files
Options
Downloads
Patches
Plain Diff
Preserve Gloval variable interpolation
parent
b78a515f
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
include/Webservices/PreserveGlobal.php
+12
-12
12 additions, 12 deletions
include/Webservices/PreserveGlobal.php
with
12 additions
and
12 deletions
include/Webservices/PreserveGlobal.php
+
12
−
12
View file @
e5d316cc
...
...
@@ -14,42 +14,42 @@ class VTWS_PreserveGlobal{
static
function
preserveGlobal
(
$name
,
$value
){
//$name store the name of the global.
global
$$name
;
global
$
{
$name
}
;
//To not push null value . Ideally we should not push null value for any name
//But current user null is dangerous so we are checking for only current user
if
(
!
empty
(
$$name
)
||
$name
!=
'current_user'
)
{
if
(
!
empty
(
$
{
$name
}
)
||
$name
!=
'current_user'
)
{
if
(
!
is_array
(
VTWS_PreserveGlobal
::
$globalData
[
$name
])){
VTWS_PreserveGlobal
::
$globalData
[
$name
]
=
array
();
}
VTWS_PreserveGlobal
::
$globalData
[
$name
][]
=
$$name
;
VTWS_PreserveGlobal
::
$globalData
[
$name
][]
=
$
{
$name
}
;
}
$$name
=
$value
;
return
$$name
;
$
{
$name
}
=
$value
;
return
$
{
$name
}
;
}
static
function
restore
(
$name
){
//$name store the name of the global.
global
$$name
;
global
$
{
$name
}
;
if
(
is_array
(
VTWS_PreserveGlobal
::
$globalData
[
$name
])
&&
count
(
VTWS_PreserveGlobal
::
$globalData
[
$name
])
>
0
){
$$name
=
array_pop
(
VTWS_PreserveGlobal
::
$globalData
[
$name
]);
$
{
$name
}
=
array_pop
(
VTWS_PreserveGlobal
::
$globalData
[
$name
]);
}
$$name
;
$
{
$name
}
;
}
static
function
getGlobal
(
$name
){
global
$$name
;
return
VTWS_PreserveGlobal
::
preserveGlobal
(
$name
,
$$name
);
global
$
{
$name
}
;
return
VTWS_PreserveGlobal
::
preserveGlobal
(
$name
,
$
{
$name
}
);
}
static
function
flush
(){
foreach
(
VTWS_PreserveGlobal
::
$globalData
as
$name
=>
$detail
)
{
//$name store the name of the global.
global
$$name
;
global
$
{
$name
}
;
if
(
is_array
(
VTWS_PreserveGlobal
::
$globalData
[
$name
])
&&
count
(
VTWS_PreserveGlobal
::
$globalData
[
$name
])
>
0
)
{
$$name
=
array_pop
(
VTWS_PreserveGlobal
::
$globalData
[
$name
]);
$
{
$name
}
=
array_pop
(
VTWS_PreserveGlobal
::
$globalData
[
$name
]);
}
}
}
...
...
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