Ignore:
Timestamp:
2013/02/18 19:09:54 (11 years ago)
Author:
shutta
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.12.4)
Zend Framework PHP 標準コーディング規約のコーディングスタイルへ準拠。
classおよびfunctionの開始波括弧「{」のスタイルを修正。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_Seo.php

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Basis_Seo extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_Basis_Seo extends LC_Page_Admin_Ex  
     35{ 
    3536 
    3637    // {{{ properties 
     
    4748     * @return void 
    4849     */ 
    49     function init() { 
     50    function init() 
     51    { 
    5052        parent::init(); 
    5153        $this->tpl_mainpage = 'basis/seo.tpl'; 
     
    6769     * @return void 
    6870     */ 
    69     function process() { 
     71    function process() 
     72    { 
    7073        $this->action(); 
    7174        $this->sendResponse(); 
     
    7780     * @return void 
    7881     */ 
    79     function action() { 
     82    function action() 
     83    { 
    8084 
    8185        // データの取得 
     
    132136     * @return void 
    133137     */ 
    134     function destroy() { 
     138    function destroy() 
     139    { 
    135140        parent::destroy(); 
    136141    } 
     
    142147     * @return integer 更新結果 
    143148     */ 
    144     function lfUpdPageData($arrUpdData = array()) { 
     149    function lfUpdPageData($arrUpdData = array()) 
     150    { 
    145151        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    146152 
     
    160166    } 
    161167 
    162     function lfInitParam($mode, &$objFormParam) { 
     168    function lfInitParam($mode, &$objFormParam) 
     169    { 
    163170        $objFormParam->addParam('デバイスID', 'device_type_id', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK')); 
    164171        $objFormParam->addParam('ページID', 'page_id', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK')); 
     
    175182     * @return array 表示データ 
    176183     */ 
    177     function lfSetData($arrPageData, $arrDispData) { 
     184    function lfSetData($arrPageData, $arrDispData) 
     185    { 
    178186 
    179187        foreach ($arrPageData as $device_key => $arrVal) { 
     
    196204     * @return array $arrRet ページデータ($arrRet[デバイスタイプID]) 
    197205     */ 
    198     function lfGetSeoPageData() { 
     206    function lfGetSeoPageData() 
     207    { 
    199208        $objLayout = new SC_Helper_PageLayout_Ex(); 
    200209 
Note: See TracChangeset for help on using the changeset viewer.