';
$startBlock .= '' . $lm_title . '';
$startBlock .= '' . $lm_website . '';
$startBlock .= '' . $lm_desc . '';
$startBlock .= 'en-gb';
$startBlock .= '';
$startBlock .= '' . $buildDate . '';
$startBlock .= '10';
// Create the end block.
$endBlock = '';
$endBlock .= '';
// Fetch last 15 news articles.
$items="";
$rs=$conn->Execute("SELECT id,ordering FROM #__content_frontpage ORDER BY ordering DESC");
if(($row_total=$rs->RecordCount()>0) && $rsa=$rs->GetArray() ) {
$row_total=$conn->RecordCount();
foreach($rsa as $row) {
$crow=$conn->GetRow("SELECT id,title,introtext,sectionid,catid,created,ordering,access FROM #__content WHERE id=".$row['id']." AND published=1 $access_sql");
if($crow) {
$items.= '- ';
$items.= ''.$crow['title'].'';
$items.= ''.substr( strip_tags( $crow['introtext'] ), 0, 100 ). '';
$items.= '' . $lm_website.'index.php?option=content&task=view&id='.$crow['id']. '';
$items.= '' . $crow['created'] . '';
$items.= '
';
}
}
}
echo $startBlock.$items.$endBlock;
?>