我爲Joomla 2.5創建了一個新組件。我有兩個功能:如何在其他函數中調用函數變量
public function getBase(){
if(JFactory::getUser()->guest) {
$this->base = 'Гость';
}
else {
$user =& JFactory::getUser();
$usr_id = $user->get('id');
/**/
$this->base = 'Гуд юзер id '.$usr_id.'';
/*Get database info*/
}
return $this->base;
}
public function getGetInfo() {
$this->getinfo = '11 '.$usr_id.'';
return $this->getinfo;
}
請告訴我如何使用$usr_id = $user->get('id');
從getBase()
在getGetInfo()
功能。謝謝您的幫助。
THX!工作正常! –