當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Mage_Catalog_Model_Category::getDisplayMode方法代碼示例

本文整理匯總了PHP中Mage_Catalog_Model_Category::getDisplayMode方法的典型用法代碼示例。如果您正苦於以下問題:PHP Mage_Catalog_Model_Category::getDisplayMode方法的具體用法?PHP Mage_Catalog_Model_Category::getDisplayMode怎麽用?PHP Mage_Catalog_Model_Category::getDisplayMode使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Mage_Catalog_Model_Category的用法示例。


在下文中一共展示了Mage_Catalog_Model_Category::getDisplayMode方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: exportData

 protected function exportData(Mage_Catalog_Model_Category $category, $file, $depth = 0)
 {
     $data = array('id' => $category->getId(), 'parent_id' => $category->getParentId(), 'attribute_set_id' => $category->getAttributeSetId(), 'urlPath' => $category->getUrlPath(), 'urlKey' => $category->getUrlKey(), 'path' => $category->getPath(), 'position' => $category->getPosition(), 'page_layout' => $category->getPageLayout(), 'description' => $category->getDescription(), 'display_mode' => $category->getDisplayMode(), 'is_active' => $category->getIsActive(), 'is_anchor' => $category->getIsAnchor(), 'include_in_menu' => $category->getIncludeInMenu(), 'custom_design' => $category->getCustomDesign(), 'level' => $category->getLevel(), 'name' => $category->getName(), 'metaTitle' => $category->getMetaTitle(), 'metaKeywords' => $category->getMetaKeywords(), 'metaDescription' => $category->getMetaDescription());
     echo str_repeat('  ', $depth);
     echo '* ' . $category->getName() . sprintf(' (%s products)', $category->getProductCount()) . PHP_EOL;
     fputcsv($file, $data);
     if ($category->hasChildren()) {
         $children = Mage::getModel('catalog/category')->getCategories($category->getId());
         foreach ($children as $child) {
             $child = Mage::getModel('catalog/category')->load($child->getId());
             $this->exportData($child, $file, $depth + 1);
         }
     }
 }
開發者ID:sonaht,項目名稱:magento-category-migration,代碼行數:14,代碼來源:exportCategories.php

示例2: _checkSetUrlUpdate

 /**
  * @param Mage_Catalog_Model_Category $category
  */
 protected function _checkSetUrlUpdate($category)
 {
     if ($category->getDisplayMode() === Firegento_FlexCms_Model_Source_DisplayMode::CMS_PAGE && $category->getFlexcmsCmsPage()) {
         $category->setUrl(Mage::helper('cms/page')->getPageUrl($category->getFlexcmsCmsPage()));
     }
     if ($category->getDisplayMode() === Firegento_FlexCms_Model_Source_DisplayMode::URL_EXTERNAL && $category->getFlexcmsUrlExternal()) {
         $category->setUrl($category->getFlexcmsUrlExternal());
     }
 }
開發者ID:OurLaborisJoy,項目名稱:FireGento_FlexCms,代碼行數:12,代碼來源:Observer.php


注:本文中的Mage_Catalog_Model_Category::getDisplayMode方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。