the "autoPopulatePreviewImage()" in the api calls to "autoPopulatePreviewImage()" of library
Code:
public function autoPopulatePreviewImage($nodeId)
{
$data = $this->library->getFullContent($nodeId);
if ($this->validate($data, self::ACTION_UPDATE, $nodeId))
{
$this->library->autoPopulatePreviewImage($nodeId);
}
}
the "autoPopulatePreviewImage()" in the Library does not return anything it also destroys all the variables the only array left ath the end is the following but its not returned.
Code:
$data = array(
'parentid' => $node['parentid'],
'previewimage' => $attachment['nodeid'],
'nodeoptions' => $node['nodeoptions'],
);
if let say at the end i add a line return $data how will i be able to access "$data['previewimage'] " from template page.
thank you