Changeset 21583 for branches/version-2_12-dev/data/class/pages
- Timestamp:
- 2012/03/04 04:46:21 (15 years ago)
- Location:
- branches/version-2_12-dev/data/class/pages
- Files:
-
- 3 edited
-
LC_Page.php (modified) (2 diffs)
-
LC_Page_Index.php (modified) (1 diff)
-
frontparts/bloc/LC_Page_FrontParts_Bloc.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/data/class/pages/LC_Page.php
r21582 r21583 86 86 function init() { 87 87 // 開始時刻を設定する。 88 $this->timeStart = SC_Utils_Ex::sfMicrotimeFloat();88 $this->timeStart = microtime(true); 89 89 90 90 $this->tpl_authority = $_SESSION['authority']; … … 166 166 // エラー画面の表示では $this->timeStart が出力されない 167 167 if (defined('PAGE_DISPLAY_TIME_LOG_MODE') && PAGE_DISPLAY_TIME_LOG_MODE == true && isset($this->timeStart)) { 168 $timeEnd = SC_Utils_Ex::sfMicrotimeFloat();168 $timeEnd = microtime(true); 169 169 $timeExecTime = $timeEnd - $this->timeStart; 170 170 if (defined('PAGE_DISPLAY_TIME_LOG_MIN_EXEC_TIME') && $timeExecTime >= (float)PAGE_DISPLAY_TIME_LOG_MIN_EXEC_TIME) { -
branches/version-2_12-dev/data/class/pages/LC_Page_Index.php
r21469 r21583 54 54 parent::process(); 55 55 $this->action(); 56 // class_exists('xxx'); 57 // 0/0; 58 // new xxx; 59 // $objQuery = new SC_Query_Ex(); 60 // $objQuery->select('***'); 61 // trigger_error('試験的なエラー発生です。'); 56 62 $this->sendResponse(); 57 63 } -
branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc.php
r21582 r21583 41 41 function init() { 42 42 // 開始時刻を設定する。 43 $this->timeStart = SC_Utils_Ex::sfMicrotimeFloat();43 $this->timeStart = microtime(true); 44 44 45 45 $this->tpl_authority = $_SESSION['authority'];
Note: See TracChangeset
for help on using the changeset viewer.
