<?php $modversion = array(); //---模組基本資訊---// $modversion['name'] = '活動報名'; $modversion['version'] = 1.00; $modversion['description'] = '簡易的活動報名系統'; $modversion['author'] = 'Tad'; $modversion['credits'] = ''; $modversion['help'] = 'page=help'; $modversion['license'] = 'GNU GPL 2.0'; $modversion['license_url'] = 'www.gnu.org/licenses/gpl-2.0.html/'; $modversion['image'] = 'images/logo.png'; $modversion['dirname'] = basename(dirname(__FILE__)); //---模組狀態資訊---// $modversion['release_date'] = '2017/08/05'; $modversion['module_website_url'] = 'http://www.tad0616.net'; $modversion['module_website_name'] = 'Tad教材網'; $modversion['module_status'] = 'release'; $modversion['author_website_url'] = 'http://www.tad0616.net'; $modversion['author_website_name'] = 'Tad教材網'; $modversion['min_php'] = 5.4; $modversion['min_xoops'] = '2.5'; $modversion['min_tadtools'] = '1.20'; //---paypal資訊---// $modversion['paypal'] = array(); $modversion['paypal']['business'] = 'tad@gmail.com'; $modversion['paypal']['item_name'] = 'Donation : ' . 'Tad'; $modversion['paypal']['amount'] = 10; $modversion['paypal']['currency_code'] = 'USD'; //---後台使用系統選單---// $modversion['system_menu'] = 1;
define('_MI_SIGNUP_NAME', '活動報名'); define('_MI_SIGNUP_DESCRIPTION', '簡易的活動報名系統'); define('_MI_SIGNUP_MODULE_WEBSITE_NAME', 'Tad教材網'); define('_MI_SIGNUP_AUTHOR_WEBSITE_NAME', 'Tad教材網');
xoops_version.php 內容會變成這樣:
<?php $modversion = array(); //---模組基本資訊---// $modversion['name'] = _MI_SIGNUP_NAME; $modversion['version'] = 1.00; $modversion['description'] = _MI_SIGNUP_DESCRIPTION; $modversion['author'] = 'Tad'; $modversion['credits'] = ''; $modversion['help'] = 'page=help'; $modversion['license'] = 'GNU GPL 2.0'; $modversion['license_url'] = 'www.gnu.org/licenses/gpl-2.0.html/'; $modversion['image'] = 'images/logo.png'; $modversion['dirname'] = basename(dirname(__FILE__)); //---模組狀態資訊---// $modversion['release_date'] = '2017/08/05'; $modversion['module_website_url'] = 'http://www.tad0616.net'; $modversion['module_website_name'] = _MI_SIGNUP_MODULE_WEBSITE_NAME; $modversion['module_status'] = 'release'; $modversion['author_website_url'] = 'http://www.tad0616.net'; $modversion['author_website_name'] = _MI_SIGNUP_AUTHOR_WEBSITE_NAME; $modversion['min_php'] = 5.4; $modversion['min_xoops'] = '2.5'; $modversion['min_tadtools'] = '1.20';