Joomla在view.html.php中调用Helper

时间:2013-09-21 17:01:35

标签: joomla components

我无法使用辅助功能

我在网站上有一个帮助文件 - > helpers-> document_management.php

我在该文件中有一个班级                 定义('_ JEXEC')或死;

            /**
            * Document_managment helper.
            */
            class Document_managmentHelper
            {

            function testFunction()
            {
                $textis= "hello";
                return $textis; 
            }
            }

在我的网站 - > views-> document-> view.html.php

我尝试调用函数testFunction:

            $callingCard = Jview::loadHelper('Document_managment');
            //require_once JPATH_COMPONENT.'/helpers/document_managment.php';
            $getprofileinfo = Document_managmentHelper::testFunction();
            echo getprofileinfo;    
            echo "test is ". JPATH_COMPONENT.'/helpers/document_managment.php';

我得到了

PHP致命错误:在第xx行的/var/www/vhosts/mydomain.com/httpdocs/components/com_document_managment/views/document/view.html.php中找不到类'Document_managmentHelper'

我无法弄清楚

1 个答案:

答案 0 :(得分:0)

我通过以下方法在我的自定义组件视图的default.php中调用了helper的方法:

$isEnable = CustomFrontendHelper::getTheMethod('is_enable'); // a static function in the helper