Advertisement
Guest User

Untitled

a guest
Jul 28th, 2021
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by http://DeZender.Net
  5. * @ deZender (PHP7 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 4.1.0.1
  8. * @ Author : DeZender
  9. * @ Release on : 29.08.2020
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. function wordpressmu_config()
  15. {
  16. $configarray = [
  17. 'name' => 'WordPress Provisioning',
  18. 'version' => '1.6.1',
  19. 'author' => 'i-Plugins',
  20. 'language' => 'english',
  21. 'fields' => [
  22. 'licensekey' => ['FriendlyName' => 'License Key', 'Type' => 'text', 'Description' => 'Your Multi-Site Provisioning License Key'],
  23. 'debug' => ['FriendlyName' => 'Debug', 'Type' => 'yesno', 'Description' => 'Activate debug if you encounter problems, it will provide additional information helpful in resolving the issue.']
  24. ]
  25. ];
  26. return $configarray;
  27. }
  28.  
  29. function wordpressmu_activate()
  30. {
  31. }
  32.  
  33. function wordpressmu_deactivate()
  34. {
  35. }
  36.  
  37. function wordpressmu_upgrade($vars)
  38. {
  39. }
  40.  
  41. function wordpressmu_output($vars)
  42. {
  43. $modulelink = $vars['modulelink'];
  44. $version = $vars['version'];
  45. ..........................................................................
  46. ...........................................
  47. ...................
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement