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_Core_Model_Flag extends Mage_Core_Model_Abstract
00036 {
00037
00038
00039
00040
00041
00042 protected $_flagCode = null;
00043
00044
00045
00046
00047
00048 protected function _construct()
00049 {
00050 $this->_init('core/flag');
00051 }
00052
00053
00054
00055
00056
00057
00058 protected function _beforeSave()
00059 {
00060 if (is_null($this->_flagCode)) {
00061 Mage::throwException(Mage::helper('core')->__('Please define flag code.'));
00062 }
00063
00064 $this->setFlagCode($this->_flagCode);
00065 $this->setLastUpdate(date('Y-m-d H:i:s'));
00066
00067 return parent::_beforeSave();
00068 }
00069
00070
00071
00072
00073
00074
00075 public function getFlagData()
00076 {
00077 if ($this->hasFlagData()) {
00078 return unserialize($this->getData('flag_data'));
00079 } else {
00080 return null;
00081 }
00082 }
00083
00084
00085
00086
00087
00088
00089
00090 public function setFlagData($value)
00091 {
00092 return $this->setData('flag_data', serialize($value));
00093 }
00094
00095
00096
00097
00098
00099
00100 public function loadSelf()
00101 {
00102 if (is_null($this->_flagCode)) {
00103 Mage::throwException(Mage::helper('core')->__('Please define flag code.'));
00104 }
00105
00106 return $this->load($this->_flagCode, 'flag_code');
00107 }
00108 }