致命错误:在null上调用成员函数update()

时间:2015-04-07 15:02:53

标签: php plugins ilias

我正在一个叫做Ilias的学习管理系统上安装一个插件。它已正确安装,但是当我尝试更新它以使其处于活动状态时,它会发出致命错误:

“致命错误:在第520行的C:\ xampp \ htdocs \ ilias \ Services \ Component \ classes \ class.ilObjComponentSettingsGUI.php中调用null上的成员函数update() < / p>

这段代码指的是:

function updatePlugin()
{
    include_once("./Services/Component/classes/class.ilPlugin.php");
    $pl = ilPlugin::getPluginObject($_GET["ctype"], $_GET["cname"],
        $_GET["slot_id"], $_GET["pname"]);

    $result = $pl->update();

    if ($result !== true)
    {
        ilUtil::sendFailure($pl->message, true);
    }
    else
    {
        ilUtil::sendSuccess($pl->message, true);
    }

上面提到的这一行:

$result = $pl->update();

这是'包含'的文件代码:

    <?php

    abstract class ilPluginConfigGUI

{
    protected $plugin_object = null;

    /**
     * Set plugin object
     *
     * @param   object  plugin object
     */
    final function setPluginObject($a_val)
    {
        $this->plugin_object = $a_val;
    }

    /**
     * Get plugin object
     *
     * @return ilPlugin  object
     */
    public final function getPluginObject()
    {
        return $this->plugin_object;
    }

    /**
     * Execute command
     *
     * @param
     * @return
     */
    function executeCommand()
    {
        global $ilCtrl, $ilTabs, $lng, $tpl;

        $ilCtrl->setParameterByClass("ilobjcomponentsettingsgui", "ctype", $_GET["ctype"]);
        $ilCtrl->setParameterByClass("ilobjcomponentsettingsgui", "cname", $_GET["cname"]);
        $ilCtrl->setParameterByClass("ilobjcomponentsettingsgui", "slot_id", $_GET["slot_id"]);
        $ilCtrl->setParameterByClass("ilobjcomponentsettingsgui", "plugin_id", $_GET["plugin_id"]);
        $ilCtrl->setParameterByClass("ilobjcomponentsettingsgui", "pname", $_GET["pname"]);

        $tpl->setTitle($lng->txt("cmps_plugin").": ".$_GET["pname"]);
        $tpl->setDescription("");

        $ilTabs->clearTargets();

        if($_GET["plugin_id"])
        {
            $ilTabs->setBackTarget(
                $lng->txt("cmps_plugin"),
                $ilCtrl->getLinkTargetByClass("ilobjcomponentsettingsgui", "showPlugin")
            );
        }
        else
        {
            $ilTabs->setBackTarget(
                $lng->txt("cmps_plugins"),
                $ilCtrl->getLinkTargetByClass("ilobjcomponentsettingsgui", "listPlugins")
            );
        }

        $this->performCommand($ilCtrl->getCmd("configure"));

    }

    abstract function performCommand($cmd);
}
?>

我不理解错误,因为我没有更改任何代码,所有这些文件都包含在插件中。我希望有人可以指出我的错误,谢谢!

更新

protected function beforeUpdate()
{
    return true;    // false would indicate that anything went wrong
    // update would not proceed
    // throw an exception in this case
    //throw new ilPluginException($lng->txt(""));
}

/**
 * After update processing
 */
protected function afterUpdate()
{
}

/**
 * Get plugin object.
 *
 * @param   string  $a_ctype    IL_COMP_MODULE | IL_COMP_SERVICE
 * @param   string  $a_cname    component name
 * @param   string  $a_sname    plugin slot name
 * @param   string  $a_pname    plugin name
 */
final static function getPluginObject($a_ctype, $a_cname, $a_slot_id, $a_pname)
{
    global $ilDB;

    include_once("./Services/Component/classes/class.ilPluginSlot.php");
    $slot_name = ilPluginSlot::lookupSlotName($a_ctype, $a_cname, $a_slot_id);

    $cached_component = ilCachedComponentData::getInstance();
    $rec = $cached_component->lookCompId($a_ctype, $a_cname);
    if (! $rec) {
        return NULL;
    } 

1 个答案:

答案 0 :(得分:0)

您的问题由输出中的以下项目指示(请参阅注释):

$_GET["pname"] --> string(26) "SystemNotifications-master"

可能通过从GIT-Repo退房,您创建了一个名为“SystemNotifications-master”的文件夹。这与插件文件夹在ILIAS中必须具有的命名约定不匹配,在这种情况下可能就是:“SystemNotifications”。它必须匹配php插件类的部分(可能类似于il SystemNotifications 插件)。

在任何情况下,都不要更改ILIAS的核心代码。问题肯定不存在,但在您的文件系统/数据库中。