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();
    }
}

しかし、まだインポートされていないため、このエラーが発生し続けています...そして、Joomlaが新しいモデルをインポートする方法を調べようとしている約5つの異なるWebサイトにアクセスしています

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 に答える