function ($obj) {
$newReq['pntType'] = $this->();
$newReq['id'] = $obj->('id');
$newReq['pntHandler'] = $this->('pntHandlerOrigin'); //stips slashes but there are no slashes anyway
$newReq['pntRef'] = $this->('pntRef'); //stips slashes but there are no slashes anyway
$newReq['pntEditFeedback'] = $this->($obj); //only to be included if redirect to same EditDetailsPage
if (isSet($this->requestData['pntProperty']) && $this->requestData['pntProperty']) {
$newReq['pntProperty'] = $this->requestData['pntProperty'];
if (!isSet($newReq['pntHandler']))
$newReq['pntHandler'] = 'PropertyPage';
}
if (isSet($this->requestData['pntContext']))
$newReq['pntContext'] = $this->requestData['pntContext'];
return $newReq;
}
|