无法找到我应该改变的内容"未定义的偏移量:1" PHP通知

时间:2015-03-23 14:54:26

标签: php arrays joomla3.0

我有这个错误:

  

PHP注意:未定义的偏移量:第59行/var/www/joomla/Joomla_3/modules/mod_menu/helper.php中的1

我在搜索后发现它可能是由于数组的第一个参数未定义。但是我尝试了很多东西,但是在没有通知的情况下我无法找到我应该改变的东西。

这是helper.php:

<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_menu
 *
 * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/**
 * Helper for mod_menu
 *
 * @package     Joomla.Site
 * @subpackage  mod_menu
 * @since       1.5
 */
class ModMenuHelper
{
    /**
     * Get a list of the menu items.
     *
     * @param  JRegistry   $params  The module options.
     *
     * @return  array
     *
     * @since   1.5
     */
    public static function getList(&$params)
    {
        $app = JFactory::getApplication();
        $menu = $app->getMenu();

        // Get active menu item
        $base = self::getBase($params);
        $user = JFactory::getUser();
        $levels = $user->getAuthorisedViewLevels();
        asort($levels);
        $key = 'menu_items' . $params . implode(',', $levels) . '.' . $base->id;
        $cache = JFactory::getCache('mod_menu', '');
        if (!($items = $cache->get($key)))
        {
            $path    = $base->tree;
            $start   = (int) $params->get('startLevel');
            $end     = (int) $params->get('endLevel');
            $showAll = $params->get('showAllChildren');
            $items   = $menu->getItems('menutype', $params->get('menutype'));

            $lastitem = 0;

            if ($items)
            {
                foreach ($items as $i => $item)
                {
                    if (($start && $start > $item->level)
                        || ($end && $item->level > $end)
                        || (!$showAll && $item->level > 1 && !in_array($item->parent_id, $path))
//THIS IS LINE 59       || ($start > 1 && !in_array($item->tree[$start - 2], $path)))
                    {
                        unset($items[$i]);
                        continue;
                    }

                    $item->deeper     = false;
                    $item->shallower  = false;
                    $item->level_diff = 0;

                    if (isset($items[$lastitem]))
                    {
                        $items[$lastitem]->deeper     = ($item->level > $items[$lastitem]->level);
                        $items[$lastitem]->shallower  = ($item->level < $items[$lastitem]->level);
                        $items[$lastitem]->level_diff = ($items[$lastitem]->level - $item->level);
                    }

                    $item->parent = (boolean) $menu->getItems('parent_id', (int) $item->id, true);

                    $lastitem     = $i;
                    $item->active = false;
                    $item->flink  = $item->link;

                    // Reverted back for CMS version 2.5.6
                    switch ($item->type)
                    {
                        case 'separator':
                        case 'heading':
                            // No further action needed.
                            continue;

                        case 'url':
                            if ((strpos($item->link, 'index.php?') === 0) && (strpos($item->link, 'Itemid=') === false))
                            {
                                // If this is an internal Joomla link, ensure the Itemid is set.
                                $item->flink = $item->link . '&Itemid=' . $item->id;
                            }
                            break;

                        case 'alias':
                            // If this is an alias use the item id stored in the parameters to make the link.
                            $item->flink = 'index.php?Itemid=' . $item->params->get('aliasoptions');
                            break;

                        default:
                            $router = JSite::getRouter();
                            if ($router->getMode() == JROUTER_MODE_SEF)
                            {
                                $item->flink = 'index.php?Itemid=' . $item->id;
                            }
                            else
                            {
                                $item->flink .= '&Itemid=' . $item->id;
                            }
                            break;
                    }

                    if (strcasecmp(substr($item->flink, 0, 4), 'http') && (strpos($item->flink, 'index.php?') !== false))
                    {
                        $item->flink = JRoute::_($item->flink, true, $item->params->get('secure'));
                    }
                    else
                    {
                        $item->flink = JRoute::_($item->flink);
                    }

                    // We prevent the double encoding because for some reason the $item is shared for menu modules and we get double encoding
                    // when the cause of that is found the argument should be removed
                    $item->title        = htmlspecialchars($item->title, ENT_COMPAT, 'UTF-8', false);
                    $item->anchor_css   = htmlspecialchars($item->params->get('menu-anchor_css', ''), ENT_COMPAT, 'UTF-8', false);
                    $item->anchor_title = htmlspecialchars($item->params->get('menu-anchor_title', ''), ENT_COMPAT, 'UTF-8', false);
                    $item->menu_image   = $item->params->get('menu_image', '') ? htmlspecialchars($item->params->get('menu_image', ''), ENT_COMPAT, 'UTF-8', false) : '';
                }

                if (isset($items[$lastitem]))
                {
                    $items[$lastitem]->deeper     = (($start?$start:1) > $items[$lastitem]->level);
                    $items[$lastitem]->shallower  = (($start?$start:1) < $items[$lastitem]->level);
                    $items[$lastitem]->level_diff = ($items[$lastitem]->level - ($start?$start:1));
                }
            }

            $cache->store($items, $key);
        }
        return $items;
    }

    /**
     * Get base menu item.
     *
     * @param   JRegistry  $params  The module options.
     *
     * @return   object
     *
     * @since   3.0.2
     */
    public static function getBase(&$params)
    {

        // Get base menu item from parameters
        if ($params->get('base'))
        {
            $base = JFactory::getApplication()->getMenu()->getItem($params->get('base'));
        }
        else
        {
            $base = false;
        }

        // Use active menu item if no base found
        if (!$base)
        {
            $base = self::getActive($params);
        }

        return $base;
    }

    /**
     * Get active menu item.
     *
     * @param   JRegistry  $params  The module options.
     *
     * @return  object
     *
     * @since   3.0.2
     */
    public static function getActive(&$params)
    {
        $menu = JFactory::getApplication()->getMenu();

        return $menu->getActive() ? $menu->getActive() : $menu->getDefault();
    }

}

1 个答案:

答案 0 :(得分:0)

将其更改为:

|| ($start > 1 && !empty($item->tree[$start - 2]) && !in_array($item->tree[$start - 2], $path)))

empty()将检查是否存在,并且它同时不为空。