删除DPCalendar Lite日历列表中的ical下载链接

时间:2016-07-03 18:50:50

标签: joomla-extensions

我想从DPCalendar Lite(illustrative bit of screen shot here)中的日历列表中删除下载链接,但无法为此找到配置选项。有没有办法在不编辑源代码的情况下执行此操作?感谢您的任何提示。

1 个答案:

答案 0 :(得分:1)

如果有配置选项,我仍然会更喜欢,但对于其他想要这样做的人来说,要修改的代码是

/com_dpcalendar/site/layouts/calendar/calendarlist.php

从第49行开始,删除或注释掉:

    <?php
    if (!$calendar->external)
    { ?>
        [ <a href="<?php echo DPCalendarHelperRoute::getCalendarIcalRoute($calendar->id)?>">
            <?php echo JText::_('COM_DPCALENDAR_VIEW_CALENDAR_TOOLBAR_ICAL')?>
        </a> ]

        <?php if (!DPCalendarHelper::isFree() && !JFactory::getUser()->guest)
        {
        ?>
            [ <a href="<?php echo trim(JUri::base(), '/') . '/components/com_dpcalendar/caldav.php/calendars/' . JFactory::getUser()->username . '/dp-' . $calendar->id?>">
                <?php echo JText::_('COM_DPCALENDAR_VIEW_PROFILE_TABLE_CALDAV_URL_LABEL')?>
            </a> ]
        <?php
        }
    }
    ?>