joomla コンポーネントからサブコントローラーを呼び出す方法を理解するのに苦労しています。controllers フォルダには何を配置しますか?
私は自分のコンポーネントのエントリポイントを持っています -
<?php
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
// require helper file
JLoader::register('TieraerzteHelper', dirname(__FILE__) . DS . 'helpers' . DS . 'my_helper.php');
// import joomla controller library
jimport('joomla.application.component.controller');
$controller = JController::getInstance('MyController');
// Get the task
$jinput = JFactory::getApplication()->input;
$task = $jinput->get('task', "", 'STR' );
// Perform the Request task
$controller->execute($task);
// Redirect if set by the controller
$controller->redirect();
次に、コントローラーフォルダーに配置されているコントローラーを呼び出したい場合は、どうすればよいですか?