예제 #1
0
 /**
  * Sets a value in Strata's version of the GET array
  * @param string $key Variable name
  * @param mixed $value Variable value
  */
 public function setGet($key, $value)
 {
     $this->_GET = Hash::insert($this->_GET, $key, $value);
 }
 /**
  * Saves a value in the object's configuration array for the duration of the runtime.
  * @param string $key In dot-notation format
  * @return mixed
  */
 public function setConfig($key, $value)
 {
     $this->configuration = Hash::insert($this->getConfiguration(), $key, $value);
 }