Advertisement
Guest User

Untitled

a guest
Aug 5th, 2018
130
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 (PHP7 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 4.0.5.1
  8. * @ Author : DeZender
  9. * @ Release on : 28.07.2018
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. function adsw_admin_init()
  15. {
  16. $args = adsw_config_menu();
  17. $menu = new adsw\adsMenu($args, ['title' => 'AliDropship Woo', 'capability' => 'activate_plugins', 'slug' => 'adsw', 'callback' => 'adsw_admin_import', 'icon' => ADSW_URL . '/assets/img/logo.png']);
  18. $menu->setupMenu();
  19. }
  20.  
  21. function adsw_wp_loader()
  22. {
  23. if (is_admin()) {
  24. adsw_admin_init();
  25. }
  26. }
  27.  
  28. function adsw_admin_import()
  29. {
  30. wp_enqueue_style('ellk-slick-theme', ADSW_URL . '/assets/js/global/slick/slick-theme.css', '', ADSW_VERSION);
  31. wp_enqueue_style('ellk-product-import', ADSW_URL . '/assets/css/product-import.css', '', ADSW_VERSION);
  32. wp_enqueue_script('ellk-import-product');
  33. .................................................................
  34. ...................................
  35. ............
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement