_objectId = 'id'; $this->_blockGroup = 'Magefan_Blog'; $this->_controller = 'adminhtml_import'; $this->_mode = 'wordpress'; parent::_construct(); if (!$this->_isAllowedAction('Magefan_Blog::import')) { $this->buttonList->remove('save'); } else { $this->updateButton( 'save', 'label', __('Start Import') ); } $this->buttonList->remove('delete'); } /** * Check permission for passed action * * @param string $resourceId * @return bool */ protected function _isAllowedAction($resourceId) { return $this->_authorization->isAllowed($resourceId); } /** * Get form save URL * * @see getFormActionUrl() * @return string */ public function getSaveUrl() { return $this->getUrl('*/*/run', ['_current' => true]); } }