Titolo originale: Total forums on index 1.0.0
Autore: Jeroen B
Versione di phpbb: 3.0.7pl1 funzionante con 3.0.11
Apri: index.php
Trova
Codice: Seleziona tutto
// Assign index specific vars
Codice: Seleziona tutto
// Select the number of forums
$sql = 'SELECT COUNT(forum_id) AS count_forums
FROM ' . FORUMS_TABLE . '
WHERE forum_type = 1';
$result = $db->sql_query($sql);
// The number of forums is now available here:
$count_forums = (int) $db->sql_fetchfield('count_forums');
$db->sql_freeresult($result);
Codice: Seleziona tutto
'TOTAL_USERS' => sprintf($user->lang[$l_total_user_s], $total_users),
Codice: Seleziona tutto
'TOTAL_FORUMS' => sprintf($user->lang['TOTAL_FORUMS'], $count_forums),
Apri: language/it/common.php
Trova
Codice: Seleziona tutto
'TOTAL_ATTACHMENTS' => 'Allegato(i)',
Codice: Seleziona tutto
'TOTAL_FORUMS' => 'Totale forums <strong>%s</strong>',
Apri: styles/prosilver/template/index_body.html
Trova
Codice: Seleziona tutto
<p>{TOTAL_POSTS} • {TOTAL_TOPICS} • {TOTAL_USERS} • {NEWEST_USER}</p>
Codice: Seleziona tutto
{TOTAL_TOPICS} •
Codice: Seleziona tutto
{TOTAL_FORUMS} •