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_Tag_Model_Tag_Relation extends Mage_Core_Model_Abstract
00036 {
00037 const STATUS_ACTIVE = 1;
00038
00039 protected function _construct()
00040 {
00041 $this->_init('tag/tag_relation');
00042 }
00043
00044 public function loadByTagCustomer($productId=null, $tagId, $customerId, $storeId=null)
00045 {
00046 $this->setProductId($productId);
00047 $this->setTagId($tagId);
00048 $this->setCustomerId($customerId);
00049 if(!is_null($storeId)) {
00050 $this->setStoreId($storeId);
00051 }
00052 $this->_getResource()->loadByTagCustomer($this);
00053 return $this;
00054 }
00055
00056 public function getProductIds()
00057 {
00058 $ids = $this->getData('product_ids');
00059 if (is_null($ids)) {
00060 $ids = $this->_getResource()->getProductIds($this);
00061 $this->setProductIds($ids);
00062 }
00063 return $ids;
00064 }
00065
00066 public function deactivate()
00067 {
00068 $this->_getResource()->deactivate($this->getTagId(), $this->getCustomerId());
00069 return $this;
00070 }
00071 }