Exemplo n.º 1
0
 /**
  * Set the value of a registered variable
  * @param $op - the operator (=,*=,/=,+=,-=)
  * @param <type> $name
  * @param <type> $value
  */
 private function RDP_SetVariableValue($op, $name, $value)
 {
     if ($this->RDP_onlyparse) {
         return 1;
     }
     return LimeExpressionManager::SetVariableValue($op, $name, $value);
 }