forked from INTER-Mediator/INTER-Mediator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request INTER-Mediator#1857 from msyk/master
Wrong spelling instanciate are changed to instantiate.
- Loading branch information
Showing
27 changed files
with
1,638 additions
and
1,524 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,26 +49,26 @@ | |
//$dbPassword = 'l{OVBu":DoX#D,+\hu*S'; | ||
|
||
//$activateGenerator = true; | ||
$generatorUser = $dbUser; | ||
$generatorPassword = $dbPassword; | ||
$generatorOptions = [ | ||
'default-type' => "TEXT", | ||
'pk-type' => 'INT NOT NULL AUTO_INCREMENT PRIMARY KEY', | ||
'fk-type' => 'INT', | ||
'datetime-suffix' => '_dt', | ||
'date-suffix' => '_date', | ||
'time-suffix' => '_time', | ||
'int-suffix' => '_int', | ||
'double-suffix' => '_double', | ||
'text-suffix' => '_text', | ||
'datetime-prefix' => 'dt_', | ||
'date-prefix' => 'date_', | ||
'time-prefix' => 'time_', | ||
'int-prefix' => 'int_', | ||
'double-prefix' => 'double_', | ||
'text-prefix' => 'text_', | ||
'dummy-table' => 'dummy' | ||
]; | ||
//$generatorUser = $dbUser; | ||
//$generatorPassword = $dbPassword; | ||
//$generatorOptions = [ | ||
// 'default-type' => "TEXT", | ||
// 'pk-type' => 'INT NOT NULL AUTO_INCREMENT PRIMARY KEY', | ||
// 'fk-type' => 'INT', | ||
// 'datetime-suffix' => '_dt', | ||
// 'date-suffix' => '_date', | ||
// 'time-suffix' => '_time', | ||
// 'int-suffix' => '_int', | ||
// 'double-suffix' => '_double', | ||
// 'text-suffix' => '_text', | ||
// 'datetime-prefix' => 'dt_', | ||
// 'date-prefix' => 'date_', | ||
// 'time-prefix' => 'time_', | ||
// 'int-prefix' => 'int_', | ||
// 'double-prefix' => 'double_', | ||
// 'text-prefix' => 'text_', | ||
// 'dummy-table' => 'dummy' | ||
//]; | ||
|
||
/* Security | ||
* =================== | ||
|
@@ -120,27 +120,27 @@ | |
/* Messaging Settings | ||
* =================== */ | ||
// If you want to specify the smtp server info, set them below. | ||
$sendMailSMTP = array( | ||
'server' => 'msyk.sakura.ne.jp', | ||
'port' => '587', | ||
'username' => '[email protected]', | ||
'password' => '*********', | ||
); | ||
//$sendMailSMTP = array( | ||
// 'server' => 'msyk.sakura.ne.jp', | ||
// 'port' => '587', | ||
// 'username' => '[email protected]', | ||
// 'password' => '*********', | ||
//); | ||
// $waitAfterMail = 20; // Wait after send email with smtp server. Unit is Millisecond. | ||
|
||
// Sending email features compatibility with INTER-Mediator v5 unless 'template-context' key isn't specified. | ||
$sendMailCompatibilityMode = false; // default is false (Until Ver.9 the default value was true.) | ||
//$sendMailCompatibilityMode = false; // default is false (Until Ver.9 the default value was true.) | ||
|
||
// Error/Warning/Debug messages can write to the PHP's error log. The default values are false | ||
//$errorMessageLogging = false; | ||
//$warningMessageLogging = true; // All messages are going to write error log. | ||
//$debugMessageLogging = 'INTERMediator\DB'; // Messages from specified namespace are going to write error log. | ||
|
||
// Slack posting token and channel. You must create the Slack App permitting 'chat:write:bot' and generate OAuth2 token. | ||
$slackParameters = [ | ||
"token" => 'xoxp-XXXXXXXXXXX-XXXXXXXXXXX-XXXXXXXXXXXX-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', | ||
"channel" => 'message-posting-test', | ||
]; | ||
//$slackParameters = [ | ||
// "token" => 'xoxp-XXXXXXXXXXX-XXXXXXXXXXX-XXXXXXXXXXXX-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', | ||
// "channel" => 'message-posting-test', | ||
//]; | ||
|
||
/* Authorization | ||
* =================== */ | ||
|
@@ -204,8 +204,8 @@ | |
* =================== | ||
* the table named 'operationlog' is required. | ||
* The schema of the table describes in dist-docs/sample_schema_*.txt files. */ | ||
$accessLogLevel = true; // false: No logging, 1: without data, 2: with data | ||
|
||
$accessLogLevel = false; // false: No logging, 1: without data, 2: with data | ||
/* | ||
$dbClassLog = $dbClass; | ||
$dbDSNLog = $dbDSN; | ||
$dbUserLog = $dbUser; | ||
|
@@ -215,7 +215,7 @@ | |
$dontRecordTheme = false; | ||
$dontRecordChallenge = false; | ||
$dontRecordDownload = false; | ||
$dontRecordDownloadNoGet = false; | ||
$dontRecordDownloadNoGet = false; */ | ||
//$accessLogExtensionClass = 'LoggingExt'; // Processing for some extending fields. | ||
|
||
/* Media File Support | ||
|
@@ -302,7 +302,7 @@ | |
* field and value, but the string encoding is convert to sjis or ucs-4 and back to utf-8. | ||
* As the default, the string is going to be encoded with the urlencode function. | ||
*/ | ||
$uploadFilePathMode = ""; | ||
//$uploadFilePathMode = ""; | ||
|
||
/* Other settings | ||
* =================== */ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.