Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
単純な行がありますが、機能しません。
$this->getView($input->get('my_wiew', 'Sites', 'CMD'), 'HTML'); //some code parent::display();
URL に移動するindex.php?option=com_my_component&view=sitesだけでビューが表示されますが、デフォルトではロードしません。
index.php?option=com_my_component&view=sites
$view = $this->getView('view_name', 'html'); //get the view $view->assignRef('data', $data_from_model); // assign data from the model $view->display(); // display the view
続きを読む