我在管理的文章编辑页面中插入了一个自定义字段 - 我更改了两个文件: 在 /administrator/components/com_content/models/forms/article.xml 我添加了一个字段副标题
<field name="subtitle" type="text" label="Subtitle"
description="Add a subtitle here" class="inputbox" size="30"
required="true" />
并在管理员/组件/com_content/views/article/tmpl/edit.php 我添加
<?php echo $this->form->getLabel('subtitle'); ?>
<?php echo $this->form->getInput('subtitle'); ?
现在我已经创建了我的自定义字段。但是当我输入和保存一些东西时,我必须将值存储在数据库中,它是如何工作的?有谁能够帮我?
谢谢