0

http://codeigniter.com/forums/viewthread/109584/P20で wiredesignz によって Widget プラグインをセットアップしようとしていますが、エラーが発生し続けます。スレッドで指示されているようにすべてをセットアップしていると確信していますが<?php widget::run("test"); ?>、ビューで試してみると次のようになります。

class Test extends Widget { function run() { echo "test"; } } 
Fatal error: Class 'Test' not found in C:\xampp\htdocs\test\application\helpers\widget_helper.php on line 52

私のインストールと違うと思う唯一のことは、Phil Sturgeon のテンプレート ライブラリを使用していることです。

すべてを構造化する方法は次のとおりです。

/application/helpers/widget_helper.php

<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
/**
 * Widget Plugin 
 * 
 * Install this file as application/plugins/widget_pi.php
 * 
 * @version:     0.21
 * $copyright     Copyright (c) Wiredesignz 2009-09-07
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
class Widget
{
    public $module_path;

    function run($file) {        
        $args = func_get_args();

        $module = '';

        /* is module in filename? */
        if (($pos = strrpos($file, '/')) !== FALSE) {
            $module = substr($file, 0, $pos);
            $file = substr($file, $pos + 1);
        }

        list($path, $file) = Modules::find($file, $module, 'widgets/');

        if ($path === FALSE) {
            $path = APPPATH.'widgets/';
        }

        Modules::load_file($file, $path);

        $file = ucfirst($file);
        $widget = new $file();

        $widget->module_path = $path;

        return call_user_func_array(array($widget, 'run'), array_slice($args, 1));    
    }

    function render($view, $data = array()) {
        extract($data);
        include $this->module_path.'views/'.$view.EXT;
    }

    function load($object) {
        $this->$object = load_class(ucfirst($object));
    }

    function __get($var) {
        global $CI;
        return $CI->$var;
    }
} 

/アプリケーション/ウィジェット/test.php

class Test extends Widget {

    function run() {
        echo "test";
    }

} 

/application/views/layouts/public.php

<?php widget::run("test"); ?>

どうすればこれを機能させることができますか?これは単に時代遅れですか?

ウィジェットを実行するためのより良い解決策を探していましたが、見つけられないようです。サイトのサイドバーに表示される内容をページごとに制御できるようにする必要があるだけです。代替方法はありますか?

編集: コメントのウィジェット ライブラリからのエラー

A PHP Error was encountered

Severity: Notice

Message: Undefined property: CI_Lang::$active_lang

Filename: libraries/widgets.php

Line Number: 26

A PHP Error was encountered

Severity: Notice

Message: Undefined property: Page::$sys_lib

Filename: libraries/widgets.php

Line Number: 87

A PHP Error was encountered

Severity: Notice

Message: Trying to get property of non-object

Filename: libraries/widgets.php

Line Number: 27

A PHP Error was encountered

Severity: Notice

Message: Undefined property: CI_Lang::$active_lang

Filename: libraries/widgets.php

Line Number: 26

A PHP Error was encountered

Severity: Notice

Message: Undefined property: Page::$sys_lib

Filename: libraries/widgets.php

Line Number: 87

A PHP Error was encountered

Severity: Notice

Message: Trying to get property of non-object

Filename: libraries/widgets.php

Line Number: 27
4

1 に答える 1

2

こんにちは、ウィジェットライブラリを試してみてください。ローダーで動作します

ウィジェット ライブラリ

于 2012-09-05T11:31:07.997 に答える