how to create a joomla hit counter
Juanjo vazquez real
Nouveau membre
Posts: 9
il y a 9 ans 1 semaine - il y a 9 ans 1 semaine #1087
par Juanjo vazquez real
how to create a joomla hit counter a été créé par Juanjo vazquez real
Hello
I finally managed to go well field hits, I will explain as e echo if anyone serves.
We must create a field hits, type TINYINT (11) in our table
Once we have our component in part site / models in our archive item.php add:
within the model class
then in site / item / view file view.html.php
we add this code within the function display
I hope this helps someone
I finally managed to go well field hits, I will explain as e echo if anyone serves.
We must create a field hits, type TINYINT (11) in our table
Once we have our component in part site / models in our archive item.php add:
within the model class
public function hit($id = null)
{
if (empty($id)) {
$id = $this->getState('item.id');// item is the name of our item
}
$item = $this->getTable();
return $item->hit($id);
}
then in site / item / view file view.html.php
we add this code within the function display
$model = $this->getModel();
$model->hit();
I hope this helps someone
Dernière édition: il y a 9 ans 1 semaine par Juanjo vazquez real.
Les utilisateur(s) suivant ont remercié: Виталий
Connexion ou Créer un compte pour participer à la conversation.
Andres Maeso
Membre platinium
Posts: 338
il y a 9 ans 1 semaine #1088
par Andres Maeso
Andrés Maeso
Customer relations manager at Joomla Component Creator.
Cette adresse e-mail est protégée contre les robots spammeurs. Vous devez activer le JavaScript pour la visualiser.
Réponse de Andres Maeso sur le sujet Hits
Thanks Juanjo. Do you mind if I rename it like "how to create a joomla hit counter"?
Andrés Maeso
Customer relations manager at Joomla Component Creator.
Cette adresse e-mail est protégée contre les robots spammeurs. Vous devez activer le JavaScript pour la visualiser.
Connexion ou Créer un compte pour participer à la conversation.
Temps de génération de la page : 0.051 secondes