Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- *
- * @ This file is created by http://DeZender.Net
- * @ deZender (PHP5 Decoder for ionCube Encoder)
- *
- * @ Version : 3.0.7.0
- * @ Author : DeZender
- * @ Release on : 22.06.2017
- * @ Official site : http://DeZender.Net
- *
- */
- if (!(defined( '_PS_VERSION_' ))) {
- exit( );
- }
- if (!(function_exists( 'pr' ))) {
- function pr($var, $pre = true)
- {
- if ($pre) {
- echo '<pre>';
- print_r( $var );
- echo '</pre>';
- }
- else {
- print_r( $var );
- }
- }
- }
- if (!(function_exists( 'file_log' ))) {
- function file_log($filename, $data)
- {
- file_put_contents( _PS_MODULE_DIR_ . 'ngmercadolivre/' . $filename, $data );
- }
- }
- if (!(class_exists( 'ngmercadolivreException' ))) {
- class ngmercadolivreException extends Exception
- { }
- }
- if (!(class_exists( 'base_ngmercadolivre', false ))) {
- class base_ngmercadolivre extends NgModule
- {
- private static $whatchdog_interval = 600;
- private static $sleep_time = 5;
- private static $notification_handler_duration = 86400;
- protected $tabs = array( array(
- 'name' => 'Mercado Livre',
- 'className' => 'mercadolivre',
- 'active' => 1,
- 'childs' => array(
- array(
- 'active' => 1,
- 'name' => 'Produtos',
- 'className' => 'AdminNgMercadoLivreProducts'
- ),
- array(
- 'active' => 1,
- 'name' => 'Anúncios',
- 'className' => 'AdminNgMercadoLivreItems'
- ),
- array(
- 'active' => 1,
- 'name' => 'Perguntas',
- 'className' => 'AdminNgMercadoLivreQuestions'
- ),
- array(
- 'active' => 1,
- 'name' => 'Pedidos',
- 'className' => 'AdminNgMercadoLivreOrders'
- ),
- array(
- 'active' => 1,
- 'name' => 'Qualificações',
- 'className' => 'AdminNgMercadoLivreFeedbacks'
- ),
- array(
- 'active' => 1,
- 'name' => 'Templates',
- 'className' => 'AdminNgMercadoLivreTemplate'
- ),
- array(
- 'active' => 1,
- 'name' => 'Notificações',
- 'className' => 'AdminNgMercadoLivreNotifications'
- ),
- array(
- 'active' => 0,
- 'name' => 'Imagens',
- 'className' => 'AdminNgMercadoLivreProductPictures'
- ),
- array(
- 'active' => 0,
- 'name' => 'Tradutor',
- 'className' => 'AdminNgMercadoLivreTranslator'
- ),
- array(
- 'active' => 0,
- 'name' => 'Download de Histórico de Anúncios',
- 'className' => 'AdminNgMercadoLivreHistoryDownload'
- ................................................
- ...........................
- .......
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement