Wie finde ich Links auf Module im Template?

Bei dieser Paypal Problemlösung steht in Schritt 2:

  1. Ich würde persönlich rangehen und im Template-Ordner (alternativ über den gesamten Shop, ausser in tmp/) nach Rudimenten der alten PayPal-Module suchen. Das geht entweder in Eurer IDE oder auf der Konsole des Servers mit $ grep -lir ‘paypal’. In den gefundenen Template-Dateien bitte die entsprechenden Template-Blöcke auskommentieren oder löschen.

Da habe ich nichts gefunden, darum frage ich mich: Wie sieht es denn aus, wenn ein Modul in ein Template eingebunden ist?

Dann siehst du eine Fehlermeldung im exception log

Ok, wenn ich dann so eine Exception habe:

oxException (time: 2014-12-03 11:45:07): [0]: Template block file (/var/www/shop//modules/oepaypal/out/blocks/widget/minibasket/oepaypalexpresscheckoutminibasket.tpl) not found for 'oepaypal' module.
 Stack Trace: #0 /var/www/shop/core/oxutilsobject.php(125): oxUtilsObject->_getObject('oxexception', 1, Array)
#1 [internal function]: oxUtilsObject->oxNew('oxException', 'Template block ...')
#2 /var/www/shop/core/oxfunctions.php(288): call_user_func_array(Array, Array)
#3 /var/www/shop/core/oxutilsview.php(420): oxNew('oxException', 'Template block ...')
#4 /var/www/shop/core/oxutilsview.php(467): oxUtilsView->_getTemplateBlock('oepaypal', 'widget/minibask...')
#5 /var/www/shop/core/smarty/plugins/prefilter.oxblock.php(44): oxUtilsView->getTemplateBlocks('widget/minibask...')
#6 [internal function]: smarty_prefilter_oxblock('[{oxscript incl...', Object(Smarty_Compiler))
#7 /var/www/shop/core/smarty/Smarty_Compiler.class.php(249): call_user_func_array('smarty_prefilte...', Array)
#8 /var/www/shop/core/smarty/Smarty.class.php(1489): Smarty_Compiler->_compile_file('widget/minibask...', '[{oxscript incl...', NULL)
#9 /var/www/shop/core/smarty/Smarty.class.php(1422): Smarty->_compile_source('widget/minibask...', '[{oxscript incl...', NULL, '/var/www/shop...')
#10 /var/www/shop/core/smarty/Smarty.class.php(1261): Smarty->_compile_resource('widget/minibask...', '/var/www/shop...')
#11 /var/www/shop/core/smarty/plugins/function.oxid_include_dynamic.php(68): Smarty->fetch('widget/minibask...')
#12 /var/www/shop/tmp/984038deff3caedda8c939205f4e5c97^%%93^93D^93D6031B%%header.tpl.php(33): smarty_function_oxid_include_dynamic(Array, Object(Smarty))
#13 /var/www/shop/core/smarty/Smarty.class.php(1869): include('/var/www/shop...')
#14 /var/www/shop/tmp/984038deff3caedda8c939205f4e5c97^%%36^366^366ECF91%%page.tpl.php(7): Smarty->_smarty_include(Array)
#15 /var/www/shop/core/smarty/Smarty.class.php(1869): include('/var/www/shop...')
#16 /var/www/shop/tmp/984038deff3caedda8c939205f4e5c97^%%40^405^405277AF%%start.tpl.php(67): Smarty->_smarty_include(Array)
#17 /var/www/shop/core/smarty/Smarty.class.php(1263): include('/var/www/shop...')
#18 /var/www/shop/views/oxshopcontrol.php(422): Smarty->fetch('page/shop/start...', 'ox|1|0|0|0')
#19 /var/www/shop/views/oxshopcontrol.php(301): oxShopControl->_render(Object(Start))
#20 /var/www/shop/views/oxshopcontrol.php(114): oxShopControl->_process('start', NULL)
#21 /var/www/shop/modules/d3/autoload/views/d3_oxshopcontrol_autoload.php(33): oxShopControl->start()
#22 /var/www/shop/modules/d3log/views/d3_oxshopcontrol_errorhandler.php(14): d3_oxshopcontrol_autoload->start()
#23 /var/www/shop/modules/d3clrtmp/views/d3_oxshopcontrol_clrtmp.php(19): d3_oxshopcontrol_errorhandler->start()
#24 /var/www/shop/index.php(98): d3_oxshopcontrol_clrtmp->start()
#25 {main}

Wie finde ich damit das richtige Template und die Zeile in der da etwas falsches eingebunden ist? Also wie sieht dieser include aus? …

Ok, /tmp/984038deff3caedda8c939205f4e5c97^%%93^93D^93D6031B%%header.tpl.php Zeile 33:

smarty_function_oxid_include_dynamic(array('file' => "widget/minibasket/minibasket.tpl"), $this);

und im original template steht dann: [{oxid_include_dynamic file=“widget/minibasket/minibasket.tpl”}]

dann gibt es da ein Modul das in metadata.php mit ‘blocks’ scheinbar genau dieses Template überschreibt.

ok, ich denke das beantwortet meine Frage. Danke!