Ignore:
Timestamp:
2013/05/02 18:11:36 (13 years ago)
Author:
h_yoshimoto
Message:

#2236 2.12.3リリース以降の2.12-devへのコミット差し戻し

Location:
branches/version-2_12-dev/data/class/pages/guide
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide.php

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Guide extends LC_Page_Ex  
    35 { 
     34class LC_Page_Guide extends LC_Page_Ex { 
    3635 
    3736    // }}} 
     
    4342     * @return void 
    4443     */ 
    45     function init() 
    46     { 
     44    function init() { 
    4745        parent::init(); 
    4846    } 
     
    5351     * @return void 
    5452     */ 
    55     function process() 
    56     { 
     53    function process() { 
    5754        parent::process(); 
    5855        $this->action(); 
     
    6562     * @return void 
    6663     */ 
    67     function action() 
    68     { 
     64    function action() { 
    6965 
    7066 
     
    7672     * @return void 
    7773     */ 
    78     function destroy() 
    79     { 
     74    function destroy() { 
    8075        parent::destroy(); 
    8176    } 
  • branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_About.php

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Guide_About extends LC_Page_Ex  
    35 { 
     34class LC_Page_Guide_About extends LC_Page_Ex { 
    3635 
    3736    // }}} 
     
    4342     * @return void 
    4443     */ 
    45     function init() 
    46     { 
     44    function init() { 
    4745        parent::init(); 
    4846    $masterData = new SC_DB_MasterData_Ex(); 
     
    5553     * @return void 
    5654     */ 
    57     function process() 
    58     { 
     55    function process() { 
    5956        parent::process(); 
    6057        $this->action(); 
     
    6764     * @return void 
    6865     */ 
    69     function action() 
    70     { 
     66    function action() { 
    7167 
    7268 
     
    7874     * @return void 
    7975     */ 
    80     function destroy() 
    81     { 
     76    function destroy() { 
    8277        parent::destroy(); 
    8378    } 
  • branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_Charge.php

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Guide_Charge extends LC_Page_Ex  
    35 { 
     34class LC_Page_Guide_Charge extends LC_Page_Ex { 
    3635 
    3736    // }}} 
     
    4342     * @return void 
    4443     */ 
    45     function init() 
    46     { 
     44    function init() { 
    4745        parent::init(); 
    4846    } 
     
    5351     * @return void 
    5452     */ 
    55     function process() 
    56     { 
     53    function process() { 
    5754        parent::process(); 
    5855        $this->action(); 
     
    6562     * @return void 
    6663     */ 
    67     function action() 
    68     { 
     64    function action() { 
    6965 
    7066 
     
    7672     * @return void 
    7773     */ 
    78     function destroy() 
    79     { 
     74    function destroy() { 
    8075        parent::destroy(); 
    8176    } 
  • branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_Kiyaku.php

    r22570 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Guide_Kiyaku extends LC_Page_Ex  
    35 { 
     34class LC_Page_Guide_Kiyaku extends LC_Page_Ex { 
    3635 
    3736    // }}} 
     
    4342     * @return void 
    4443     */ 
    45     function init() 
    46     { 
     44    function init() { 
    4745        parent::init(); 
    4846    } 
     
    5351     * @return void 
    5452     */ 
    55     function process() 
    56     { 
     53    function process() { 
    5754        parent::process(); 
    5855        $this->action(); 
     
    6562     * @return void 
    6663     */ 
    67     function action() 
    68     { 
     64    function action() { 
    6965 
    7066        $this->lfGetKiyaku(intval($_GET['page']), $this); 
     
    7874     * @return void 
    7975     */ 
    80     function destroy() 
    81     { 
     76    function destroy() { 
    8277        parent::destroy(); 
    8378    } 
     
    9085     * @return void 
    9186     */ 
    92     function lfGetKiyaku($index, &$objPage) 
    93     { 
    94         $objKiyaku = new SC_Helper_Kiyaku_Ex(); 
    95         $arrKiyaku = $objKiyaku->getList(); 
     87    function lfGetKiyaku($index, &$objPage) { 
     88        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
     89        $objQuery->setOrder('rank DESC'); 
     90        $arrKiyaku = $objQuery->select('kiyaku_title, kiyaku_text', 'dtb_kiyaku', 'del_flg <> 1'); 
    9691 
    9792        $number = count($arrKiyaku); 
  • branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_Privacy.php

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Guide_Privacy extends LC_Page_Ex  
    35 { 
     34class LC_Page_Guide_Privacy extends LC_Page_Ex { 
    3635 
    3736    // }}} 
     
    4342     * @return void 
    4443     */ 
    45     function init() 
    46     { 
     44    function init() { 
    4745        parent::init(); 
    4846    } 
     
    5351     * @return void 
    5452     */ 
    55     function process() 
    56     { 
     53    function process() { 
    5754        parent::process(); 
    5855        $this->action(); 
     
    6562     * @return void 
    6663     */ 
    67     function action() 
    68     { 
     64    function action() { 
    6965 
    7066 
     
    7672     * @return void 
    7773     */ 
    78     function destroy() 
    79     { 
     74    function destroy() { 
    8075        parent::destroy(); 
    8176    } 
  • branches/version-2_12-dev/data/class/pages/guide/LC_Page_Guide_Usage.php

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Guide_Usage extends LC_Page_Ex  
    35 { 
     34class LC_Page_Guide_Usage extends LC_Page_Ex { 
    3635 
    3736    // }}} 
     
    4342     * @return void 
    4443     */ 
    45     function init() 
    46     { 
     44    function init() { 
    4745        parent::init(); 
    4846    } 
     
    5351     * @return void 
    5452     */ 
    55     function process() 
    56     { 
     53    function process() { 
    5754        parent::process(); 
    5855        $this->action(); 
     
    6562     * @return void 
    6663     */ 
    67     function action() 
    68     { 
     64    function action() { 
    6965 
    7066 
     
    7672     * @return void 
    7773     */ 
    78     function destroy() 
    79     { 
     74    function destroy() { 
    8075        parent::destroy(); 
    8176    } 
Note: See TracChangeset for help on using the changeset viewer.