Ciao a tutti, sto cercando un modulo che mi visualizzi tutte le categorie di una sezione, ma in random casuale, ho trovato:
mod_qcategories= ma non svolge il random casuale
mod_random_link = è settato solo per weblink.
L'ideale sarebbe il mod_random_link, al quale posso cambiare weblink con le categorie della sezione.
Incollo il codice, cosi magari qualcuno mi da una mano:
# Module Parameter Settings
$moduleclass_sfx = $params->get( 'moduleclass_sfx' );
$items = $params->get( 'items', 5 );
### DONT EDIT BELOW THIS LINE #################################################
# Don't allow direct acces to the file
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
$content = "";
# Set up database query
$query = "SELECT id, title, url, hits, published, approved FROM #__weblinks WHERE published=1 AND approved=1 ORDER BY RAND() LIMIT $items";
# Query the database
$database->setQuery( $query );
$rows = $database->loadObjectList();
# Put the output on screen
$content .="<table width=\"100%\" class=\"moduletable\"".$moduleclass_sfx."\">";
$i=0;
foreach($rows as $row) {
$content .= "<tr><td width=\"10px\" valign=\"middle\" style=\"text-align:center\"><a href=".$row->url."><img src=\"images/M_images/arrow.png\" /></a></td>";
$content .= "<td style=\"text-align:left\"><a href=".$row->url.">".ucfirst($row->title)."</a> (".$row->hits.")</td>";
$content .= "</tr>";
$i++;
}
$content .="</table>";
?>
Secondo me bisogna cambiare "#__weblinks" con non so che cosa, qualcuno lo sa?