<?php
$modversion = [];
//---模組基本資訊---//
$modversion['name'] = _MI_TAD_SIGNUP_NAME;
$modversion['version'] = 1.00;
$modversion['description'] = _MI_TAD_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'] = '2021-09-01';
$modversion['module_website_url'] = 'https://github.com/tad0616/tad_signup';
$modversion['module_website_name'] = 'Tad Signup GitHub';
$modversion['module_status'] = 'release';
$modversion['author_website_url'] = 'https://tad0616.net';
$modversion['author_website_name'] = _MI_TAD_SIGNUP_AUTHOR_WEBSITE_NAME;
$modversion['min_php'] = 5.4;
$modversion['min_xoops'] = '2.5';
//---paypal資訊---//
$modversion['paypal'][] = [
'business' => 'tad0616@gmail.com',
'item_name' => 'Donation : Tad',
'amount' => 0,
'currency_code' => 'USD',
];
//---後台使用系統選單---//
$modversion['system_menu'] = 1;
//---模組資料表架構---//
$modversion['sqlfile']['mysql'] = 'sql/mysql.sql';
$modversion['tables'] = ['tad_signup_actions', 'tad_signup_data', 'tad_signup_data_center', 'tad_signup_files_center'];
//---後台管理介面設定---//
$modversion['hasAdmin'] = 1;
$modversion['adminindex'] = 'admin/index.php';
$modversion['adminmenu'] = 'admin/menu.php';
//---前台主選單設定---//
$modversion['hasMain'] = 1;
// $modversion['sub'][] = ['name' => '子選項文字', 'url' => '子選項連結位址'];
//---模組自動功能---//
$modversion['onInstall'] = "include/onInstall.php";
$modversion['onUpdate'] = "include/onUpdate.php";
$modversion['onUninstall'] = "include/onUninstall.php";
//---樣板設定---//
$modversion['templates'][] = ['file' => 'tad_signup_admin.tpl', 'description' => _MI_TAD_SIGNUP_TEMPLATES_ADMIN];
$modversion['templates'][] = ['file' => 'tad_signup_index.tpl', 'description' => _MI_TAD_SIGNUP_TEMPLATES_INDEX];
//---搜尋---//
$modversion['hasSearch'] = 1;
$modversion['search'] = ['file' => 'include/search.php', 'func' => 'tad_signup_search'];
//---區塊設定---//
$modversion['blocks'][] = [
'file' => 'action_list.php',
'name' => _MI_TAD_SIGNUP_ACTION_LIST_NAME,
'description' => _MI_TAD_SIGNUP_ACTION_LIST_DESCRIPTION,
'show_func' => 'action_list',
'template' => 'action_list.tpl',
'edit_func' => 'action_list_edit',
'options' => '5|, `action_date` desc',
];
$modversion['blocks'][] = [
'file' => 'action_signup.php',
'name' => _MI_TAD_SIGNUP_ACTION_SIGNUP_NAME,
'description' => _MI_TAD_SIGNUP_ACTION_SIGNUP_DESCRIPTION,
'show_func' => 'action_signup',
'template' => 'action_signup.tpl',
'edit_func' => 'action_signup_edit',
'options' => '',
];
//---偏好設定---//
$modversion['config'][] = [
'name' => 'show_number',
'title' => '_MI_TAD_SIGNUP_SHOW_NUMBER',
'description' => '_MI_TAD_SIGNUP_SHOW_NUMBER_DESC',
'formtype' => 'textbox',
'valuetype' => 'int',
'default' => '10',
];
$modversion['config'][] = [
'name' => 'only_enable',
'title' => '_MI_TAD_SIGNUP_ONLY_ENABLE',
'description' => '_MI_TAD_SIGNUP_ONLY_ENABLE_DESC',
'formtype' => 'yeno',
'valuetype' => 'int',
'default' => '0',
];
//---評論---//
// $modversion['hasComments'] = 1;
// $modversion['comments'][] = ['pageName' => '單一頁面.php', 'itemName' => '主編號'];
//---通知---//
// $modversion['hasNotification'] = 1;
link to https://github.com/tadlearn/tad_signup/commit/1b5b4335c2c5c8eb186ce0fa916e5e53d8617f41 \