[Beta] phpBB Calendar (alightner) (行事曆) (Update 0.1.1)

MODs Released by Other phpbb Sites
歡迎推薦非官方認證外掛,或許有安全性之疑慮,所有問題由原發表者回覆!

版主: 版主管理群譯文組

版面規則
所謂「非官方認證外掛」是指未經官方認證,發表在 [3.0.x] MODs in Development 版面的外掛。

為了維護推薦外掛之品質,自即日起,如果要在這個版面推薦外掛,那麼請遵守底下格式,謝謝合作!

發文格式:
  • 外掛名稱:(原文/中文化名稱)
  • 外掛作者:(原文)
  • 外掛描述:(原文/中文化描述)
  • 外掛版本:(原文)
  • 外掛下載:(連結位址)
  • 資料來源:(連結位址)
    --
  • 中文化分享:(若外掛無須修改語言檔、或無須上傳語言檔,則免之。)
    --
  • 使用後心得:(簡單陳述您的安裝經驗、使用心得、或其他注意事項。)


p.s.
這個版面之發文,需經版主審核。
主題已鎖定
dendrimer
星球普通子民
星球普通子民
文章: 9
註冊時間: 2004-09-05 09:19

[Beta] phpBB Calendar (alightner) (行事曆) (Update 0.1.1)

文章 dendrimer »

外掛名稱:phpBB Calendar
外掛作者:alightner
外掛描述:讓您的論壇增加一個行事曆模組。
外掛版本:0.0.7
資料來源:
http://www.phpbb.com/community/viewtopi ... 0&t=666195
--
中文化分享:
http://www.phpbb.com/community/viewtopi ... a#p4706895
翻譯的不好的話 請多指教 :$
--
使用後心得:
可於ACP設定不同群組及權限

安裝方法大致如下
install.xml
1.先於SQL裡面的phpbb_acl_options執行指令(只需一次)
2.複製root內的檔案並編輯

prosilver.xml
1.複製templates內的檔案並編輯

DIY Instructions 大致重點為
1.上述動作完成後進入ACP
2.在系統--管理員控制台 (ACP)--選擇行事曆(acp calendar)--分別安裝兩個模組行事曆設定(Calendar Settings)及管理事件類型(Manage Event Calendar Types)
3.清除快取 會出現行事曆標籤
4.行事曆設定 設定資料期限,首頁模式,標題長度等
5.設定你的事件類型,顏色,圖示
6.接下來到權限設定 會員,管理員等權限
會員擁有查看,新增,編輯,刪除權限
全域板主擁有可刪除他人新增的行事曆事件及可編輯他人新增的行事曆事件
管理員擁有可設定行事曆及事件類型
7.安裝完成
附加檔案
phpbb_Calendar_0_0_7.rar
內附中文語系及圖示
(59.92 KiB) 已下載 1891 次
頭像
心靈捕手
默默耕耘的老師
默默耕耘的老師
文章: 8510
註冊時間: 2004-04-30 01:54
來自: Taiwan

phpBB Calendar (Update 0.0.8)

文章 心靈捕手 »

代碼: 選擇全部

2008-07-03- Version 0.0.8

Update server name and version number (adm/mods/phpbb_calendar_version.php)

Add option to allow everyday users to see hidden groups on invite list (adm/style/acp_calendar.html, includes/acp/acp_calendar.php, includes/functions_calendar.php, language/en/mods/calendar.php)

Remove bogus warning when deleting an event type that was not referenced by any events (adm/style/acp_calendar_event_types.html, includes/acp/acp_calendar.php)

Added color swatch to edit event type in ACP (adm/style/acp_calendar_event_types.html, includes/acp/acp_calendar.php)

Correct calls to request_var with integer type values (includes/acp/acp_calendar.php, includes/functions_calendar.php, calendarpost.php)

Remove alternate cron text - firefox bug unrelated to this mod, but many users complained about it so the fix is here if you want it (includes/functions.php)

