2014-07-01 78 views
0

我知道這是你如何讓條款和條件的內容,通過網址獲取條款和條件的內容?

<?php if (!$this->getAgreements()) return; ?> 
<form action="" id="checkout-agreements" onsubmit="return false;"> 
<ol> 
<?php foreach ($this->getAgreements() as $_a): ?> 
    <li> 
     <div id="agreement-block-<?php echo $_a->getId();?>" class="agreement-content <?php if (Mage::helper('opc')->getTermsType()):?>hidden<?php endif?>"<?php echo ($_a->getContentHeight() ? ' style="height:' . $_a->getContentHeight() . '"' : '')?>> 
      <?php if ($_a->getIsHtml()):?> 
       <?php echo $_a->getContent() ?> 
      <?php else:?> 
       <?php echo nl2br($this->htmlEscape($_a->getContent())) ?> 
      <?php endif; ?> 
     </div> 
     <div class="form-group checkbox"> 
      <label> 
       <input type="checkbox" id="agreement-<?php echo $_a->getId()?>" name="agreement[<?php echo $_a->getId()?>]" value="1" title="<?php echo $this->htmlEscape($_a->getCheckboxText()) ?>" /> 
       <a class="button-cart-simple button-agreement" data-id="<?php echo $_a->getId();?>" data-toggle="modal" data-target="#myModal"><?php echo $_a->getIsHtml() ? $_a->getCheckboxText() : $this->htmlEscape($_a->getCheckboxText()) ?></a> 
      </label> 
     </div> 
    </li> 
<?php endforeach ?> 
</ol> 
</form> 

但我可以通過URL訪問該頁面?

+0

你能解釋一下您的要求在期限條件值。 – MTM

回答

1

你可以在那裏使用的Magento以下 代碼

if (Mage::getStoreConfigFlag('checkout/options/enable_agreements')) { 

       $agreements = Mage::getModel('checkout/agreement')->getCollection() 
        ->addStoreFilter(Mage::app()->getStore()->getId()) 
        ->addFieldToFilter('is_active', 1); 
      }