我有在的Joomla組件我想調用其他功能相關的問題時,該組件啓動組件的Joomla
$controller = JController::getInstance('Productos');
$controller->execute(JFactory::getApplication()->input->get('task'));
$controller->redirect();
這裏我要調用一個函數在數據庫中只選擇一個項目不是所有
Ÿ試試這個
$controller->execute(JFactory::getApplication()->input->get('other'));
,並在我的
class ProductosController extends JController
{
function Other(){
...
}
}
但我的代碼從來沒有通過其他功能。
出了什麼問題?