RJP1 Posted August 19, 2010 Share Posted August 19, 2010 Hi guys, I'm trying to modify a Joomla listings directory component to have a sorting capability on category pages that list listings. A bit like eBay, price high to low etc. The basic code that outputs each listing is as follows... foreach ($this->links AS $link) { $fields = $this->fields[$link->link_id]; include $this->loadTemplate('sub_listingSummary.tpl.php'); } I have so far been able to get the contents of an extra field into an array within this foreach loop like this: $sleeps_array = array(); foreach ($this->links AS $link) { $fields = $this->fields[$link->link_id]; $sleeps = $fields->getFieldById(51); if(!is_null($sleeps) && $sleeps->hasValue()){ $sleeps = $sleeps->getOutput(1); $sleeps_array[] = $sleeps; } include $this->loadTemplate('sub_listingSummary.tpl.php'); } sort($sleeps_array); foreach ($sleeps_array as $key => $val) { echo "sleeps_array[" . $key . "] = " . $val . "\n"; } I've got this far but simply adding the include file to the new loop for "sleeps" does not work. I think I need to some how link the 2 arrays so that I can sort listings by the custom field... Can anyone point me in the correct direction? Thanks! RJP1 Quote Link to comment https://forums.phpfreaks.com/topic/211211-ordering-an-array-by-another-array/ Share on other sites More sharing options...
AbraCadaver Posted August 19, 2010 Share Posted August 19, 2010 Show a var_export() of your arrays and explain which one you want sorted by what element etc... Quote Link to comment https://forums.phpfreaks.com/topic/211211-ordering-an-array-by-another-array/#findComment-1101367 Share on other sites More sharing options...
RJP1 Posted August 19, 2010 Author Share Posted August 19, 2010 I did this: var_export($sleeps_array); var_export($this->links); For the first $sleeps_array I got: array ( 0 => '6', 1 => '4', 2 => '2', ) For the second array (the one which looks like has all the listing data - and also looks "cut off"): array ( 0 => stdClass::__set_state(array( 'link_id' => '6', Thanks for the help! RJP1 Quote Link to comment https://forums.phpfreaks.com/topic/211211-ordering-an-array-by-another-array/#findComment-1101375 Share on other sites More sharing options...
RJP1 Posted August 19, 2010 Author Share Posted August 19, 2010 Ah, it wasn't cut off, just below the listings... but it doesn't show the data for this custom field (well, not obviously anyway...). Quote Link to comment https://forums.phpfreaks.com/topic/211211-ordering-an-array-by-another-array/#findComment-1101379 Share on other sites More sharing options...
RJP1 Posted August 19, 2010 Author Share Posted August 19, 2010 This data is actually held in var_export($fields). E.g. 'Sleeps', 'value' => '2', RJP1 Quote Link to comment https://forums.phpfreaks.com/topic/211211-ordering-an-array-by-another-array/#findComment-1101380 Share on other sites More sharing options...
RJP1 Posted August 21, 2010 Author Share Posted August 21, 2010 I'm going to be looking at this again today, I had a brief break from it. Anyone have any ideas of how I should go about this? Cheers, RJP1 Quote Link to comment https://forums.phpfreaks.com/topic/211211-ordering-an-array-by-another-array/#findComment-1102100 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.