phoca download tree: category order
-
- Phoca Member
- Posts: 15
- Joined: 30 Apr 2019, 16:31
phoca download tree: category order
I've settled the PhocaDownload -> control panel -> options -> display -> Categories and Category View -> Category Ordering = Title ascending BUT the module doesn' t care.... categories are showed in "id key" from table.....
-
- Phoca Member
- Posts: 15
- Joined: 30 Apr 2019, 16:31
Re: phoca download tree: category order
ach. in the file modules/mod_phocadownload_tree the db select is hard coded, this the ORDER BY is not variable.... :( :
$query = 'SELECT cc.title AS text, cc.id AS id, cc.parent_id as parentid, cc.alias as alias, cc.access as access, cc.accessuserid as accessuserid'
. ' FROM #__phocadownload_categories AS cc'
. ' WHERE cc.published = 1'
//. ' AND cc.approved = 1'
. $hideCatSql
. $hideCatAccessSql
. ' ORDER BY cc.ordering';
so it's enough set the "ordering" field in the table.
$query = 'SELECT cc.title AS text, cc.id AS id, cc.parent_id as parentid, cc.alias as alias, cc.access as access, cc.accessuserid as accessuserid'
. ' FROM #__phocadownload_categories AS cc'
. ' WHERE cc.published = 1'
//. ' AND cc.approved = 1'
. $hideCatSql
. $hideCatAccessSql
. ' ORDER BY cc.ordering';
so it's enough set the "ordering" field in the table.
- Jan
- Phoca Hero
- Posts: 48398
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: phoca download tree: category order
Hi, thank you for the info, I will take a look at it for the next version.
Jan
Jan
If you find Phoca extensions useful, please support the project
- Jan
- Phoca Hero
- Posts: 48398
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: phoca download tree: category order
If you find Phoca extensions useful, please support the project