return true;
}
- private function getValue($line, $partial_ops, $key, $action)
+ private function getValue($line, $key, $action)
{
if (@array_key_exists($action, $line)) {
$value = $line[$action];
} elseif (is_callable($action, false)) {
- $value = call_user_func($action, $line, $partial_ops, $key);
+ $value = call_user_func($action, $line, $key);
} else {
$value = $action;
}
{
$ops = array();
foreach ($relation as $key=>$ref) {
- $ops[$key] = $this->getValue($line, $ops, $key, $ref);
+ $ops[$key] = $this->getValue($line, $key, $ref);
}
return $ops;
}
{
$ops = array();
foreach ($relation as $key=>$ref) {
- $value = $this->getValue($line, $ops, $key, $ref);
+ $value = $this->getValue($line, $key, $ref);
if (!is_null($value) && $value != 'NULL') {
$value = "'" . addslashes($value) . "'";
}