Display full event subject text on mouseover tooltip (includes/functions_calendar.php, styles/prosilver/template/calendar.html, styles/prosilver/template/calendar_next_events_on_index.html, styles/prosilver/template/calendar_view_day.html, styles/prosilver/template/calendar_week_on_index.html)

Relocate the calendar on the index page (styles/prosilver/template/index_body.html)

Prevent display of invalid days like February 31st - even if the user selected that option from the pulldown menu on purpose (includes/functions_calendar.php)

Fix bug with displaying extra smilies when posting events (includes/functions_calendar.php)

Remove ALL_DAY_STARTING - no longer used (language/en/calendar.php, language/en/calendarpost.php)

On new event confirmation page, add link to view the newly created event (calendarpost.php)

0.0.7 Update 0.0.8 成功經驗

#
#-----[ SQL ]-----
#

代碼: 選擇全部

INSERT INTO `phpbb_calendar_config` (`config_name`, `config_value`) VALUES ('display_hidden_groups', '0');
#
#-----[ UPLOAD ]-----
# ps. 重新上傳所有附加檔案
COPY root/*.* TO phpbb3_root/*.*
COPY templates/prosilver/*.* TO phpbb3_root/styles/prosilver/*.*

#
#-----[ OPEN ]-----
#
includes/functions.php

#
#-----[ FIND ]-----
#

代碼: 選擇全部

$template->assign_var('RUN_CRON_TASK', '<img src="' . append_sid($phpbb_root_path . 'cron.' . $phpEx, 'cron_type=' . $cron_type) . '" width="1" height="1" alt="cron" />');
#
#-----[ REPLACE WITH ]-----
#

代碼: 選擇全部

$template->assign_var('RUN_CRON_TASK', '<img src="' . append_sid($phpbb_root_path . 'cron.' . $phpEx, 'cron_type=' . $cron_type) . '" width="1" height="1"  />');
#
#-----[ SAVE & CLOSE ]-----
#

中文化分享:
ps. 此乃參考上頭 dendrimer 的譯文加以修改 (感謝其分享), 並針對 0.0.8 增減.
#
#-----[ OPEN ]-----
#
language/zh_cmn_hant/acp/common.php

#
#-----[ FIND ]-----
#

代碼: 選擇全部

	'ACP_BOTS'					=> '管理機器人',
#
#-----[ AFTER, ADD ]-----
#

代碼: 選擇全部

	'ACP_CALENDAR'				=> '行事曆',
	'ACP_CALENDAR_SETTINGS'				=> '行事曆設定',
	'ACP_CALENDAR_DELETE_EVENT_TYPE'	=> '刪除事件類型',
	'ACP_CALENDAR_ETYPES'				=> '管理事件類型',
#
#-----[ OPEN ]-----
#
language/zh_cmn_hant/acp/styles.php

#
#-----[ FIND ]-----
#

代碼: 選擇全部

	'IMG_ICON_USER_WARN'		=> '警告會員',
#
#-----[ AFTER, ADD ]-----
#

代碼: 選擇全部

	'IMG_BUTTON_CALENDAR_NEW'	=> '新的事件',
	'IMG_BUTTON_CALENDAR_DAY'	=> '以每天模式檢視',
	'IMG_BUTTON_CALENDAR_WEEK'	=> '以每週模式檢視',
	'IMG_BUTTON_CALENDAR_MONTH'	=> '以每月模式檢視',
#
#-----[ OPEN ]-----
#
language/zh_cmn_hant/common.php

#
#-----[ FIND ]-----
#

代碼: 選擇全部

	'CANCEL'	=> '取消',
#
#-----[ BEFORE, ADD ]-----
#

代碼: 選擇全部

	'CALENDAR'				=> '行事曆',
#
#-----[ SAVE & CLOSE ]-----
#
此檔解壓縮後, 將 /zh_cmn_hant/*.* 上傳 language/zh_cmn_hant/*.*
zh_cmn_hant.zip
Calendar 0.0.8
(6.22 KiB) 已下載 1644 次
ps.
原外掛作者留言:
1. 此外掛稍具難度, 不建議新手安裝.
2. 此外掛尚在發展中, 不建議正常使用中的論壇使用.
施比受有福,祝福您好運! ^_^
歡迎光臨★★心靈捕手★★ :: 討論區
https://wang5555.dnsfor.me/phpBB3/
頭像
心靈捕手
默默耕耘的老師
默默耕耘的老師
文章: 8510
註冊時間: 2004-04-30 01:54
來自: Taiwan

phpBB Calendar (alightner) (行事曆) (Update 0.1.0)

文章 心靈捕手 »

代碼: 選擇全部

2009-07-24 - Version 0 1 0 

Added so many new features, it's easiest to list the changed files separate from the list of changed functionality so here goes... New/Edited files in 0.1.0: adm/mods/phpbb_calendar_version.php, adm/style/acp_calendar.html, includes/acp/info/acp_calendar.php, includes/acp/acp_calendar.php, includes/acp/acp_language.php, includes/acp/acp_styles.php, includes/ucp/info/ucp_main.php, includes/ucp/ucp_main.php, includes/constants.php, includes/functions.php, includes/functions_calendar.php, language/en/acp/permissions_calendar.php, language/en/acp/styles.php, language/en/email/calendar_new_event.txt, language/en/email/calendar_updated_event.txt, language/en/email/calendar_updated_reply.txt, language/en/mods/calendar.php, language/en/calendar.php, language/en/calendarpost.php, language/en/common.php, language/en/ucp.php, styles/prosilver/imageset/en/icon_calendar_delete_all.gif, styles/prosilver/imageset/en/icon_calendar_edit_all.gif, styles/prosilver/imageset/en/imageset.cfg, styles/prosilver/template/calendar_next_events_for_x_days.html, styles/prosilver/template/calendar_next_events_on_index.html, styles/prosilver/template/calendar_post_editor.html, styles/prosilver/template/calendar_post_preview.html, styles/prosilver/template/calendar_view_event.html, styles/prosilver/template/overall_header.html, styles/prosilver/template/sorttable.js, styles/prosilver/template/ucp_main_calendar_myevents.html, styles/prosilver/template/ucp_main_calendar_registration.html, styles/prosilver/theme/buttons.css, styles/prosilver/theme/colours.css, calendar.php, calendarpost.php, cron.php, viewonline.php 

Add Recurring events

Add Event Registration

Add Ability to invite multiple groups to an event

Add Custom date/time formatting controlled in calendar ACP

Add Ability to display events only on their start date

Add Ability to display a list of upcoming events for the next X days

Add Ability to display a list of upcoming events (that the user has registered for) for the next X days

Add Detailed display for calendar on who is online page

Add New permission option to invite groups you're not a member of

Add Detailed permissions for ability to create private, group, or public events

Add Utility in ACP to move all events +/- one hour (helps when changing forum's dst setting).

Add Ability to filter the calendar for events of a specific type

Add UCP module to "Manage my events"

Add UCP module to "Manage event registration"

Add Ability to "watch" the calendar

Add Ability to "watch" specific events

Fix end of year bug (phpversion specific) use Y not o!

Moved public events to default position

Fix bug with hidden groups

Provide contrib file to clean up birthdays without leading whitespace

--
資料來源:
http://www.phpbb.com/community/viewtopi ... 0&t=666195

中文化:
參考下列檔案安裝或更新.
/contrib/zh_cmn_hant/zh_cmn_hant.xml

0.0.8 Update 0.1.0 成功經驗
  1. 除中文化更新外, 參考下列檔案更新.
    • /xml/upgrade_from_0_0_8.xml
    • /xml/prosilver_upgrade_from_0_0_8.xml
  2. ACP > 權限 > 重新設定相關權限
  3. ACP > 風格 > 樣板/主題/圖檔組 > prosilver > 重新整理
  4. ACP > 系統 > UCP > 概要 > 新增/啟用 > "管理我的事件, 管理事件登記" 模組

P.S.
  • 因為之前作者交付我翻譯的檔案, 並未含主程式,
    所以翻譯的內容可能需實際測試後, 再加以修正.
  • 此版更新極多, 建議您先於測試論壇安裝或升級.
施比受有福,祝福您好運! ^_^
歡迎光臨★★心靈捕手★★ :: 討論區
https://wang5555.dnsfor.me/phpBB3/
頭像
心靈捕手
默默耕耘的老師
默默耕耘的老師
文章: 8510
註冊時間: 2004-04-30 01:54
來自: Taiwan

phpBB Calendar (行事曆) 0.1.0 之中文化與其他修正

文章 心靈捕手 »

  • 語意修正:

    --07/26 --
    /language/zh_cmn_hant/calendar.php
    old:

    代碼: 選擇全部

    	'DELETE_ALL_EVENTS'		=> '刪除這個事件的所有出現率。',
    
    new:

    代碼: 選擇全部

    	'DELETE_ALL_EVENTS'		=> '刪除這個循環事件的所有文章',
    old:

    代碼: 選擇全部

    	'EDIT_ALL_EVENTS'		=> '編輯這個事件的所有出現率。',
    
    new:

    代碼: 選擇全部

    	'EDIT_ALL_EVENTS'		=> '編輯這個循環事件的所有文章',
    old:

    代碼: 選擇全部

    	'OCCURS_EVERY'			=> '發生的一切',
    
    new:

    代碼: 選擇全部

    	'OCCURS_EVERY'			=> '出現的頻率',
    old:

    代碼: 選擇全部

    	'RECURRING_EVENT_CASE_4_STR'    => '%3$s 從 %4$s 之最後的 %2$s - 每 %5$s 年',
    
    new:

    代碼: 選擇全部

    	'RECURRING_EVENT_CASE_4_STR'    => '%4$s 之最後的 %2$s - 每 %5$s 年',
    old:

    代碼: 選擇全部

    	'RECURRING_EVENT_CASE_9_STR'    => '%3$s 從月之最後的 %2$s - 每 %5$s 月',
    
    new:

    代碼: 選擇全部

    	'RECURRING_EVENT_CASE_9_STR'    => '最後的 %2$s - 每 %5$s 月',
    /language/zh_cmn_hant/calendarpost.php
    old:

    代碼: 選擇全部

    	'DELETE_ALL_EVENTS'			=> '刪除這個事件的所有出現率',
    
    new:

    代碼: 選擇全部

    	'DELETE_ALL_EVENTS'			=> '刪除這個循環事件的所有文章',
    old:

    代碼: 選擇全部

    	'RECURRING_EVENT_TYPE_EXPLAIN'	=> '選擇一個字母表示它們頻率:A - 每年、M - 每月、W - 每週、D - 每天',
    new:

    代碼: 選擇全部

    	'RECURRING_EVENT_TYPE_EXPLAIN'	=> '選擇一個字母表示它們頻率:A - 每年、M - 每月、W - 每週、D - 每天。',
    old:

    代碼: 選擇全部

    	'RECURRING_EVENT_FREQ_EXPLAIN'	=> '在上頭選擇的這個值表示 [Y]',
    new:

    代碼: 選擇全部

    	'RECURRING_EVENT_FREQ_EXPLAIN'	=> '在上頭選擇的這個值表示 [Y]。',
    /language/zh_cmn_hant/ucp.php
    old:

    代碼: 選擇全部

    	'DISPLAY_EVENTS_DAYCOUNT'	=> '未來您想要顯示多少天?',
    new:

    代碼: 選擇全部

    	'DISPLAY_EVENTS_DAYCOUNT'	=> '您想要顯示未來多少天的事件?',
    --08/02--
    /language/zh_cmn_hant/calendar.php
    old:

    代碼: 選擇全部

    	'INVALID_EVENT'			=> '嘗試檢視的事件不存在.',
    
    new:

    代碼: 選擇全部

    	'INVALID_EVENT'			=> '嘗試檢視的事件不存在。',
    
    old:

    代碼: 選擇全部

    	'UPCOMING_EVENTS'		=> '即將到來事件',
    
    new:

    代碼: 選擇全部

    	'UPCOMING_EVENTS'		=> '即將到來的事件',
    old:

    代碼: 選擇全部

    	'ZEROTH_FROM'			=> '從第 0 個起 ',
    
    new:

    代碼: 選擇全部

    	'ZEROTH_FROM'			=> '第 0 個從 ',
    
  • [修正] 避免發文時, 設定循環事件頻率為 0:
    -- 開啟 --
    calendarpost.php

    -- 找到 --

    代碼: 選擇全部

    		$event_data['frequency'] = request_var('calRFrq', 1);
    
    -- 之後, 新增 --

    代碼: 選擇全部

          if( $event_data['frequency'] < 1 )
          {
             $error[] = $user->lang['FREQUENCEY_LESS_THAN_1'];
          }
    
    -- 開啟 --
    language/zh_cmn_hant/calendarpost.php

    -- 找到 --

    代碼: 選擇全部

    	'EVERYONE'					=> '任何人',
    
    -- 之後, 新增 --

    代碼: 選擇全部

    	'FREQUENCEY_LESS_THAN_1'   => '循環的事件之頻率必須大於或等於 1 。',
    
    --
    參考資料:
    http://www.phpbb.com/community/viewtopi ... #p10317705
  • [修正] 語意顯示不完全:
    -- 開啟 --
    styles/prosilver/template/calendar_post_editor.html

    -- 找到 --

    代碼: 選擇全部

    			<dt><label for="calRFreq">{L_RECURRING_EVENT_FREQ}</label></dt>
    
    -- 取代成 --

    代碼: 選擇全部

    			<dt><label for="calRFreq">{L_RECURRING_EVENT_FREQ}</label><br />{L_RECURRING_EVENT_FREQ_EXPLAIN}</dt>
    
    清除論壇快取.

    --
    參考資料:
    http://www.phpbb.com/community/viewtopi ... #p10319325
最後由 心靈捕手 於 2009-08-02 12:08 編輯,總共編輯了 2 次。
理由: --08/02-- 語意修正.
施比受有福,祝福您好運! ^_^
歡迎光臨★★心靈捕手★★ :: 討論區
https://wang5555.dnsfor.me/phpBB3/
頭像
心靈捕手
默默耕耘的老師
默默耕耘的老師
文章: 8510
註冊時間: 2004-04-30 01:54
來自: Taiwan

[Beta] phpBB Calendar (行事曆) (v0.1.0) 中文化語意修正

文章 心靈捕手 »

--09/11--
--開啟--
language/zh_cmn_hant/mods/calendar.php

--找到--

代碼: 選擇全部

    'DISPLAY_EVENTS_ONLY_1_DAY'                    => '顯示一整天的事件',
    'DISPLAY_EVENTS_ONLY_1_DAY_EXPLAIN'          => '只有顯示當天事件開始的時間 (忽略結束的日期/時間)。',
--取代成--

代碼: 選擇全部

    'DISPLAY_EVENTS_ONLY_1_DAY'                    => '只顯示一天的連續事件',
    'DISPLAY_EVENTS_ONLY_1_DAY_EXPLAIN'          => '只有顯示連續事件在開始的當天 (忽略結束的日期/時間)。',
說明:
  • ACP 行事曆設定, 如果有勾選 "只顯示一天的連續事件", 那麼兩天以上的連續事件, 如下圖顯示於月曆或週曆.
    2009091139.jpg
  • ACP 行事曆設定, 如果無勾選 "只顯示一天的連續事件", 那麼兩天以上的連續事件, 如下圖顯示於月曆或週曆.
    2009091138.jpg
參考連結:
http://wang5555.dnsfor.me/phpBB3/viewtopic.php?f=36&t=24482
施比受有福,祝福您好運! ^_^
歡迎光臨★★心靈捕手★★ :: 討論區
https://wang5555.dnsfor.me/phpBB3/
頭像
心靈捕手
默默耕耘的老師
默默耕耘的老師
文章: 8510
註冊時間: 2004-04-30 01:54
來自: Taiwan

重新打包 phpBB Calendar (行事曆) (0.1.0)

文章 心靈捕手 »

雖然原始外掛已經內含中文化,但是裡頭的相關路徑比較複雜。因此,重新打包之,順便更新上頭的部份中文化內容。
phpbb_Calendar_0_1_0.zip
包含中文化語言檔、圖片、以及安裝說明。
(179.78 KiB) 已下載 1605 次
P.S.
更新內容包含下列兩項:
  1. [修正] 語意顯示不完全
  2. [修正] 避免發文時, 設定循環事件頻率為 0
施比受有福,祝福您好運! ^_^
歡迎光臨★★心靈捕手★★ :: 討論區
https://wang5555.dnsfor.me/phpBB3/
頭像
心靈捕手
默默耕耘的老師
默默耕耘的老師
文章: 8510
註冊時間: 2004-04-30 01:54
來自: Taiwan

Re: 重新打包 phpBB Calendar (行事曆) (0.1.0)

文章 心靈捕手 »

心靈捕手 寫:雖然原始外掛已經內含中文化,但是裡頭的相關路徑比較複雜。因此,重新打包之,順便更新上頭的部份中文化內容。
phpbb_Calendar_0_1_0.zip
P.S.
更新內容包含下列兩項:
  1. [修正] 語意顯示不完全
  2. [修正] 避免發文時, 設定循環事件頻率為 0
引言之壓縮檔,重新比對英文語言檔後,發現漏掉部份修改(如下),請抽空修補:
--開啟--
language/zh_cmn_hant/calendarpost.php

--找到--

代碼: 選擇全部

if (!defined('IN_PHPBB'))
{
	exit;
}
--取代成--

代碼: 選擇全部

if (empty($lang) || !is_array($lang))
{
	$lang = array();
}
--找到--

代碼: 選擇全部

	'EVERYONE'					=> '任何人',
--之後增加--

代碼: 選擇全部

	'FREQUENCEY_LESS_THAN_1'	=> '循環的事件之頻率必須大於或等於 1。',
--找到--

代碼: 選擇全部

	'NO_EVENT_TYPES'			=> '管理員尚未設定事件類型,無法新增事件。',
--之後增加--

代碼: 選擇全部

	'NO_GROUP_SELECTED'			=> '這個群組事件,沒有選擇可以檢視的群組。',
--儲存與關閉--
施比受有福,祝福您好運! ^_^
歡迎光臨★★心靈捕手★★ :: 討論區
https://wang5555.dnsfor.me/phpBB3/
頭像
心靈捕手
默默耕耘的老師
默默耕耘的老師
文章: 8510
註冊時間: 2004-04-30 01:54
來自: Taiwan

[補正] 中文化修改遺漏

文章 心靈捕手 »

--開啟--
language/zh_cmn_hant/common.php

--找到--

代碼: 選擇全部

'VIEWING_CALENDAR_DAY'      => '正在檢視日曆',
--之後增加--

代碼: 選擇全部

'VIEWING_CALENDAR_EVENT'   => '正在檢視行事曆事件',
--儲存與關閉--

p.s.
1. 感謝 JORDAN 指正! :-D
2. 待外掛更新,再重新打包。
施比受有福,祝福您好運! ^_^
歡迎光臨★★心靈捕手★★ :: 討論區
https://wang5555.dnsfor.me/phpBB3/
頭像
心靈捕手
默默耕耘的老師
默默耕耘的老師
文章: 8510
註冊時間: 2004-04-30 01:54
來自: Taiwan

[鎖定] phpBB Calendar (alightner) (行事曆) (Update 0.1.0)

文章 心靈捕手 »

這支外掛已經被鎖定。理由是作者已經有很長一段時間沒有與網友互動了。

參考連結:
http://www.phpbb.com/community/viewtopi ... #p12990738

p.s.
鎖定本主題。(其他相關延伸之外掛,也將一併鎖定。)
施比受有福,祝福您好運! ^_^
歡迎光臨★★心靈捕手★★ :: 討論區
https://wang5555.dnsfor.me/phpBB3/
頭像
心靈捕手
默默耕耘的老師
默默耕耘的老師
文章: 8510
註冊時間: 2004-04-30 01:54
來自: Taiwan

[Beta] phpBB Calendar (alightner) (行事曆) (Update 0.1.1)

文章 心靈捕手 »

很高興,外掛作者又回來開發了。 :-D

目前,升級為 0.1.1 版,不過,因為尚在測試中,所以未開放語言檔的翻譯。
而之前 0.1.0 版的中文化翻譯,經比對後,修正一些小錯誤,重新打包上傳。

p.s.
將主題解除鎖定之。
附加檔案
zh_cmn_hant.zip
正體中文 for phpBB Calendar 0.1.0
(10.52 KiB) 已下載 921 次
施比受有福,祝福您好運! ^_^
歡迎光臨★★心靈捕手★★ :: 討論區
https://wang5555.dnsfor.me/phpBB3/
頭像
心靈捕手
默默耕耘的老師
默默耕耘的老師
文章: 8510
註冊時間: 2004-04-30 01:54
來自: Taiwan

[Beta] phpBB Calendar (alightner) (行事曆) (Update 0.1.1)

文章 心靈捕手 »

外掛歷史:
2012-08-03 - Version0.1.1
  • Add ACP support for custom colors to highlight event registration status: yes, no, or maybe.
  • Bug Fix: If users aren't logged in and attempt to view a private event, display the login box instead of telling them they aren't authorized to view the event.
  • Bug Fix: Prevent errors when users attempt to register for an event with a negative number of people attending the event. If the user enters a negative number, store it as zero.
  • Bug Fix: Prevent duplicate event registrations, when the user registers for an event take them to a new screen before reloading the event
  • Bug Fix: Initialize $edit_rsvp_url variable.
  • Bug Fix: Fix color issue in UCP "Manage Event Registration".
  • Bug Fix: Add group_id to sql query in get_event_invite_list_and_poster_url() and typo fix: $event_data['group_id'] should be $group_data['group_id']
  • Bug Fix: recurring events didn't support multiple groups on the invite list (missing 'group_id_list' item in the insert command for all 12 recurreng event types).
  • Bug Fix: Some browsers didn't enable/disable the allow guests toggle when the user would check/uncheck the attendance tracking toggle.
  • Move the All Day Event toggle above the Start Time for clarity.
  • Update to 3.0.10: change T_TEMPLATE_PATH to T_SUPER_TEMPLATE_PATH in overall_header.html
  • Complete list of New/Edited files in 0.1.1: adm/mods/phpbb_calendar_version.php, adm/style/acp_calendar.html, includes/acp/info/acp_calendar.php, includes/functions_calendar.php, language/en/mods/calendar.php, language/en/calendar.php, styles/prosilver/template/calendar_post_editor.html, styles/prosilver/template/calendar_view_event.html, styles/prosilver/template/ucp_main_calendar_registration.html, styles/prosilver/template/overall_header.html
官方論壇討論主題(載點):
https://www.phpbb.com/community/viewtop ... 0&t=666195

中文化:(包含附加語言、圖示、和手動語言修改等)
phpbb_Calendar_1_0_0_lang-zh_cmn_hant.zip
for phpBB Calendar (alightner) (行事曆) 0.1.1
(52.71 KiB) 已下載 1126 次
0.1.0 更新 0.1.1 成功經驗:
  1. 除中文化更新外,參考下列檔案更新:
    • upgrade_from_0_1_0.xml
  2. ACP > 權限 > 重新設定相關權限
  3. ACP > 風格 > 樣板/主題/圖檔組 > prosilver > 重新整理
  4. ACP > 系統 > UCP > 概要 > 新增/啟用 > 「管理我的事件、管理事件註冊」模組
  5. ACP > 一般 > 清除論壇快取
p.s.
原作者預計更新至 1.0.0 時,不會改變 0.1.1 版內容,只是會更新壓縮檔內容以及支援 automod。
施比受有福,祝福您好運! ^_^
歡迎光臨★★心靈捕手★★ :: 討論區
https://wang5555.dnsfor.me/phpBB3/
主題已鎖定

回到「[3.0.x] 非官方認證外掛」