Advertisement
Guest User

Untitled

a guest
Aug 8th, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by http://DeZender.Net
  5. * @ deZender (PHP5 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 3.0.7.0
  8. * @ Author : DeZender
  9. * @ Release on : 22.06.2017
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. defined( 'BASEPATH' ) || exit( 'No direct script access allowed' );
  15. require dirname( __FILE__ ) . '/Base.php';
  16.  
  17. class MX_Controller
  18. {
  19. public $autoload = array( );
  20.  
  21. public function __construct()
  22. {
  23. $class = str_replace( CI::$APP->config->item( 'controller_suffix' ), '', get_class( $this ) );
  24. log_message( 'debug', $class . ' MX_Controller Initialized' );
  25. Modules::$registry[strtolower( $class )] = $this;
  26. $this->load = clone load_class( 'Loader' );
  27. $this->load->initialize( $this );
  28. $CI = &get_instance( );
  29. $MAXIMUM_ACCOUNT = 0;
  30. $settings = $CI->db->select( '*' )->get( SETTINGS_TB )->row( );
  31.  
  32. if (!(empty( $settings ))) {
  33. ................................................................
  34. ....................................
  35. .............
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement