466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495
|
//Show only the first 150 chars
$GLOBALS['MetaDescription'] = $this->snippetwop($oPage->PAG_Contents,150,'');
$sPage .= $oPage->PAG_Contents;
$sPageTitle = $oPage->PAG_Title;
}
else {
$GLOBALS['title'] = $this->oGlobalTranslation->TRG_PageNotFound;
$sPage = '<p>' . $this->oGlobalTranslation->TRG_PageNotFoundDescription . '</p>';
$sPageTitle = $this->oGlobalTranslation->TRG_PageNotFound;
//Show only the first 150 chars
$GLOBALS['MetaDescription'] = $this->snippetwop($oPage->TRG_PageNotFound,150,'');
}
$GLOBALS['MetaKeywords'] .= ',' . $sPageTitle;
return array('title' => $sPageTitle,
'page' => $sPage,
'metaDescription' => $GLOBALS['MetaDescription'],
'metaKeywords' => $GLOBALS['MetaKeywords'],
'productTypeId' => $iProductTypeID);
}
}
?>
|