Skip to content

Commit

Permalink
更新說明
Browse files Browse the repository at this point in the history
  • Loading branch information
tad0616 committed May 10, 2019
1 parent 91f61a1 commit c9b74e0
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 12 deletions.
9 changes: 6 additions & 3 deletions README
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Tad Link 2.7 (2019-01-28 釋出)
================================================
1.在區塊新增「是否顯示分類標題」的設定
Tad Link 2.7 (2019-05-10 釋出)
=================================================
1.支援 XOOPS 2.5.10
2.不再支援 PHP 5.3
3.在區塊新增「是否顯示分類標題」的設定



Tad Link 2.6.9 (2019-01-01 釋出)
Expand Down
4 changes: 3 additions & 1 deletion include/onInstall.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

use XoopsModules\Tadtools\Utility;

include dirname(__DIR__) . '/preloads/autoloader.php';
if (!class_exists('XoopsModules\Tadtools\Utility')) {
require XOOPS_ROOT_PATH . '/modules/tadtools/preloads/autoloader.php';
}

function xoops_module_install_tad_link(&$module)
{
Expand Down
3 changes: 3 additions & 0 deletions include/onUpdate.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

use XoopsModules\Tad_link\Update;

if (!class_exists('XoopsModules\Tad_link\Update')) {
include dirname(__DIR__) . '/preloads/autoloader.php';
}
function xoops_module_update_tad_link(&$module, $old_version)
{
global $xoopsDB;
Expand Down
8 changes: 5 additions & 3 deletions language/english/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Tad Link 2.7 (released on 2019-01-28)
================================================
1.Added the setting of "Do you want to display the classification title" in the block?
Tad Link 2.7 (released from 2019-05-10)
==========================================================
1. Support XOOPS 2.5.10
2. No longer supports PHP 5.3
3.Added the setting of "Do you want to display the classification title" in the block?


Tad Link 2.6.9 (released on 2019-01-01)
Expand Down
8 changes: 5 additions & 3 deletions language/tchinese_utf8/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Tad Link 2.7 (2019-01-28 釋出)
================================================
1.在區塊新增「是否顯示分類標題」的設定
Tad Link 2.7 (2019-05-10 釋出)
=================================================
1.支援 XOOPS 2.5.10
2.不再支援 PHP 5.3
3.在區塊新增「是否顯示分類標題」的設定


Tad Link 2.6.9 (2019-01-01 釋出)
Expand Down
2 changes: 2 additions & 0 deletions templates/blocks/tad_link_block_show.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<{assign var=this_file value=$smarty.template|basename|replace:'db:':''}>
<{includeq file="$xoops_rootpath/modules/tad_link/templates/blocks/b4.tpl"}>
2 changes: 2 additions & 0 deletions templates/tad_link_index.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<{assign var=this_file value=$smarty.template|basename|replace:'db:':''}>
<{includeq file="$xoops_rootpath/modules/$xoops_dirname/templates/b4.tpl"}>
4 changes: 2 additions & 2 deletions xoops_version.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

//---模組基本資訊---//
$modversion['name'] = _MI_TADLINK_NAME;
$modversion['version'] = 2.69;
$modversion['version'] = 2.7;
$modversion['description'] = _MI_TADLINK_DESC;
$modversion['author'] = _MI_TADLINK_AUTHOR;
$modversion['credits'] = _MI_TADLINK_CREDITS;
Expand All @@ -14,7 +14,7 @@
$modversion['dirname'] = basename(__DIR__);

//---模組狀態資訊---//
$modversion['release_date'] = '2019-01-01';
$modversion['release_date'] = '2019-05-10';
$modversion['module_website_url'] = 'https://tad0616.net/';
$modversion['module_website_name'] = _MI_TAD_WEB;
$modversion['module_status'] = 'release';
Expand Down

0 comments on commit c9b74e0

Please sign in to comment.