| Server IP : 85.158.181.41 / Your IP : 216.73.217.12 Web Server : Apache System : Linux cloud9-vm129 6.1.178+1-ph #ph SMP PREEMPT_DYNAMIC Wed Jul 29 09:00:54 UTC 2026 x86_64 User : moncbefd ( 1024) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/moncbefd/www.moneta.at/admin/includes/magnalister/php/modules/ |
Upload File : |
<?php
/**
* 888888ba dP .88888. dP
* 88 `8b 88 d8' `88 88
* 88aaaa8P' .d8888b. .d888b88 88 .d8888b. .d8888b. 88 .dP .d8888b.
* 88 `8b. 88ooood8 88' `88 88 YP88 88ooood8 88' `"" 88888" 88' `88
* 88 88 88. ... 88. .88 Y8. .88 88. ... 88. ... 88 `8b. 88. .88
* dP dP `88888P' `88888P8 `88888' `88888P' `88888P' dP `YP `88888P'
*
* m a g n a l i s t e r
* boost your Online-Shop
*
* -----------------------------------------------------------------------------
* $Id: guide.php 1606 2012-07-12 $
*
* (c) 2010 RedGecko GmbH -- http://www.redgecko.de
* Released under the MIT License (Expat)
* -----------------------------------------------------------------------------
*/
defined('_VALID_XTC') or die('Direct Access to this location is not allowed.');
$_pageCSS = '
h4 {
border-bottom: 1px solid #999;
}
';
$_MagnaSession['currentPlatform'] = '';
$_url = array(
'module' => 'guide'
);
include_once(DIR_MAGNALISTER_INCLUDES.'admin_view_top.php');
if ('de' == $_langISO) {
?>
<iframe id="wikiframe"
style="
border: 1px solid #ccc;
width: 100%;
-moz-box-sizing: border-box; box-sizing: border-box; -webkit-box-sizing: border-box;
min-height: 500px;
margin-bottom: 5px;"
src="//wiki.magnalister.com/wiki/Hauptseite">
<a href="http://wiki.magnalister.com/wiki/Hauptseite">http://wiki.magnalister.com/</a>
</iframe>
<script>/*<![CDATA[*/
$(window.top).resize(function() {
$('#wikiframe').css('height', ($(window.top).innerHeight() - 10)+'px');
});
$(window).load(function() {
$(window.top).resize();
});
/*]]>*/</script>
<?php
include_once(DIR_MAGNALISTER_INCLUDES.'admin_view_bottom.php');
include_once(DIR_WS_INCLUDES . 'application_bottom.php');
exit();
} else {
$sHelpTextFile = DIR_MAGNALISTER_FS_CACHE.'help'.$_langISO.'.html';
$sHelpTextUrl = MAGNA_SERVICE_URL.MAGNA_APIRELATED.'Help/?&lang='.$_langISO;
if ( (isset($_GET['module']) && ($_GET['module'] == 'ajax') && isset($_GET['request']) && ($_GET['request'] == 'refreshHelpHtml'))
|| (!file_exists($sHelpTextFile))) {
$sHelpContent = fileGetContents($sHelpTextUrl, $warnings, 10);
if (!empty($sHelpContent)) {
file_put_contents($sHelpTextFile, $sHelpContent);
}
if (isset($_GET['module']) && ($_GET['module'] == 'ajax') && isset($_GET['request']) && ($_GET['request'] == 'refreshHelpHtml')) {
exit();
}
}
$helpText = file_exists($sHelpTextFile) ? file_get_contents($sHelpTextFile) : '';
shopAdminDiePage($helpText.'
<script type="text/javascript">/*<![CDATA[*/
(function(jQuery) {
jQuery(document).ready(function() {
jQuery.get(
"magnalister.php", {
"module":"ajax",
"request":"refreshHelpHtml"
},
function(data) {
//myConsole.log(data);
}
);
});
})(jQuery);
/*]]>*/</script>
');
}