Vorrei inserire la paginazione dei risultati dentro un modulo che ho creato grazie al manuale dello sviluppatore di Joomla ma la guida descrive solo come sia possibile farlo con i componenti.
Infatti se provo con il modulo da errori di classe ...credo.
Chi mi può aiutare, please ?
Il codice semplicissimo di base è questo :
// --- INIZIO CODICE QUERY ---
$limitstart= 0;
$limit =10;
$queryprova= "SELECT u.* ".
"FROM #__users AS u ".
"WHERE (usertype NOT LIKE '%administrator%') ";
$database->setQuery($queryprova);
$utenti = $database->loadObjectList();
require_once("includes/pageNavigation.php");
$database->setQuery($queryprova);
$pageNav = new mosPageNav($utenti, $limitstart, $limit);
// --- STAMPA TABELLA ----
if($utenti == null){
echo "Errore".
$database->getErrorNum().
": ".
$database->getErrorMsg();
}
else {
echo"<table width='450'>\n".
"<th colspan='3'><br>---- TABELLA ----</th>".
"<tr>".
"<th width='62'>N°</th>".
"<th width='83'>NICK</th>".
"</tr>\n";
foreach($utenti as $utente){
echo"<tr>".
"<td>".$utente->id. "</td>".
"<td>".$utente->username. "</td>".
"</tr>\n";
} //chiusura del ciclo
echo "<th colspan='3'><br> FINE TABELLA </th>".
"</table>\n";
} //chiusura dell if
// ---- FINE STAMPA TABELLA ----
Cosa dovrei aggiungere per richiamare la paginazione dal modulo ?