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_GoogleOptimizer_Model_Code extends Mage_Core_Model_Abstract
00035 {
00036 protected $_entity = null;
00037 protected $_entityType = null;
00038 protected $_validateEntryFlag = false;
00039 protected $_scriptTypes = array('control', 'tracking', 'conversion');
00040
00041 protected function _construct()
00042 {
00043 parent::_construct();
00044 $this->_init('googleoptimizer/code');
00045 }
00046
00047
00048
00049
00050
00051
00052
00053 public function setEntity(Varien_Object $entity)
00054 {
00055 $this->_entity = $entity;
00056 return $this;
00057 }
00058
00059
00060
00061
00062
00063
00064 public function getEntity()
00065 {
00066 return $this->_entity;
00067 }
00068
00069
00070
00071
00072
00073
00074 public function getEntityType()
00075 {
00076 return $this->_entityType;
00077 }
00078
00079
00080
00081
00082
00083
00084
00085 public function loadScripts($storeId)
00086 {
00087 if (is_null($this->getEntity()) || is_null($this->getEntityType())) {
00088 return $this;
00089 }
00090
00091 if (!$storeId) {
00092 $storeId = Mage::app()->getStore()->getId();
00093 }
00094
00095 $this->getResource()->loadByEntityType($this, $storeId);
00096 $this->_afterLoad();
00097 return $this;
00098 }
00099
00100
00101
00102
00103
00104
00105 protected function _validate()
00106 {
00107 $entryFlag = false;
00108 $validationResult = false;
00109 if ($control = $this->getControlScript()) {
00110 $entryFlag = true;
00111 }
00112 if ($tracking = $this->getTrackingScript()) {
00113 $entryFlag = true;
00114 }
00115 if ($conversion = $this->getConversionScript()) {
00116 $entryFlag = true;
00117 }
00118 if ($conversionPage = $this->getConversionPage()) {
00119 $entryFlag = true;
00120 }
00121 $this->_validateEntryFlag = $entryFlag;
00122 if ($entryFlag && (!$control || !$tracking || !$conversion || !$conversionPage)) {
00123 return false;
00124 }
00125 return true;
00126 }
00127
00128
00129
00130
00131
00132
00133
00134 public function saveScripts($storeId)
00135 {
00136 if (is_null($this->getEntity()) || is_null($this->getEntityType())) {
00137 return $this;
00138 }
00139 if (!$this->getEntity()->getGoogleOptimizerScripts()) {
00140 return $this;
00141 }
00142 $script = $this->getEntity()->getGoogleOptimizerScripts();
00143
00144 $this->setData($script->getData())
00145 ->setEntityId($this->getEntity()->getId())
00146 ->setEntityType($this->getEntityType());
00147
00148
00149
00150
00151 if (!$script->getId()) {
00152 $this->setStoreId($storeId);
00153 }
00154
00155 if (false === $this->_validate()) {
00156 throw new Exception(Mage::helper('googleoptimizer')->__('All fields of script types have to be filled.'));
00157 }
00158
00159
00160 if ($this->getStoreFlag()) {
00161 $this->deleteScripts($storeId);
00162 return $this;
00163 }
00164
00165 $this->save();
00166 return $this;
00167 }
00168
00169
00170
00171
00172
00173
00174
00175 public function deleteScripts($storeId)
00176 {
00177 if (is_null($this->getEntity()) || is_null($this->getEntityType())) {
00178 return $this;
00179 }
00180 $this->getResource()->deleteByEntityType($this, $storeId);
00181 return $this;
00182 }
00183 }