Advertisement
Guest User

Untitled

a guest
Jan 14th, 2022
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.94 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 : 5.0.0.0
  8. * @ Author : DeZender
  9. * @ Release on : 14.12.2021
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13. defined('ABSPATH') || exit('Access Restricted');
  14. $this->settings['general-001'] = ['section' => 'general', 'title' => '', 'desc' => __('General', MWP_TEXT_DOMAIN), 'type' => 'heading'];
  15. $this->settings['favicon'] = ['section' => 'general', 'title' => __('Site Favicon', MWP_TEXT_DOMAIN), 'desc' => __('Upload a favicon image (16 x 16px) .png or .ico - <a target="_blank" href="https://store.mwordpress.net/how-to-change-theme-favicon/">need help</a>', MWP_TEXT_DOMAIN), 'type' => 'upload', 'class' => 'plus-button', 'std' => ''];
  16. $this->settings['google-analytics-type'] = [
  17. 'section' => 'general',
  18. 'title' => __('Google Analytics - Code type', MWP_TEXT_DOMAIN),
  19. 'desc' => '',
  20. 'class' => 'to-labelauty',
  21. 'type' => 'radio-j',
  22. 'std' => '1',
  23. 'choices' => [1 => 'analytics.js', 2 => 'gtag.js']
  24. ];
  25. $this->settings['google-analytics'] = ['title' => __('Google Analytics', MWP_TEXT_DOMAIN), 'desc' => __('Tracking Code Example : UA-00042521-6 <br> Follow the instructions in the following link <a target="_blank" href="https://store.mwordpress.net/google-analytics-documentation/">Google Analytics Documentation</a>', MWP_TEXT_DOMAIN), 'std' => '', 'type' => 'text', 'section' => 'general'];
  26. $this->settings['alexa_atrk_acct'] = ['title' => __('Alexa Certify : Account ID', MWP_TEXT_DOMAIN), 'desc' => __('Tracking Code Example : HdpHq1DlQy2546 <br> Follow the instructions in the following link <a target="_blank" href="https://store.mwordpress.net/alexa-certify-documentation/">Alexa Certify</a>', MWP_TEXT_DOMAIN), 'std' => '', 'type' => 'text', 'section' => 'general'];
  27. $this->settings['alexa_domain'] = ['title' => __('Alexa Certify : Domain Name', MWP_TEXT_DOMAIN), 'desc' => __('type your domain name Example : site.com', MWP_TEXT_DOMAIN), 'std' => '', 'type' => 'text', 'section' => 'general'];
  28. $this->settings['facebook-pixel'] = ['title' => __('Facebook Pixel ID', MWP_TEXT_DOMAIN), 'desc' => __('Add your facebook pixel ID', MWP_TEXT_DOMAIN), 'std' => '', 'type' => 'text', 'section' => 'general'];
  29. $this->settings['title-heading'] = ['section' => 'general', 'title' => '', 'desc' => __('Header', MWP_TEXT_DOMAIN), 'type' => 'heading'];
  30. $this->settings['header-template'] = [
  31. 'section' => 'general',
  32. 'title' => __('Header template', MWP_TEXT_DOMAIN),
  33. 'desc' => '',
  34. 'std' => '2',
  35. 'type' => 'select',
  36. 'choices' => [1 => __('Style 1', MWP_TEXT_DOMAIN), 2 => __('Style 2', MWP_TEXT_DOMAIN)]
  37. ];
  38. $this->settings['logo-txt'] = ['title' => __('Logo Text', MWP_TEXT_DOMAIN), 'desc' => '', 'std' => '', 'type' => 'text', 'class' => 'text-input', 'section' => 'general'];
  39. $this->settings['logo-img'] = ['title' => __('Logo', MWP_TEXT_DOMAIN), 'desc' => '', 'std' => '', 'type' => 'upload', 'class' => 'plus-button text-input', 'section' => 'general'];
  40. $this->settings['logo-img-dark'] = ['title' => __('Logo (Dark Mode)', MWP_TEXT_DOMAIN), 'desc' => '', 'std' => '', 'type' => 'upload', 'class' => 'plus-button text-input', 'section' => 'general'];
  41. $this->settings['search-placeholder'] = ['title' => __('Search Placeholder', MWP_TEXT_DOMAIN), 'desc' => '', 'std' => '', 'type' => 'text', 'class' => 'text-input', 'section' => 'general'];
  42. $this->settings['display-login'] = ['section' => 'general', 'title' => __('Log in'), 'desc' => '', 'type' => 'checkbox', 'std' => 1];
  43. $this->settings['general-002'] = ['section' => 'general', 'title' => '', 'desc' => __('Home & Archive', MWP_TEXT_DOMAIN), 'type' => 'heading'];
  44. $this->settings['home-type'] = [
  45. 'section' => 'general',
  46. 'title' => __('Choose Home type', MWP_TEXT_DOMAIN),
  47. 'desc' => '',
  48. 'class' => 'to-labelauty',
  49. ............................................................................
  50. ..................................................
  51. ...............
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement