Over the past few months, we have received a lot of requests concerning the revision of our prices.
It’s now done on the batch file prices, with prices reduced by -60% on all our offers !
This offer will remain for life, even on our future services in preparation for file decompilation : PHP 8.0, 8.1, and more.
The Team DeZender
Please Log in or Create an account to join the conversation.
<?php
/**
*
* @ This file is created by deZender.Net
* @ deZender (PHP5 Decoder for ionCube Encoder)
*
* @ Version : 1.1.1.0
* @ Author : DeZender
* @ Release on : 2011.01.04
* @ Official site : http://DeZender.Net
*
*/
class markets {
protected $registry = null;
protected $DB = null;
protected $settings = null;
protected $request = null;
protected $lang = null;
protected $member = null;
protected $memberData = null;
protected $cache = null;
protected $categories = null;
var $version = '3.1.1';
function __construct(&$ipsRegistry) {
$this->registry = &$ipsRegistry;
$this->DB = $this->registry->DB( );
$this->settings = &$this->registry->fetchSettings( );
$this->request = &$this->registry->fetchRequest( );
$this->lang = $this->registry->getClass( 'class_localization' );
$this->member = $this->registry->member( );
$this->memberData = &$this->registry->member( )->fetchMemberData( );
$this->cache = $this->registry->cache( );
$this->caches = &$this->cache->fetchCaches( );
$this->CurApp = $this->registry->getCurrentApplication( );
$this->Check2( );
if (IN_ACP == 1) {
$this->registry->class_localization->loadLanguageFile( array( 'admin_markets', 'admin_errors' ), 'markets' );
} else {
$this->registry->class_localization->loadLanguageFile( array( 'public_markets', 'public_errors' ), 'markets' );
if ($this->CurApp == 'markets') {
$this->registry->output->addToDocumentHead( 'css', $this->settings['board_url'] . '/public/style_css/' . $this->registry->output->skin['_csscacheid'] . '/markets.css' );
}
}
if (IN_ACP == 0) {
if (( !$this->CanAccess( ) && !$this->request['do'] == 'ipn' )) {
$this->registry->output->showError( '' . 'You Do not Have Access to ' . $this->settings['marketssysname'] );
}
if (( $this->settings['markets_offline'] == 1 && !$this->CanAccessClose( ) )) {
$this->registry->output->showError( 'System Offline' );
$this->request['Message'] = 'System Is Offline & can be viewed only by Admins';
}
}
if (!$this->caches['markets_general']) {
$this->caches['markets_general'] = $this->registry->cache( )->getCache( 'markets_general' );
}
}
function Check2() {
$this->appDir = 'markets';
$this->Support = ' Amged Osman [email protected]';
$this->securityCode = 'AMGEDOSMANRCS0106616906';
$this->Custom = 'custom.php';
$this->theSystem = 'Marketplace';
$filename = IPSLib::getappdir( $this->appDir ) . '/modules_public/custom/' . $this->Custom;
..........
.......
....
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.