Page 1 of 1

count the files in the category

Posted: 26 Nov 2008, 07:52
by Heuler
hi,

can you help me to find the code to show the count from the files. I want at the start page to see how many files are in the section. Like this:

in der Darstellung hätte ich gerne das die Dateien gezählt werden und auf der Übersichtsseite angezeigt werden.
hier ein beispiel aus einer anderen Webseite:

Image

Thanks for your help

Re: count the files in the category

Posted: 26 Nov 2008, 17:58
by Jan
Hi, see:
displaying:
components\com_phocadownload\views\sections\tmpl\default.php
components\com_phocadownload\views\sections\view.html.php

model (getting data from database):
components\com_phocadownload\models\sections.php

Jan

Re: count the files in the category

Posted: 27 Nov 2008, 08:00
by Heuler
Thx Jan,

mit Deiner Hilfe habe ich es gefunden.

open file components\com_phocadownload\views\sections\tmpl\default.php

Zeile 18

Code: Select all

		echo ' <small>('.$value->numcat.')</small></h3></div></div>';
ersetzen mit

Code: Select all

    echo '</h3></div></div>';
Zeile 23

Code: Select all

			echo '</p>' . "\n";
ersetzen mit

Code: Select all

			echo '<small>('.$valueCat->numdoc.')</small></p>' . "\n";
done.
und schon wird in der Übersicht die Files in den Section gezählt.

Re: count the files in the category

Posted: 28 Nov 2008, 16:08
by Jan
Hallo, danke für die Information, ich werde es für neue Version ändern...

Jan