| Revision 16428,
818 bytes
checked in by naka, 19 years ago
(diff) |
|
mtb_constantsに必要な値を追加するスクリプト
|
| Line | |
|---|
| 1 | <?php
|
|---|
| 2 | require_once("../../require.php");
|
|---|
| 3 | $objMasterData = new SC_DB_MasterData_Ex();
|
|---|
| 4 |
|
|---|
| 5 | $objMasterData->insertMasterData("mtb_constants", "OS_TYPE", "\"WIN\"", "OS種別:WIN|LINUX");
|
|---|
| 6 | $objMasterData->insertMasterData("mtb_constants", "SMTP_HOST", "\"210.188.192.18\"", "SMTPサーバ");
|
|---|
| 7 | $objMasterData->insertMasterData("mtb_constants", "SMTP_PORT", "\"25\"", "SMTPポート");
|
|---|
| 8 | $objMasterData->insertMasterData("mtb_constants", "MODULE2_DIR", "\"downloads/module2/\"", "EC-CUBE2対応モジュール");
|
|---|
| 9 | $objMasterData->insertMasterData("mtb_constants", "MODULE2_PATH", "DATA_PATH . MODULE2_DIR", "EC-CUBE2対応モジュール");
|
|---|
| 10 | $arrMasterData = $objMasterData->getMasterData("mtb_constants");
|
|---|
| 11 | $objMasterData->createCache("mtb_constants", $arrMasterData, true, array("id", "remarks", "rank"));
|
|---|
| 12 | ?> |
|---|
Note: See
TracBrowser
for help on using the repository browser.