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
00036
00037 abstract class Varien_Convert_Action_Abstract implements Varien_Convert_Action_Interface
00038 {
00039
00040
00041
00042
00043
00044
00045
00046 protected $_params;
00047
00048
00049
00050
00051
00052
00053 protected $_profile;
00054
00055
00056
00057
00058
00059
00060 protected $_container;
00061
00062
00063
00064
00065
00066
00067
00068
00069 public function getParam($key, $default=null)
00070 {
00071 if (!isset($this->_params[$key])) {
00072 return $default;
00073 }
00074 return $this->_params[$key];
00075 }
00076
00077
00078
00079
00080
00081
00082
00083
00084 public function setParam($key, $value=null)
00085 {
00086 if (is_array($key) && is_null($value)) {
00087 $this->_params = $key;
00088 } else {
00089 $this->_params[$key] = $value;
00090 }
00091 return $this;
00092 }
00093
00094
00095
00096
00097
00098
00099 public function getParams()
00100 {
00101 return $this->_params;
00102 }
00103
00104
00105
00106
00107
00108
00109
00110 public function setParams($params)
00111 {
00112 $this->_params = $params;
00113 return $this;
00114 }
00115
00116
00117
00118
00119
00120
00121 public function getProfile()
00122 {
00123 return $this->_profile;
00124 }
00125
00126
00127
00128
00129
00130
00131
00132 public function setProfile(Varien_Convert_Profile_Abstract $profile)
00133 {
00134 $this->_profile = $profile;
00135 return $this;
00136 }
00137
00138
00139
00140
00141
00142
00143
00144 public function setContainer(Varien_Convert_Container_Interface $container)
00145 {
00146 $this->_container = $container;
00147 $this->_container->setProfile($this->getProfile());
00148 return $this;
00149 }
00150
00151
00152
00153
00154
00155
00156
00157 public function getContainer($name=null)
00158 {
00159 if (!is_null($name)) {
00160 return $this->getProfile()->getContainer($name);
00161 }
00162
00163 if (!$this->_container) {
00164 $class = $this->getParam('class');
00165 $this->setContainer(new $class());
00166 }
00167 return $this->_container;
00168 }
00169
00170
00171
00172
00173
00174
00175 public function run()
00176 {
00177 if ($method = $this->getParam('method')) {
00178 if (!is_callable(array($this->getContainer(), $method))) {
00179 $this->addException('Unable to run action method: '.$method, Varien_Convert_Exception::FATAL);
00180 }
00181
00182 $this->getContainer()->addException('Starting '.get_class($this->getContainer()).' :: '.$method);
00183
00184 if ($this->getParam('from')) {
00185 $this->getContainer()->setData($this->getContainer($this->getParam('from'))->getData());
00186 }
00187
00188 $this->getContainer()->$method();
00189
00190 if ($this->getParam('to')) {
00191 $this->getContainer($this->getParam('to'))->setData($this->getContainer()->getData());
00192 }
00193 } else {
00194 $this->addException('No method specified', Varien_Convert_Exception::FATAL);
00195 }
00196 return $this;
00197 }
00198
00199 }