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
00031
00032
00033
00034 class Mage_GoogleBase_Model_Attribute extends Mage_Core_Model_Abstract
00035 {
00036
00037
00038
00039
00040
00041 protected $_ignoredAttributeCodes = array(
00042 'custom_design','custom_design_from','custom_design_to','custom_layout_update',
00043 'gift_message_available','news_from_date','news_to_date','options_container',
00044 'price_view','sku_type'
00045 );
00046
00047
00048
00049
00050
00051
00052 protected $_ignoredAttributeTypes = array('hidden', 'media_image', 'image', 'gallery');
00053
00054 protected function _construct()
00055 {
00056 $this->_init('googlebase/attribute');
00057 }
00058
00059 public function getAllowedAttributes($setId)
00060 {
00061 $attributes = Mage::getModel('catalog/product')->getResource()
00062 ->loadAllAttributes()
00063 ->getSortedAttributes($setId);
00064
00065 $result = array();
00066 foreach ($attributes as $attribute) {
00067
00068 if ($attribute->isInSet($setId) && $this->_isAllowedAttribute($attribute)) {
00069 $list[$attribute->getAttributeId()] = $attribute;
00070 $titles[$attribute->getAttributeId()] = $attribute->getFrontendLabel();
00071 }
00072 }
00073 asort($titles);
00074 $result = array();
00075 foreach ($titles as $attributeId => $label) {
00076 $result[$attributeId] = $list[$attributeId];
00077 }
00078 return $result;
00079 }
00080
00081
00082
00083
00084
00085
00086
00087
00088 protected function _isAllowedAttribute($attribute)
00089 {
00090 return !in_array($attribute->getFrontendInput(), $this->_ignoredAttributeTypes)
00091 && !in_array($attribute->getAttributeCode(), $this->_ignoredAttributeCodes)
00092 && $attribute->getFrontendLabel() != "";
00093 }
00094
00095
00096
00097
00098
00099
00100
00101 public function getGbaseAttributeType($attribute)
00102 {
00103 $typesMapping = array(
00104
00105 'price' => 'floatUnit',
00106 'decimal' => 'numberUnit',
00107 );
00108 if (isset($typesMapping[$attribute->getFrontendInput()])) {
00109 return $typesMapping[$attribute->getFrontendInput()];
00110 } elseif (isset($typesMapping[$attribute->getBackendType()])) {
00111 return $typesMapping[$attribute->getBackendType()];
00112 } else {
00113 return Mage_GoogleBase_Model_Service_Item::DEFAULT_ATTRIBUTE_TYPE;
00114 }
00115 }
00116 }