I have a question that might seem simple, but yet I was unable to find the answer. Unlike articles, which are stored in table jos_content
, categories in table jos_categories
lack any column named ordering
or any other that would have the desired information stored. I also tried to find anything similar in the jos_assets
table, but it did not help either.
I am hacking the content component a little and I need to get my child categories ordered by the ordering when calling $parent->getChildren()
or just find the ordering
column so I can create my own query even though it's not clean, I just need to get it working ASAP.
So where can I find category ordering or how do I force getChildren
method to return ordered results?
Thanks in advance, Elwhis