Ben Magento'nın sevk sisteminin nasıl çalıştığını tam olarak anlamaya çalışıyorum.
Ben uygulama dizininin dışından düzen belli bir bölümünü (örneğin gövde) göndermek istiyorum.
Ben bugüne kadar ne;
<?php
$app = Mage::app();
$myRequestUri = '/checkout/cart';
$front = $app->getFrontController();
$request = $front->getRequest();
$request->setRequestUri($myRequestUri);
// dispatch everything
$front->dispatch();
?>
Dispatching goes OK, but i need to strip this down to just the body or a certain block. Also the generated HTML should be returned instead of outputting it directly (better not using output buffering).
/ / Roland
Edit: I've added the progress i made, stil leaves me with some questions.