Joomla网站视图没有“阅读更多”

时间:2013-09-11 16:10:32

标签: php joomla joomla-component

我是Joomla的新手,并试图自己制作一个小组件。 我将站点上的用户重定向到一个视图,在那里他可以在表单中插入一些信息并提交它们。 逻辑有点奏效,但Jommla为帖子插入三个链接,阅读更多和另一个。如何防止Joomla添加此内容?

我的观点代码:

<?php
// No direct access to this file
defined('_JEXEC') or die('Restricted access');

JHtml::_('behavior.framework');
JHtml::stylesheet('my-file.css', 'components/com_component/');

echo '<h1>Form</h1>';
?>

<form action="<?php /* Create JRoute*/ ?>" method="post" name="mailForm">

   <ul>
    <?php foreach($this->form->getFieldset() as $field): 
    if ($field->label!="") {
        echo '<li>'.$field->label.$field->input.'<br/></li>';
    } else {
            echo '<li>'.$field->input.'</li>';             
    }?>

    <?php endforeach; ?>
    </ul>
    <div>
            <input type="submit" value="Senden!">
            <?php echo JHtml::_('form.token'); ?>
    </div>
</form>

渲染结果(非预期链接标记为红色): enter image description here

1 个答案:

答案 0 :(得分:2)

在JForm表单的XML声明中,更新编辑器的条目:

<field name="description" label="Bescheibung" type="editor" />

添加其他属性:

 buttons="false"

参考: http://docs.joomla.org/Editor_form_field_type