Ignore:
Timestamp:
2007/08/06 18:28:01 (17 years ago)
Author:
nanasess
Message:

allowClientCache() 関数追加
コメントに @access 追加

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/pages/LC_Page.php

    r15213 r15218  
    122122     * 画面遷移の妥当性が確認できる. 
    123123     * 
     124     * @access protected 
    124125     * @return string トランザクショントークンの文字列 
    125126     */ 
     
    138139     * を呼んでおく必要がある. 
    139140     * 
     141     * @access protected 
    140142     * @return boolean トランザクショントークンが有効な場合 true 
    141143     */ 
     
    175177     * の配列を $param へ渡す. 
    176178     * 
     179     * @access protected 
    177180     * @param string $path 結果を取得するためのパス 
    178181     * @param array $param URL に付与するパラメータの配列 
     
    233236    } 
    234237 
     238    /** 
     239     * クライアントのキャッシュを許可する. 
     240     * 
     241     * session_start時のno-cacheヘッダーを抑制することで 
     242     * 「戻る」ボタン使用時の有効期限切れ表示を抑制する. 
     243     * 
     244     * @access protected 
     245     * @return void 
     246     */ 
     247    function allowClientCache() { 
     248        session_cache_limiter('private-no-expire'); 
     249    } 
     250 
    235251    // }}} 
    236252    // {{{ private functions 
     
    239255     * トランザクショントークン用の予測困難な文字列を生成して返す. 
    240256     * 
     257     * @access private 
    241258     * @return string トランザクショントークン用の文字列 
    242259     */ 
Note: See TracChangeset for help on using the changeset viewer.