view.phtml dosyasında statik bloğu çağırın phtml dosyası


14

COD kullanılabilirliğini kontrol etmek için görünüm sayfasında metin alanı görüntülüyoruz.

resim açıklamasını buraya girin

view.phtml

echo $this->getLayout()->createBlock('core/template')->setTemplate('checkdelivery/checkdelivery.phtml')->toHtml();

içinde view.phtmlaşağıdaki dosyayı çağırıyoruz. ama aşağıdaki dosya yerine statik blok tanımlayıcı [tanımlayıcı kodu - kontrol] aramak istiyorum .

Şablon / checkdelivery / checkdelivery.phtml

<div class="block block-list block-check-delivery">
    <div class="block-title">
        <?php $blockLabel = Mage::getStoreConfig('checkdelivery/general/block_title'); ?>
        <strong><span><?php echo $this->__($blockLabel) ?></span></strong>
    </div>
    <div class="block-content" >        
        <br>
            <input name="zipcode" size="17" type="text" id="zipcode" value="<?php echo Mage::getModel('core/cookie')->get('zip'); ?>" maxlength="10" class="input-text" placeholder="<?php echo $this->__('Enter ZIP Code'); ?>"/>
            <button type="button" name="zip-check" title="Check" class="button" id="zip-check" ><span><?php echo $this->__('Check'); ?></span></button>
            <div id="delivery-message"></div>
            <?php $defaultHtml = Mage::getStoreConfig('checkdelivery/general/default_html'); ?>
            <div id="delivery-html"><?php if(Mage::getModel('core/cookie')->get('message')){
    echo Mage::getModel('core/cookie')->get('message');
}
else{
    $defaultHtml; } ?></div>

        <br>        
    </div>

</div>

<script>
    Event.observe('zip-check', 'click', function(event){
        new Ajax.Request("<?php echo $this->getUrl('checkdelivery/index/index') ?>", {
            method: "get",
            parameters: {zipcode : $('zipcode').value },
            onSuccess: function(transport) {
                 var json = transport.responseText.evalJSON();
                 $('delivery-message').update(json.message);                 
                 $('delivery-message').setStyle({ color: json.color});
                 $('delivery-html').update(json.html);  
            }
        });
    });
</script>

statik blok kodu:

<p>{{block type ="core/template" template = "checkdelivery/checkdelivery.phtml"}}</p>

Yanıtlar:


44

Aşağıdaki kodu kullanabilirsiniz:

.phtml dosyasında:

<?php
  echo $this->getLayout()->createBlock('cms/block')->setBlockId('block_identifier')->toHtml(); 
?> 

örneklem :

<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('home')->toHtml(); ?> 

statik blok / cms sayfasında:

{{block type="core/template" template="checkdelivery/checkdelivery.phtml"}}


artık metin alanı göstermiyor. söz konusu statik blok kodunu güncelledim.
Magento'daki bebek

önbelleğini yeniledin mi?
Qaisar Satti

evet önbellek klasörü silindi, ayrıca tarayıcı önbelleği kaldırıldı.
Magento'daki bebek

1
{{block type ="core/template" template="checkdelivery/checkdelivery.phtml" }}alanı kaldırın ve system->permission ->blocklistelendiğini kontrol edin (çekirdek / şablon)?
Qaisar Satti

1
-> createBlock ('cms / block') yerine createBlock ('Magento \ Cms \ Block \ Block') benim için konuştu :) Bu ipucu için teşekkürler!
Rustyjim

3

Yönetici panelinden 'block_identifier' adlı bir CMS bloğu oluşturduysanız. Sonra onları .phtml'de aramak için kod olacak

<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('block_identifier')->toHtml(); 
?> 

Önbelleği temizleyin ve tarayıcınızı yeniden yükleyin.

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.