0
I would like to know HOW to change this code in the models/album.php, I see where it is calling the id from Var.
How do you make the $id be based on $user that is logged in SEE you code


function __construct()
{
parent::__construct();

$id = JRequest::getVar('id');
$this->setId((int)$id);

}


Here is the query that calles the $id selected, how to change it to match the id = the userid (userid of the user login)


function &getData()
{
/*$query = " SELECT email FROM #__users LIMIT 297,350 " ;
$this->_db->setQuery($query);
$llista = $this->_db->loadResultArray();

$result = "";
//print_r($llista);die();
for($i = 0, $n = count($llista); $i _data )) {
$query = ' SELECT f.*,dg.format_name as display_group_name,al.*,ar.artist_name,ar.letter,ge.genre_name '.
' FROM #__muscol_albums as al '.
' LEFT JOIN #__muscol_artists as ar ON ar.id = al.artist_id '.
' LEFT JOIN #__muscol_format as f ON f.id = al.format_id '.
' LEFT JOIN #__muscol_format as dg ON dg.id = f.display_group '.
' LEFT JOIN #__muscol_genres as ge ON ge.id = al.genre_id '.
' WHERE al.id = ' . $this->_id
;
$this->_db->setQuery( $query );
$this->_data = $this->_db->loadObject();

if (!$this->_data) {
$this->_data = new stdClass();
$this->_data->id = 0;
}
else{

if($this->_data->display_group_name == "") $this->_data->display_group_name = $this->_data->format_name;


Responses (0)
  • There are no replies here yet.
Your Reply