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_Sales_Model_Api_Resource extends Mage_Api_Model_Resource_Abstract
00035 {
00036
00037
00038
00039
00040
00041 protected $_ignoredAttributeCodes = array(
00042 'global' => array('entity_id', 'attribute_set_id', 'entity_type_id')
00043 );
00044
00045
00046
00047
00048
00049
00050 protected $_attributesMap = array(
00051 'global' => array()
00052 );
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062 protected function _updateAttributes($data, $object, $type, array $attributes = null)
00063 {
00064
00065 foreach ($data as $attribute=>$value) {
00066 if ($this->_isAllowedAttribute($attribute, $type, $attributes)) {
00067 $object->setData($attribute, $value);
00068 }
00069 }
00070
00071 return $this;
00072 }
00073
00074
00075
00076
00077
00078
00079
00080
00081 protected function _getAttributes($object, $type, array $attributes = null)
00082 {
00083 $result = array();
00084
00085 if (!is_object($object)) {
00086 return $result;
00087 }
00088
00089 foreach ($object->getData() as $attribute=>$value) {
00090 if ($this->_isAllowedAttribute($attribute, $type, $attributes)) {
00091 $result[$attribute] = $value;
00092 }
00093 }
00094
00095 foreach ($this->_attributesMap['global'] as $alias=>$attributeCode) {
00096 $result[$alias] = $object->getData($attributeCode);
00097 }
00098
00099 if (isset($this->_attributesMap[$type])) {
00100 foreach ($this->_attributesMap[$type] as $alias=>$attributeCode) {
00101 $result[$alias] = $object->getData($attributeCode);
00102 }
00103 }
00104
00105 return $result;
00106 }
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116 protected function _isAllowedAttribute($attributeCode, $type, array $attributes = null)
00117 {
00118 if (!empty($attributes)
00119 && !(in_array($attributeCode, $attributes))) {
00120 return false;
00121 }
00122
00123 if (in_array($attributeCode, $this->_ignoredAttributeCodes['global'])) {
00124 return false;
00125 }
00126
00127 if (isset($this->_ignoredAttributeCodes[$type])
00128 && in_array($attributeCode, $this->_ignoredAttributeCodes[$type])) {
00129 return false;
00130 }
00131
00132 return true;
00133 }
00134 }