我在 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(){
...
}
}
但是我的代码永远不会通过其他功能。
怎么了?