2

好的,所以我一直在关注 joomla 2.5 教程并且我设法制作了一个无故障的初始组件。

但我想知道如何将额外的类导入框架?

我有一个名为auth.php的模型类

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

// import Joomla modelitem library
jimport('joomla.application.component.modelitem');

/**
 * Auth Model
 */
class AutoBaseModelAuth extends JModelItem
{
    function detail()
    {   
        echo "this is test";
    }
}

位于 C:/xampp/htdocs/com_autobase/model/auth.php

xampp
(来源:iforce.co.nz

而我的观点...

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

// import Joomla view library
jimport('joomla.application.component.view');

/**
 * HTML View class for the AutoBase Component
*/
class AutoBaseViewAutoBase extends JView
{
    // Overwriting JView display method
    function display($tpl = null) 
    {       
        $db     =& JFactory::getDBO();
        //request the auth model
        $model  =& $this->getModel('auth');
        $items =& $model->detail();
    }
}

但是我一直在不知不觉中收到这个错误,因为它还没有被导入......而且我已经在大约 5 个不同的网站上试图找出 Joomla 如何导入新模型

Notice: Undefined index: auth in C:\xampp\htdocs\libraries\joomla\application\component\view.php on line 413

那么有人可以解释一下joomla中的模型是如何初始化的吗?以及我做错了什么..谢谢!

4

1 回答 1

6

我们通常在所有组件中包含的帮助器中都有这个静态函数

public static function getModel($name, $component_name = null, $config = array()) {

    //Use default configured component unless other component name supplied
    if(!$component_name) {
        $component_name = self::$com_name;
    }

    jimport('joomla.application.component.model');
    $modelFile = JPATH_SITE . DS . 'components' . DS . $component_name . DS . 'models' . DS . $name.'.php';
    $adminModelFile = JPATH_ADMINISTRATOR . DS . 'components' . DS . $component_name . DS . 'models' . DS . $name.'.php';
    if (file_exists($modelFile)) {
        require_once($modelFile);
    } elseif (file_exists($adminModelFile)) {
        require_once($adminModelFile);
    } else {
        JModel::addIncludePath(JPATH_SITE . DS . 'components' . DS . $component_name . DS . 'models');
    }

    //Get the right model prefix, e.g. UserModel for com_user
    $model_name = str_replace('com_', '', $component_name);
    $model_name = ucfirst($model_name).'Model';

    $model = JModel::getInstance($name, $model_name, $config);

    return $model;
}

然后你可以去任何地方得到一个模型

$model = helper::getModel('Name', 'ComponentName');
于 2012-06-20T13:03:14.843 回答