00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 class Mage_CatalogInventory_Helper_Data extends Mage_Core_Helper_Abstract
00031 {
00032
00033
00034
00035
00036
00037 protected static $_isQtyTypeIds;
00038
00039
00040
00041
00042
00043
00044
00045 public function isQty($productTypeId)
00046 {
00047 $this->getIsQtyTypeIds();
00048 if (!isset(self::$_isQtyTypeIds[$productTypeId])) {
00049 return false;
00050 }
00051 return self::$_isQtyTypeIds[$productTypeId];
00052 }
00053
00054
00055
00056
00057
00058
00059
00060 public function getIsQtyTypeIds($filter = null)
00061 {
00062 if (null === self::$_isQtyTypeIds) {
00063 self::$_isQtyTypeIds = array();
00064 $productTypesXml = Mage::getConfig()->getNode('global/catalog/product/type');
00065 foreach ($productTypesXml->children() as $typeId => $configXml) {
00066 self::$_isQtyTypeIds[$typeId] = (bool)$configXml->is_qty;
00067 }
00068 }
00069 if (null === $filter) {
00070 return self::$_isQtyTypeIds;
00071 }
00072 $result = self::$_isQtyTypeIds;
00073 foreach ($result as $key => $value) {
00074 if ($value !== $filter) {
00075 unset($result[$key]);
00076 }
00077 }
00078 return $result;
00079 }
00080
00081
00082
00083
00084
00085
00086 public function getConfigItemOptions()
00087 {
00088 return array(
00089 'min_qty',
00090 'backorders',
00091 'min_sale_qty',
00092 'max_sale_qty',
00093 'notify_stock_qty',
00094 'manage_stock'
00095 );
00096 }
00097 }