Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
VirtueMart
EU Sales Reports for VirtueMart
Commits
8466a160
Commit
8466a160
authored
Nov 12, 2016
by
Reinhold Kainhofer
Browse files
V0.8: Fix function signature that changed in VmController in the latest VM versions
parent
f323b31b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
8466a160
BASE
=
eurecap
PLUGINTYPE
=
vmextended
VERSION
=
0.
7
VERSION
=
0.
8
PLUGINFILES
=
$(BASE)
.php
$(BASE)
.script.php
$(BASE)
.xml index.html
# $(BASE)/
...
...
controllers/eurecap.php
View file @
8466a160
...
...
@@ -57,7 +57,7 @@ class VirtuemartControllerEuRecap extends VmController {
$this
->
display
();
}
function
display
(
$
layout
=
''
)
{
function
display
(
$
cachable
=
false
,
$urlparams
=
false
)
{
if
(
vRequest
::
getVar
(
'format'
)
==
'raw'
)
{
// Raw forman means "Export"!!!
// Ideally, we would use an export task, but unfortunately
...
...
@@ -78,7 +78,7 @@ class VirtuemartControllerEuRecap extends VmController {
$view
->
setLayout
(
$layout
);
}
return
parent
::
display
(
$
layout
);
return
parent
::
display
(
$
cachable
,
$urlparams
);
}
/**
...
...
eurecap.xml
View file @
8466a160
...
...
@@ -7,7 +7,7 @@
<authorUrl>
http://www.open-tools.net/
</authorUrl>
<copyright>
Copyright (C) 2015 Reinhold Kainhofer. All rights reserved.
</copyright>
<license>
http://www.gnu.org/licenses/gpl-3.0.html GNU/GPLv3
</license>
<version>
0.
7
</version>
<version>
0.
8
</version>
<releaseDate>
2016-01-01
</releaseDate>
<releaseType>
Update
</releaseType>
<downloadUrl>
http://www.open-tools.net
</downloadUrl>
...
...
releases/plg_vmextended_eurecap_v0.8.zip
0 → 100644
View file @
8466a160
File added
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment