<?/*ini untuk menyembunyikan akses langsung ke file ini melalui browser*/defined( '_JEXEC' ) or die( 'Restricted access' );/*mengambil data base conten*/$db =& JFactory::getDBO();$query = 'SELECT a.hits, a.id, a.sectionid, a.title, a.created, u.name'. ' FROM #__content AS a'. ' LEFT JOIN #__users AS u ON u.id=a.created_by'. ' WHERE a.state <> -2'. ' ORDER BY hits DESC';/*menentukan limit atau jummlah yang akan di tampilkan*/$db->setQuery( $query, 0, 5 );$rows = $db->loadObjectList();?><!-- menampilkan list artikel - artikel dalam bentuk list --><table class="adminlist"><?phpforeach ($rows as $row){ $link = 'index.php?option=com_content&task=view=article&id='. $row->id; ?> <tr> <td> <ul> <li><a href="<?php echo $link; ?>"><?php echo htmlspecialchars($row->title, ENT_QUOTES, 'UTF-8');?></a> </li> </ul> </td> </tr> <?php}?></table>
defined( '_JEXEC' ) or die( 'Restricted access' );
$db =& JFactory::getDBO();$query = 'SELECT a.hits, a.id, a.sectionid, a.title, a.created, u.name'. ' FROM #__content AS a'. ' LEFT JOIN #__users AS u ON u.id=a.created_by'. ' WHERE a.state <> -2'. ' ORDER BY hits DESC';
$db->setQuery( $query, 0, 5 );$rows = $db->loadObjectList();
<?phpforeach ($rows as $row){$link = 'index.php?option=com_content&task=view=article&id='. $row->id;?><tr><td><ul><li><a href="<?php echo $link; ?>"><?php echo htmlspecialchars($row->title, ENT_QUOTES, 'UTF-8');?></a></li></ul></td></tr><?php}?>
$link=’ index.php?option=com_content&task=view=article&id='. $row->id;
ini membuat link ke artikel yang ditampilkan. Dan pada
<a href="<?php echo $link; ?>"><?php echo htmlspecialchars($row->title, ENT_QUOTES, 'UTF-8');?></a>difungsikan untuk menampilkan judul – judul artikel yang akan ditampilkan.
Nah sekarang kita buat pula file Instalasinya buat sebuah file dengan format XML masih dalam folder mod_populer. Lalu namai file tersebut dengan sebutan module_populer.xml
Dan tuliskan Sintak dibawah dalam file tersebut
<?xml version="1.0" encoding="utf-8"?><install type="module"> <name>Artikel Populer</name> <author>Rojiyan Ar</author> <creationDate>Agustus 2010</creationDate> <copyright>Copyright (C) 2010 call-69.blogspot.com</copyright> <license>tak punya lisensi he he he</license> <authorEmail>arx131@gmail.com</authorEmail> <authorUrl>call-69.blogspot.com</authorUrl> <version>hana versi</version> <description>Peu Galak kah?</description> <files> <filename module="mod_populer">mod_populer.php</filename> </files> <params> <param name="cache" type="list" default="0" label="Caching" description="Select whether to cache the content of this module"> <option value="0">Tidak pernah</option> </param> </params></install>
<?xml version="1.0" encoding="utf-8"?> menunjukkan file XML






0 comments:
Post a Comment