* @link https://www.oxidmodule.com */ /** * Importer price2art manager. * * @package admin */ class d3_importer_Application_Controller_Admin_Articleimport_Scales extends d3_importer_Application_Controller_Admin_Base { /** * Current class default template name. * * @var string */ protected $_sThisTemplate = 'd3_importer_price2art.tpl'; /** * defines profile name * * @var string */ protected $currentProfileName = 'd3_importer_price2art'; /** * Executes parent method parent::render(), creates oxlist object, * passes it's data to Smarty engine and retutns name of template * file "d3_importer_category.tpl". * * @return string * @throws \D3\ModCfg\Application\Model\Exception\d3ShopCompatibilityAdapterException * @throws \D3\ModCfg\Application\Model\Exception\d3_cfg_mod_exception * @throws \Doctrine\DBAL\DBALException * @throws \OxidEsales\Eshop\Core\Exception\DatabaseConnectionException * @throws \OxidEsales\Eshop\Core\Exception\DatabaseErrorException * @throws \OxidEsales\Eshop\Core\Exception\StandardException */ public function render() { $sReturn = parent::render(); $this->readCurrentCSVLine(); return $sReturn; } /** * @param d3_importer_Application_Models_ImportConfig $oImportConfig * * @return array */ protected function getFormularElements(d3_importer_Application_Models_ImportConfig $oImportConfig) { // TODO: Implement _getFormularElements() method. return array(); } }