Joomla のコンポーネント開発のチュートリアルに従って問題が発生しました。この問題に関連して従ったチュートリアルは、これとこれです。
デフォルトのビューは正しく表示できますが、new
または ボタンをクリックしたりedit
、delete
ブラウズしたりすると../administrator/index.php?option=com_testimonials&view=testimonial&layout=edit
、そのエラーが発生します。
コードを何度も再チェックしましたが、どこが間違っていたのかわかりません。
ファイル: controllers\testimonial.php
class TestimonialsControllerTestimonial extends JControllerForm
{
//Nothing yet as per the tutorial
}
ファイル: models\testimonial.php
class TestimonialsModelTestimonial extends JModelAdmin {
public function getTable($type = 'Testimonials', $prefix = 'TestimonialsTable', $config = array()) {
return JTable::getInstance($type, $prefix, $config);
}
public function getForm($data = array(), $loadData = true) {
// Get the form
$form = $this -> loadForm('com_testimonials.testimonial', 'testimonial', array('control' => 'jform', 'load_data' => $loadData));
if(empty($form)) {
return false;
}
return $form;
}
protected function loadFormData() {
// Check the session for previously entered form data
$data = JFactory::getApplication() -> getUserState('com_testimonials.edit.testimonial.data', array());
if(empty($data)) {
$data = $this -> getItem();
}
return $data;
}
}
ファイル: views\testimonial\view.html.php
class TestimonialsViewTestimonial extends JView {
protected $form = null;
public function display($tpl = null) {
//get the data
$form = $this -> get('Form');
$item = $this -> get('Item');
$this -> form = $form;
$this -> item = $item;
$this -> addToolbar();
parent::display($tpl);
$this -> setDocument();
}
protected function addToolBar() {
JRequest::setVar('hidemainmenu', true);
$isNew = ($this -> item -> id == 0);
JToolBarHelper::title($isNew ? JText::_('COM_TESTIMONIALS_MANAGER_TESTIMONIAL_NEW') : JText::_('COM_TESTIMONIALS_MANAGER_TESTIMONIAL_EDIT'), 'testimonials');
JToolBarHelper::save('testimonial.save');
JToolBarHelper::cancel('testimonial.cancel', $isNew ? 'JTOOLBAR_CANCEL' : 'JTOOLBAR_CLOSE');
}
protected function setDocument() {
$isNew = ($this -> item -> id < 1);
$document = JFactory::getDocument();
$document -> setTitle($isNew ? JText::_('COM_TESTIMONIALS_TESTIMONIAL_CREATING') : JText::_('COM_TESTIMONIALS_TESTIMONIAL_EDITING'));
}
}
ファイル: views\testimonial\tmpl\edit.php
<form action="<?php echo JRoute::_('index.php?option=com_testimonials&layout=edit&id='.(int) $this -> item -> id); ?>" method="post" name="adminForm" id="testimonial-form">
<fieldset class="adminForm">
<legend><?php echo JText::_('COM_TESTIMONIALS_TESTIMONIAL_DETAILS'); ?></legend>
<ul class="adminFormList">
<?php foreach($this -> form -> getFieldset() as $field): ?>
<li><?php echo $field -> label; echo $field -> input; ?></li>
<?php endforeach; ?>
</ul>
</fieldset>
<div>
<input type="hidden" name="task" value="testimonial.edit" />
<?php echo JHtml::_('form.token'); ?>
</div>
</form>