-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from mambax7/master
Remove pass-by-reference instances
- Loading branch information
Showing
22 changed files
with
2,654 additions
and
2,451 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,12 +22,12 @@ | |
* @uses ModuleAdmin::addNavigation to set the display page | ||
* @uses ModuleAdmin::renderAbout to display the page passing PAYPAL key to method | ||
*/ | ||
|
||
require_once __DIR__ . '/admin_header.php'; | ||
xoops_cp_header(); | ||
|
||
$aboutAdmin = new ModuleAdmin(); | ||
|
||
echo $aboutAdmin->addNavigation(basename(__FILE__)); | ||
echo $aboutAdmin->renderAbout('6KJ7RW5DR3VTJ', false); | ||
$adminObject->displayNavigation(basename(__FILE__)); | ||
\Xmf\Module\Admin::setPaypal('[email protected]'); | ||
$adminObject->displayAbout(false); | ||
|
||
include_once __DIR__ . '/admin_footer.php'; | ||
require_once __DIR__ . '/admin_footer.php'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.