Guest User

Untitled

a guest
Jun 24th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <?php
  2.  
  3. //
  4.  
  5. class Catalog_SectionsController extends Extend_XajaxAction
  6. {
  7. private $config;
  8. private $sessionId;
  9. private $user;
  10. private $currencyId;
  11. private $catalogSettingsSession;
  12.  
  13. public function init()
  14. {
  15.  
  16. parent::init();
  17.  
  18.  
  19.  
  20. }
  21.  
  22.  
  23. // Просмотр текущей секции и разбивка товаров на страницы
  24. public function viewsectionAction()
  25. {
  26.  
  27.  
  28.  
  29.  
  30. }
  31.  
  32. // Аяксовые действия с корзиной товаров
  33.  
  34. public function ajaxHelloWorld()
  35. {
  36. $response = new xajaxResponse();
  37. $response->alert('Hello World!!!');
  38. return $response;
  39. }
  40.  
  41. }
Add Comment
Please, Sign In to add comment