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
00035 class Mage_Eav_Model_Mysql4_Entity_Attribute_Set extends Mage_Core_Model_Mysql4_Abstract
00036 {
00037
00038
00039
00040
00041 protected function _construct()
00042 {
00043 $this->_init('eav/attribute_set', 'attribute_set_id');
00044 }
00045
00046
00047
00048
00049
00050
00051
00052 protected function _afterSave(Mage_Core_Model_Abstract $object)
00053 {
00054 if ($object->getGroups()) {
00055 foreach ($object->getGroups() as $group) {
00056
00057 $group->setAttributeSetId($object->getId());
00058 $group->save();
00059 }
00060 }
00061 if ($object->getRemoveGroups()) {
00062 foreach ($object->getRemoveGroups() as $group) {
00063
00064 $group->delete();
00065 }
00066 }
00067 if ($object->getRemoveAttributes()) {
00068 foreach ($object->getRemoveAttributes() as $attribute) {
00069
00070 $attribute->deleteEntity();
00071 }
00072 }
00073 return parent::_afterSave($object);
00074 }
00075
00076
00077
00078
00079
00080
00081
00082
00083 public function validate($object,$name)
00084 {
00085 $read = $this->_getReadAdapter();
00086 $select = $read->select()->from($this->getMainTable())
00087 ->where("attribute_set_name=?",$name)
00088 ->where("entity_type_id=?",$object->getEntityTypeId());
00089
00090 if ($object->getId()) {
00091 $select->where("attribute_set_id!=?",$object->getId());
00092 }
00093
00094 if (!$read->fetchOne($select)) {
00095 return true;
00096 }
00097
00098 return false;
00099 }
00100
00101
00102
00103
00104
00105
00106
00107
00108 public function getSetInfo(array $attributeIds, $setId = null)
00109 {
00110 $setInfo = array();
00111 $attributeToSetInfo = array();
00112 if (count($attributeIds) > 0) {
00113 $select = $this->_getReadAdapter()->select()
00114 ->from(
00115 array('entity' => $this->getTable('entity_attribute')),
00116 array('attribute_id','attribute_set_id', 'attribute_group_id', 'sort_order'))
00117 ->joinLeft(
00118 array('group' => $this->getTable('attribute_group')),
00119 'entity.attribute_group_id=group.attribute_group_id',
00120 array('group_sort_order' => 'sort_order'))
00121 ->where('entity.attribute_id IN (?)', $attributeIds);
00122 if (is_numeric($setId)) {
00123 $select->where('entity.attribute_set_id=?', $setId);
00124 }
00125 $result = $this->_getReadAdapter()->fetchAll($select);
00126
00127 foreach ($result as $row) {
00128 $data = array(
00129 'group_id' => $row['attribute_group_id'],
00130 'group_sort' => $row['group_sort_order'],
00131 'sort' => $row['sort_order']
00132 );
00133 $attributeToSetInfo[$row['attribute_id']][$row['attribute_set_id']] = $data;
00134 }
00135 }
00136
00137 foreach ($attributeIds as $atttibuteId) {
00138 $setInfo[$atttibuteId] = isset($attributeToSetInfo[$atttibuteId])
00139 ? $attributeToSetInfo[$atttibuteId]
00140 : array();
00141 }
00142
00143 return $setInfo;
00144 }
00145 }