how to create a joomla hit counter
Juanjo vazquez real
Fresh Boarder
Posts: 9
9 Jahre 1 Woche her - 9 Jahre 1 Woche her #1087
von Juanjo vazquez real
how to create a joomla hit counter wurde erstellt von 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
Letzte Änderung: 9 Jahre 1 Woche her von Juanjo vazquez real.
Folgende Benutzer bedankten sich: Виталий
Bitte Anmelden oder Registrieren um der Konversation beizutreten.
Andres Maeso
Platinum Boarder
Posts: 338
9 Jahre 1 Woche her #1088
von Andres Maeso
Andrés Maeso
Customer relations manager at Joomla Component Creator.
Diese E-Mail-Adresse ist vor Spambots geschützt! Zur Anzeige muss JavaScript eingeschaltet sein!
Andres Maeso antwortete auf 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.
Diese E-Mail-Adresse ist vor Spambots geschützt! Zur Anzeige muss JavaScript eingeschaltet sein!
Bitte Anmelden oder Registrieren um der Konversation beizutreten.
Ladezeit der Seite: 0.053 Sekunden