Advertisement
Guest User

Untitled

a guest
May 30th, 2016
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by deZender.Net
  5. * @ deZender (PHP5 Decoder for Zend Encoder/SafeGuard & PhpExpress)
  6. *
  7. * @ Version : 1.1.6.0
  8. * @ Author : DeZender
  9. * @ Release on : 02.06.2013
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. class jaclplus {
  15. $_path = null;
  16. $_name = null;
  17. $_config = null;
  18. $_passkey = null;
  19.  
  20. public function jaclplus($name = '', $path = '') {
  21. if ($name == '') {
  22. $name = 'jaclConfig';
  23. }
  24.  
  25.  
  26. if ($path == '') {
  27. $path = dirname( __FILE__ ) . DS . 'jaclplus.config.php';
  28. }
  29.  
  30. $this->_path = $path;
  31. $this->_name = $name;
  32. $this->_passkey = 'JACLPlus Pro 1.5.x (C) 2011 Vincent Cheah, ByOS Technologies.';
  33. $this->_loadconfig( );
  34. return null;
  35. }
  36.  
  37. public function getjacl($enable_jaclplus = false) {
  38. static $instance;
  39.  
  40. if (!is_object( $instance )) {
  41. require( dirname( __FILE__ ) . DS . 'jaclplus.config.php' );
  42. $instance = new jaclconfig( );
  43. $instance->override_option = 0;
  44.  
  45. if (( $instance->disable_editing && $instance->enable_jaclplus )) {
  46. $instance->enable_jaclplus = false;
  47. $instance->off_by_jaclplus = true;
  48. } else {
  49. $instance->off_by_jaclplus = false;
  50. }
  51. }
  52.  
  53.  
  54. if ($enable_jaclplus) {
  55. $instance->enable_jaclplus = true;
  56. ...............................................................
  57. ..............................
  58. .........
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement