我正在为Joomla 2.5的后端做第一个组件。 第一部分是好的,我创建了一个带有通用控制器的组件,现在我在表中显示所有元素
我为此遵循了此tutorial,但现在我想添加edit,new和delete等操作。我遵循了这个tutorial但是当我点击编辑时,例如。我去了一个白页。我的名称组件为Busqueda
,我的表格为restaurantes
。
这是编辑动作模型/ restaurante.php的模型
class BusquedaModelRestaurante extends JModelAdmin{
public function getTable($type= 'Restaurantes', $prefix='RestaurantesTable', $config=array()){
return JTable::getInstance($type, $prefix, $config);
}
public function getForm($data = array(), $loadData = true){
$form = $this->loadForm('com_busqueda.restaurante', 'restaurante', array('control' => 'jform', 'load_data' => $loadData));
if (empty($form)) {
return false;
}
return $form;
}
protected function loadFormData(){
$data= JFactory::getApplication()->getUserState('com_busqueda.edit.restaurante.data', array());
if(empty($data)){
$data=$this->getItem();
}
return $data;
}
}
这是我的models / forms / form.xml
<?xml version="1.0" encoding="utf-8"?>
<form>
<fieldset>
<field
name="id"
type="hidden"
/>
<field name="nombre" type="text" class="inputbox"
size="40" label="nombre"
description="Nombre" />
<field name="direccion" type="text" class="inputbox"
size="40" label="direccion"
description="Direccion" />
...
</fieldset>
</form>
在控制器/我有restaurantes.php和restaurante.php。最后一个没有任何功能。最后在views / restaurante中,我有view.html和views / restaurante / tmpl / edit.php。
观点是:
class BusquedaViewRestaurante extends JView
{
public function display($tpl = null)
{
$form = $this->get('Form');
$item = $this->get('Item');
// Check for errors.
if (count($errors = $this->get('Errors'))) {
JError::raiseError(500, implode("\n", $errors));
return false;
}
$this->form =$form;
$this->item =$item;
$this->addToolbar();
parent::display($tpl);
}
/**
* Add the page title and toolbar.
*
* @since 1.6
*/
protected function addToolbar()
{
$input =JFactory::getApplication()->input;
$input->set('hidemainmenu', true);
$isNew = ($this->item->id == 0);
JToolBarHelper::title($isNew ? JText::_('NEW')
: JText::_('EDIT'));
JToolBarHelper::save('busqueda.save');
JToolBarHelper::cancel('busqueda.cancel', $isNew ? 'JTOOLBAR_CANCEL'
: 'JTOOLBAR_CLOSE');
}
}
在edit.php中
<form action="<?php echo JRoute::_('index.php?option=com_busqueda&layout=edit&id='.(int) $this->item->id); ?>" method="post" name="adminForm" id="restaurante-form" class="form-validate">
<fieldset class="adminform">
<legend><?php echo JText::_('DETALLES'); ?></legend>
<ul class="adminformlist">
<li><?php echo $this->form->getLabel('nombre'); ?>
<?php echo $this->form->getInput('nombre'); ?></li>
<li><?php echo $this->form->getLabel('direccion'); ?>
<?php echo $this->form->getInput('direccion'); ?></li>
....
</ul>
</fieldset>
<div>
<input type="hidden" name="task" value="" />
<?php echo JHtml::_('form.token'); ?>
</div>
</form>
这与教程中显示的相同,但是当我点击编辑时,我会看到一个白页。
任何想法。我忘了做某事。
感谢。
答案 0 :(得分:0)
要查看可能出现的问题,您需要在php.ini中启用php错误日志记录。当php-xml包过时时我遇到了这个问题。在php.ini中,您可能需要添加/取消注释这些行
php_flag display_errors on php_value error_reporting 6143
php_flag log_errors on php_value error_log /Some_path/PHP_errors.log