Cms.php 370 B

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