Demo.php 423 B

1234567891011
  1. <?php
  2. namespace Smartwave\Porto\Controller\Adminhtml\System\Config;
  3. abstract class Demo extends \Magento\Backend\App\Action {
  4. protected function _import()
  5. {
  6. return $this->_objectManager->get('Smartwave\Porto\Model\Import\Demo')
  7. ->importDemo($this->getRequest()->getParam('demo_version'),$this->getRequest()->getParam('current_store'),$this->getRequest()->getParam('current_website'));
  8. }
  9. }