fork download
  1. $helper->identifier = $this->identifier;
  2. $helper->submit_action = 'btnSubmit';
  3. $helper->currentIndex = $this->context->link->getAdminLink('AdminModules', false) . '&configure=' . $this->name . '&tab_module=' . $this->tab . '&module_name=' . $this->name;
  4. $helper->token = Tools::getAdminTokenLite('AdminModules');
  5. $helper->tpl_vars = array(
  6. 'fields_value' => $this->getConfigFieldsValues(),
  7. 'languages' => $this->context->controller->getLanguages(),
  8. 'id_language' => $this->context->language->id
  9. );
  10. return $helper->generateForm(array($fields_form));
  11. }
Success #stdin #stdout 0.03s 22988KB
stdin
Standard input is empty
stdout
    $helper->identifier = $this->identifier;
        $helper->submit_action = 'btnSubmit';
        $helper->currentIndex = $this->context->link->getAdminLink('AdminModules', false) . '&configure=' . $this->name . '&tab_module=' . $this->tab . '&module_name=' . $this->name;
        $helper->token = Tools::getAdminTokenLite('AdminModules');
        $helper->tpl_vars = array(
            'fields_value' => $this->getConfigFieldsValues(),
            'languages' => $this->context->controller->getLanguages(),
            'id_language' => $this->context->language->id
        );
        return $helper->generateForm(array($fields_form));
    }