Exemplo n.º 1
0
 /**
  * Gets/sets an option on the object.
  *
  * @param string|array $Key The key of the option.
  * @param mixed $Value The value of the option or not specified just to get the current value.
  * @return mixed The value of the option or $this if $Value is specified.
  * @since 2.3
  */
 public function Options($Key, $Value = NULL)
 {
     if (is_array($Key)) {
         foreach ($Key as $K => $V) {
             $this->SQL->Options($K, $V);
         }
     } else {
         $this->SQL->Options($Key, $Value);
     }
     return $this;
 }