模块不在joomla 3.0中工作

时间:2013-11-22 09:48:18

标签: joomla joomla3.0 joomla-module

问题是自制模块无法工作 - 我在Joomla 3.0中制作自制模块。我在这里创建了一个 mod_products 文件夹,我们创建了一个名为 mod_products.php 的文件。

mod_products.php - 代码

defined('_JEXEC') or die;
require_once __DIR__ . '/helper.php';         
$value = modProductsHelper::getproducts( $params );
require JModuleHelper::getLayoutPath('mod_products', $params->get('layout', 'default'));

之后我创建了第二个文件 helper.php 代码 -

class modProductsHelper{

    public static function getProducts( $params ){
          return 'Products';
    }

} 

,第三个是 default.php

<?php      

defined('_JEXEC') or die;

if($value!='') { ?>

<ul style="margin-left: 0px;" class="clients-list slides-list slide-wrapper">
       <li class="slide">
            <div class="product-image"><img src="images/product3.png" width="181" height="177"></div>
       </li>       
</ul>
<?php } ?>

然后我们通过管理员面板安装并给出了 mod_products 模块的位置,并显示在 index.php 文件中,如下所示:

<div class="grid_12 product_home">
    <jdoc:include type="modules" name="position-3" />
</div>

但它没有在网站上显示。有谁知道为什么?

编辑:mod_products.xml

<?xml version="1.0" encoding="utf-8"?> 
<extension type="module" version="3.0" client="site" method="upgrade"> 
    <name>mod_products</name> 
    <author>Joomla! Project</author> 
    <creationDate>July 2004</creationDate> 
    <copyright>Copyright (C) 2005 - 2013 Open Source Matters. All rights reserved.</copyright> 
    <license>GNU General Public License version 2 or later; see LICENSE.txt</license> 
    <authorEmail>admin@joomla.org</authorEmail> 
    <authorUrl>www.joomla.org</authorUrl> 
    <version>3.0.0</version> 
    <description>MOD_PRODUCTS_XML_DESCRIPTION</description>
    <files> 
        <filename module="mod_products">mod_products.php</filename> 
        <folder>tmpl</folder> 
        <filename>helper.php</filename> 
        <filename>mod_products.xml</filename> 
    </files> 
    <config> 
    </config> 
</extension>

2 个答案:

答案 0 :(得分:1)

是的,我为你创造了一个小例子。我想这可能是因为你调用了错误的模块布局,并不完全确定。

这是下载模块的链接。通过Joomla后端卸载您正在使用的当前模块并安装:

http://www.mediafire.com/download/ucp3prv219430zl/mod_products.zip

另外,不要忘记将模块分配给菜单项。 可能是之前的问题

享受

答案 1 :(得分:0)

对我来说,似乎你的问题是模块名称。在某些地方你使用过mod_product而在其他地方mod_products请确保你只使用一个。我建议你改变

require JModuleHelper::getLayoutPath('mod_products', $params->get('layout', 'default'));

require JModuleHelper::getLayoutPath('mod_product', $params->get('layout', 'default'));

同时检查您是否已发布模块并对所有页面进行测试。