0
I see in the "models/album" file there are several SQL query that gather information for the Album by album_id or
$id = JRequest::getVar('id');
But I want that to reflect the most Recent Album Id or DESC album_id for that user that was added.
It is currently gathering the information for the first album added by user, I want to know where to change the Order By or chagne the SQL to get the lastest Album.
PLEASE HELP..........
$id = JRequest::getVar('id');
But I want that to reflect the most Recent Album Id or DESC album_id for that user that was added.
It is currently gathering the information for the first album added by user, I want to know where to change the Order By or chagne the SQL to get the lastest Album.
PLEASE HELP..........
Responses (2)
-
Accepted Answer
-
Accepted Answer
0Apologize for previopus posting:
correct way to get each users multiple albums to show up in Standard User Layout:
Add this code in file "models/album"
Line 24
$userid = JRequest::getVar('userid');
$myId = $user->id;
if($myId == $userid){
$query = 'SELECT id FROM #__muscol_albums ORDER BY id DESC' ;
$this->_db->setQuery( $query );
$id = $this->_db->loadResult('id');
} else {
$query = 'SELECT id FROM #__muscol_albums where user_id ='.$userid.' ORDER BY id DESC' ;
$this->_db->setQuery( $query );
$id = $this->_db->loadResult('id');
}
Removed or comment
Line 24
//$id = JRequest::getVar('id');
Your Reply

Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »