Ich habe versucht, das Admin Menu durch eigenen Punkt zu erweitern.
Ich bekomme das Template angezeigt und kann den Submit button betätigen.
Mit dem Post wird die Admin-Seite geöffnet, aber das admin Menu links fehlt.
Wie bekomme ich das Menu wieder angezeit oder wo ist da ein Fehler?
Kann mir hier jemand weiterhelfen?
tmpl-file:
<div style="padding:20px;">
<hr>
<form name="gcgProcessImport" id="gcgProcessImport" action="[{ $oViewConf->getSelfLink() }]" method="post" target="list">
<input type="hidden" name="cl" value="[{$oViewConf->getActiveClassName()}]">
<input type="hidden" name="fnc" value="gcgProcessImport">
[{ $oViewConf->getHiddenSid() }]
<br>Verarbeitung starten:<br><br>
<input class="confinput" type="Submit" name="gcgProcessImport" value="Process Import" onClick="return confirm('Wirklich ausführen ?')" [{$readonly}]>
</form>
</div>
php-Class:
class goldline__config extends Shop_Config
{
/**
* class template.
* @var string
*/
protected $_sThisTemplate = 'goldline__config.tpl';
/**
* @extend render
* @return string
*/
public function render()
{
$this->_aViewData['gcg_config'] = $this->getConfig()->getShopConfVar('gcg_config');
return $this->_sThisTemplate;
}
public function gcgProcessImport()
{
$gcgArticle = new gcgVendorimport();
# return $this->_sThisTemplate;
}
}
Ich bekomme das Template angezeigt und kann den Submit button betätigen.
Mit dem Post wird die Admin-Seite geöffnet, aber das admin Menu links fehlt.
Wie bekomme ich das Menu wieder angezeit oder wo ist da ein Fehler?
Kann mir hier jemand weiterhelfen?
tmpl-file:
<div style="padding:20px;">
<hr>
<form name="gcgProcessImport" id="gcgProcessImport" action="[{ $oViewConf->getSelfLink() }]" method="post" target="list">
<input type="hidden" name="cl" value="[{$oViewConf->getActiveClassName()}]">
<input type="hidden" name="fnc" value="gcgProcessImport">
[{ $oViewConf->getHiddenSid() }]
<br>Verarbeitung starten:<br><br>
<input class="confinput" type="Submit" name="gcgProcessImport" value="Process Import" onClick="return confirm('Wirklich ausführen ?')" [{$readonly}]>
</form>
</div>
php-Class:
class goldline__config extends Shop_Config
{
/**
* class template.
* @var string
*/
protected $_sThisTemplate = 'goldline__config.tpl';
/**
* @extend render
* @return string
*/
public function render()
{
$this->_aViewData['gcg_config'] = $this->getConfig()->getShopConfVar('gcg_config');
return $this->_sThisTemplate;
}
public function gcgProcessImport()
{
$gcgArticle = new gcgVendorimport();
# return $this->_sThisTemplate;
}
}