Changeset 21767 for branches/version-2_12-dev/data/class/helper
- Timestamp:
- 2012/04/18 17:10:53 (14 years ago)
- Location:
- branches/version-2_12-dev/data/class/helper
- Files:
-
- 4 edited
-
SC_Helper_CSV.php (modified) (1 diff)
-
SC_Helper_Mail.php (modified) (1 diff)
-
SC_Helper_Session.php (modified) (1 diff)
-
SC_Helper_Transform.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/data/class/helper/SC_Helper_CSV.php
r21757 r21767 29 29 * デフォルトコンストラクタ. 30 30 */ 31 function SC_Helper_CSV() {31 function __construct() { 32 32 $this->init(); 33 33 } -
branches/version-2_12-dev/data/class/helper/SC_Helper_Mail.php
r21750 r21767 37 37 * コンストラクタ. 38 38 */ 39 function SC_Helper_Mail() {39 function __construct() { 40 40 $masterData = new SC_DB_MasterData_Ex(); 41 41 $this->arrMAILTPLPATH = $masterData->getMasterData('mtb_mail_tpl_path'); -
branches/version-2_12-dev/data/class/helper/SC_Helper_Session.php
r21750 r21767 25 25 * 各関数をセッションハンドラに保存する 26 26 */ 27 function SC_Helper_Session() {27 function __construct() { 28 28 $this->objDb = new SC_Helper_DB_Ex(); 29 29 session_set_save_handler(array(&$this, 'sfSessOpen'), -
branches/version-2_12-dev/data/class/helper/SC_Helper_Transform.php
r21596 r21767 47 47 * @return void 48 48 */ 49 public function SC_Helper_Transform($source) {49 public function __construct($source) { 50 50 $this->objDOM = new DOMDocument(); 51 51 $this->objDOM->strictErrorChecking = false;
Note: See TracChangeset
for help on using the changeset viewer.
