我想在Joomla 1.6的管理区域的文章编辑页面插入一个自定义字段。请见截图。
http://screencast.com/t/vtLEBdUK我已经尝试编辑myjoomlasite/administrator/components/com_content/models/forms/article.xml
。
我可以在文章选项字段集中引入一个字段,但不能在主编辑区。
我不建议修改核心文件来达到你想要的效果。
您可以使用Joomla的CCK(内容构建工具包)之一来创建您的内容模板。
Joomla最好的免费CCKs:
- Form2Content (my favorite)
- K2(最受欢迎,强烈推荐)
您可以在Joomla扩展目录
要在管理的文章编辑页面中插入自定义字段,需要在两个文件中进行更改
myjoomlasite/管理员/组件/com_content/模型/形式/article.xml
添加您的字段名,如下面的代码
<field name="name" type="text" label="JGLOBAL_NAME" description="JFIELD_NAME_DESC" class="inputbox" size="30" required="true" />
myjoomlasite/管理员/组件/com_content/视图/文章/tmpl/edit。
添加标签和输入字段
<?php echo $this->form->getLabel('name'); ?> <?php echo $this->form->getInput('name'); ?>
您可以为文章组件(com_content)添加自定义字段,而无需更改此链接中的核心文件:http://docs.joomla.org/Adding_custom_fields_to_the_article_component