This repository has been archived by the owner on Dec 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conf.php
185 lines (165 loc) · 6.2 KB
/
conf.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<?php
/* [WingPHP]
* - global configuration file.
*
* The MIT License
* Copyright (c) 2009 WingPHP < http://wingphp.net >
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
/**
* システム全体で使用する設定変数
*
* @global array $GLOBALS['Conf']
* @name $Conf
*/
$Conf = array(
//■データベース設定
'DB' => array(
'master' => array(
'DSN' => 'mysql:dbname=test;host=localhost' //PDO
, 'USER' => 'username'
, 'PASSWORD' => 'password'
, 'fetch_style' => PDO::FETCH_ASSOC //http://www.php.net/manual/ja/pdostatement.fetch.php
, 'persistent' => false //http://php.net/manual/ja/pdo.connections.php
)
# 複数のDBを切替えて利用する場合は、あらかじめここで設定を行います。
#
# ■モデルでの利用例
# $this->userdb('slave1'); //slave1にDB切替
# $this->usedb(array('slave1', 'slave2')); //slave1, slave2にランダム切替
#
# ■設定例
#, 'slave1' => array(
# 'DSN' => 'mysql:dbname=test2;host=localhost'
# , 'USER' => 'username'
# , 'PASSWORD' => 'password'
# , 'fetch_style' => PDO::FETCH_ASSOC
# , 'persistent' => false
#)
)
// ■BaseModel設定用
, 'Model' => array(
// select(1), execで例外が発生した際の処理
'error' => 'exception' // 'exception'
// throw new Exception(...) 的な処理を実行します。
// 'boolean'
// return(false); 的な処理を実行します。
// ただしDBへの接続処理が失敗した時はPDOがPDOExceptionを
// 投げて死ぬため本番サービスでの利用はオススメしません。
)
//■秘密鍵
, 'Secret' => array(
'key' => 'qwertyuiop' // 適当な文字列に変更してください。
)
//■セッション設定
, 'Session' => array(
'name' => 'SESSID'
)
//■ライブラリ
, 'Lib' => array(
'dir' => '../lib/'
)
//■キャッシュ
, 'Cache' => array(
'strage' => 'File' //'File' or 'MemCache'
, 'expire' => 3600 //秒数を指定。 0=無期限
//DB系
, 'db_use' => false //ModelのDB系メソッドでキャッシュするか
, 'db_pre' => '__lib.dbcache' //ModelのDB系メソッドのキャッシュIDの先頭文字列
, 'db_expire' => 3600 //キャッシュ寿命
)
//■簡易ログ
// デバグなどに利用する簡易ログを記録するaddlogfile関数の設定を行います
// 詳細は lib/global.php を参照してください。
, 'Log' => array(
'dir' => '../log/' // 保存先ディレクトリ
, 'file' => array( // ファイル名
// ログ識別子 => ファイル名
'ERROR' => 'errorlog_'
, 'COMMON' => 'commonlog_'
)
, 'add' => 'Ymd' // ファイル名の末尾につける文字列。date関数の書式と同じです。なにもつけない場合はfalseを指定。
, 'ext' => 'txt' // 拡張子
, 'separate' => "\t" // 区切り文字
, 'addtrace' => false // debug_backtraceの情報を記録するか
)
//■View設定
, 'Smarty' => array(
'version' => '3.1' //'3.1'固定
, 'tmpl' => '../view/'
, 'tmpl_c' => '../temp/smarty/templates_c/'
, 'plugin' => array(realpath('../lib/Smarty/wingplugin'))
, 'config' => '../lib/Smarty/configs/'
, 'cache' => '../temp/smarty/cache/'
, 'is_cache' => true
, 'cache_life' => 0
//, 'cache_life' => 60 * 60 //秒
)
//■SmartyDirect
, 'SmartyDirect' => array(
'run' => true
, 'root' => 'sdroot/'
, 'default' => 'index.html'
)
//■validation設定
, 'validation' => array(
'jscheck' => false //JavaScriptによる事前チェックを行うか
, 'form' => array(
'idname' => '__wgidname'
)
)
);
/**
* Routingクラス
*
* ルーティングクラスです。
* ルーティングを行う場合は、直接このクラスを書き換えてください。
*
* コンストラクタの処理が終了後、最終的にプロパティctrl, method, paramに
* 入っている名称のクラスとメソッドが実行されます。
*
* (現状だと)uselibが使えないので、あくまでルーティングに徹し、複雑な処理は
* 他にまかせるような実装がオススメです。また全リクエストで実行されるので
* 最小限に留めないとパフォーマンスに影響します。
*
* @package Routing
* @copyright 2010 WingPHP
* @author M.Katsube < [email protected] >
* @license The MIT License
* @access public
*/
class Routing{
public $ctrl; //コントローラー
public $method; //メソッド
public $param; //パラメーター
function __construct(framewing $obj){
$this->ctrl = $obj->ctrl_name; //FoobarController
$this->method = $obj->method_name; //index
$this->param = $obj->param; //array('huga1', 'huga2', ...)
}
}
/**
* Model,View,Controller間でデータを共有するための変数
*
* @global array $GLOBALS['Scratch']
* @name $Scratch
*/
$Scratch = array(
'form' => array()
);