Advertisement
Guest User

Untitled

a guest
Dec 6th, 2020
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 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. class ControllerCatalogNeoSeoProduct360 extends NeoSeoController
  15. {
  16. private $error = [];
  17.  
  18. public function __construct($registry)
  19. {
  20. parent::__construct($registry);
  21. $this->_moduleSysName = 'neoseo_product_360';
  22. $this->_modulePostfix = '';
  23. $this->_logFile = $this->_moduleSysName() . '.log';
  24. $this->debug = $this->config->get($this->_moduleSysName() . '_debug') == 1;
  25. }
  26.  
  27. public function getImages($product_id)
  28. {
  29. $data = $this->language->load('catalog/' . $this->_moduleSysName());
  30. $this->load->model('catalog/' . $this->_moduleSysName());
  31. $data['product_images'] = $this->{'model_catalog_' . $this->_moduleSysName()}->getImagesData($product_id);
  32.  
  33. if (!$data['product_images']) {
  34. ....................................................
  35. ............................
  36. ...........
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement